home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / MASM.ZIP / INCLUDE / OS2.IN$ / OS2.bin
Encoding:
Text File  |  1991-02-28  |  706 b   |  37 lines

  1. ;
  2. ; Module Name: OS2.INC
  3. ;
  4. ; This is the top level include file that includes all the files necessary
  5. ; for writing an OS/2 application.
  6. ;
  7. ; Copyright (c) 1987-1990, Microsoft Corporation.  All rights reserved.
  8. ;
  9. ;
  10.  
  11. OS2_INCLUDED    EQU     1
  12.  
  13. ; DEFINED macro to emulate C 'defined' preprocessor operators
  14. DEFINED MACRO   symbol
  15.     IFDEF   symbol
  16.         EXITM <-1>
  17.     ELSE
  18.         EXITM <0>
  19.     ENDIF
  20. ENDM
  21.  
  22. ; Common definitions
  23.  
  24. IFNDEF  OS2DEF_INCLUDED         ; Only include it once
  25. INCLUDE os2def.inc
  26. ENDIF
  27.  
  28. ; OS/2 Base include file
  29.  
  30. INCLUDE bse.inc
  31.  
  32. ; OS/2 Presentation Manager include files not implemented for assembler
  33.  
  34. ;IFNDEF  INCL_NOPM
  35. ;INCLUDE pm.inc
  36. ;ENDIF
  37.