Annotation of embedtools/src/upd.c, revision 1.1.2.1

1.1.2.1 ! misho       1: #include "global.h"
        !             2: #include "upd.h"
        !             3: 
        !             4: 
        !             5: int Activate()
        !             6: {
        !             7:        VERB(3) printf("Activate procedure\n");
        !             8: 
        !             9:        return 0;
        !            10: }
        !            11: 
        !            12: int Install()
        !            13: {
        !            14:        VERB(3) printf("Install procedure\n");
        !            15: 
        !            16:        return 0;
        !            17: }
        !            18: 
        !            19: int Rollback()
        !            20: {
        !            21:        VERB(3) printf("Rollback procedure\n");
        !            22: 
        !            23:        return 0;
        !            24: }
        !            25: 
        !            26: int tFTP()
        !            27: {
        !            28:        VERB(3) printf("tFTP procedure\n");
        !            29: 
        !            30:        return 0;
        !            31: }
        !            32: 
        !            33: int Backup()
        !            34: {
        !            35:        VERB(3) printf("Backup procedure\n");
        !            36: 
        !            37:        return 0;
        !            38: }
        !            39: 
        !            40: int Clean()
        !            41: {
        !            42:        VERB(3) printf("Clean procedure\n");
        !            43: 
        !            44:        return 0;
        !            45: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>