Ignore:
Timestamp:
Feb 20, 2000, 5:27:24 AM (26 years ago)
Author:
bird
Message:

16-bit imports and import of global variables.
(But there are some problems left)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev32/devlast.asm

    r1467 r2832  
    1 ; $Id: devlast.asm,v 1.2 1999-10-27 02:02:54 bird Exp $
     1; $Id: devlast.asm,v 1.3 2000-02-20 04:27:23 bird Exp $
    22;
    33; DevLast - the object file termintating the resident part of the objects.
     
    3131    public CONST32_ROEND
    3232    public _CallR0Init32
    33     public _CallVerifyProcTab32
     33    public _CallVerifyImportTab32
    3434
    3535
     
    5252
    5353extrn R0INIT32:FAR
    54 extrn VERIFYPROCTAB32:FAR
     54extrn VERIFYIMPORTTAB32:FAR
    5555
    5656CODE16 segment
     
    7676
    7777;;
    78 ; Thunk procedure for VerifyProcTab32.
    79 ; @cproto    USHORT NEAR CallVerifyProcTab32(void);
    80 ; @returns   Same as VerifyProcTab32.
     78; Thunk procedure for VerifyImportTab32.
     79; @cproto    USHORT NEAR CallVerifyImportTab32(void);
     80; @returns   Same as VerifyImportTab32.
    8181; @status    completely implemented.
    8282; @author    knut st. osmundsen
    83 _CallVerifyProcTab32 PROC NEAR
     83_CallVerifyImportTab32 PROC NEAR
    8484    ASSUME CS:CODE16
    8585    push    ds
    86     call    far ptr FLAT:VERIFYPROCTAB32
     86    call    far ptr FLAT:VERIFYIMPORTTAB32
    8787    pop     ds
    8888    retn
    89 _CallVerifyProcTab32 ENDP
     89_CallVerifyImportTab32 ENDP
    9090
    9191CODE16 ends
Note: See TracChangeset for help on using the changeset viewer.