home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v1.zip / DDKX86 / H / OS2STD.H < prev    next >
Text File  |  1995-04-14  |  2KB  |  44 lines

  1. /*DDK*************************************************************************/
  2. /*                                                                           */
  3. /* COPYRIGHT (C) Microsoft Corporation, 1989                                 */
  4. /* COPYRIGHT    Copyright (C) 1995 IBM Corporation                           */
  5. /*                                                                           */
  6. /*    The following IBM OS/2 WARP source code is provided to you solely for  */
  7. /*    the purpose of assisting you in your development of OS/2 WARP device   */
  8. /*    drivers. You may use this code in accordance with the IBM License      */
  9. /*    Agreement provided in the IBM Device Driver Source Kit for OS/2. This  */
  10. /*    Copyright statement may not be removed.                                */
  11. /*                                                                           */
  12. /*****************************************************************************/
  13. /*static char *SCCSID = "@(#)os2std.h    6.1 90/11/15";*/
  14. /*static char *SCCSID = "@(#)os2std.h    1.00 89/10/30";*/
  15. /***************************************************************************\
  16. *
  17. * Module Name: OS2STD.H
  18. *
  19. * OS/2 Standard Definitions file
  20. *
  21. *
  22. \***************************************************************************/
  23.  
  24. /* This file contains definitions that are more dependant upon the    */
  25. /* definition of the c language than upon the implementation of OS|2.    */
  26. /* It is similar to stdio.h.                        */
  27.  
  28. /* XLATOFF */
  29. #if (defined(M_I86SM) || defined(M_I86MM))
  30. /* XLATON */
  31. #define     NULL     0
  32. /* XLATOFF */
  33. #else
  34. #if (defined(M_I86L) || defined(M_I86CM) || defined(M_I86LM) || defined(M_I86HM))
  35. #define     NULL     0L
  36. #else
  37. #define     NULL     0
  38. #endif
  39. #endif
  40. /* XLATON */
  41.  
  42. #define FALSE    0
  43. #define TRUE    1
  44.