Changeset 9528 for trunk/src/win32k/kKrnlLib/src/devFirst.asm
- Timestamp:
- Dec 19, 2002, 2:49:11 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/src/devFirst.asm
r9514 r9528 1 ; $Id: devFirst.asm,v 1. 3 2002-12-16 02:24:28bird Exp $1 ; $Id: devFirst.asm,v 1.4 2002-12-19 01:49:07 bird Exp $ 2 2 ; 3 3 ; DevFirst - entrypoint, helper code, and segment definitions. … … 53 53 public _CallR0Addr32bit 54 54 public _SSToDS_16a 55 public GetOS2KrnlMTE 55 public krnlGetOS2KrnlMTE 56 public krnlMakeCalltab16CodeSegment 56 57 public x86DisableWriteProtect 57 58 public x86RestoreWriteProtect 58 public MakeCalltab16CodeSegment59 59 public _GetR0InitPtr 60 60 public _GetVerifyImportTab32Ptr … … 301 301 ;; 302 302 ; Gets the a 32-bit flat pointer to the OS/2 Kernel MTE. 303 ; @cproto extern PMTE _System GetOS2KrnlMTE(void);303 ; @cproto extern PMTE _System krnlGetOS2KrnlMTE(void); 304 304 ; @returns Pointer to kernel MTE. 305 305 ; @status completely implemented. 306 306 ; @author knut st. osmundsen 307 GetOS2KrnlMTE PROC NEAR307 krnlGetOS2KrnlMTE PROC NEAR 308 308 push es 309 309 … … 318 318 pop es 319 319 ret 320 GetOS2KrnlMTE ENDP320 krnlGetOS2KrnlMTE ENDP 321 321 322 322 … … 389 389 ; @uses eax 390 390 ; @author knut st. osmundsen (kosmunds@csc.com) 391 MakeCalltab16CodeSegment proc near391 krnlMakeCalltab16CodeSegment proc near 392 392 ASSUME ds:FLAT, ss:nothing 393 393 xor eax, eax … … 440 440 mccs_ret: 441 441 ret 442 MakeCalltab16CodeSegment endp442 krnlMakeCalltab16CodeSegment endp 443 443 444 444
Note:
See TracChangeset
for help on using the changeset viewer.