Annotation of pmsdk/samples/spy/spyhstrt.asm, revision 1.1

1.1     ! root        1: ;  SPYHOOK library initialization routine
        !             2: 
        !             3: ;  Created by Microsoft Corp. 1987
        !             4: 
        !             5: _DATA segment
        !             6:        assume DS:_DATA
        !             7: public __acrtused
        !             8: __acrtused = 1
        !             9: _DATA ends
        !            10: 
        !            11: _TEXT SEGMENT WORD PUBLIC 'CODE'
        !            12:        assume cs:_TEXT
        !            13:        assume ds:_DATA
        !            14: 
        !            15: EXTRN  Init:NEAR
        !            16: 
        !            17: ;
        !            18: ; Registers set up by DosLoadModule...
        !            19: ;
        !            20: ;   SI = heap size
        !            21: ;   DI = module ID
        !            22: ;   DS = library's automatic data segment
        !            23: ;
        !            24: LoadProc proc far
        !            25: 
        !            26:        push di
        !            27:        call Init             ; Init( hmod );
        !            28: 
        !            29:        ret     0
        !            30: LoadProc endp
        !            31: 
        !            32: _TEXT ends
        !            33: 
        !            34: end    LoadProc

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.