home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / LordLucifer / win32asm / files / win32asm.exe / Win32ASM / ASMInc / GDI32.equ < prev    next >
Encoding:
Text File  |  1997-09-02  |  1.5 KB  |  49 lines

  1. ; GDI32 system call PROTO STDCALL\types.
  2. ; Philippe Auphelle, 30 May 1996
  3.  
  4. ; $Id: GDI32.equ 1.1 1997/09/02 09:50:33 Philippe Exp $
  5.  
  6. ; $Log: /Win32Equ/GDI32.equ $
  7. ; 1     18/09/97 14:24 Philippe
  8. ; Initial checkin into SourceSafe.
  9. ; Revision 1.1  1997/09/02 09:50:33  Philippe
  10. ; Initial revision
  11. ;
  12.  
  13.  
  14.                 INCLUDELIB GDI32.LIB
  15.  
  16.  
  17. ; These functions are Unicode/ANSI dependant, and will be postfixed at
  18. ; assembly time according to the value of the Unicode equate.
  19.  
  20.  
  21.  
  22.                 UnicAnsiExtern GetTextMetrics       ;GDI32
  23.                 UnicAnsiExtern StartDoc             ;GDI32
  24.                 UnicAnsiExtern TextOut              ;GDI32
  25.  
  26.  
  27.  
  28. DeleteDC                PROTO STDCALL\
  29.                                 hDC:DWORD
  30. EndDoc                  PROTO STDCALL\
  31.                                 hDC:DWORD
  32. EndPage                 PROTO STDCALL\
  33.                                 hDC:DWORD
  34. GetTextMetrics          PROTO STDCALL\
  35.                                 hDC:DWORD,
  36.                                 lpTM:DWORD
  37. StartDoc                PROTO STDCALL\
  38.                                 hDC:DWORD,
  39.                                 lpDI:DWORD
  40. StartPage               PROTO STDCALL\
  41.                                 hDC:DWORD
  42. TextOut                 PROTO STDCALL\
  43.                                 hDC:DWORD,
  44.                                 nXStart:DWORD,
  45.                                 nYStart:DWORD,
  46.                                 lpString:DWORD,
  47.                                 cbString:DWORD
  48.