home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d009_2 / 1.ddi / SAMPLES / WINAPI / WINDOWS.IN$ / WINDOWS.bin
Encoding:
Text File  |  1992-02-03  |  1.2 KB  |  35 lines

  1. '******************************** WINDOWS.INC *********************************
  2. 'Demonstrates: Sample Declare, Const, and Type structures for calling the
  3. '              Windows API.
  4. '
  5. 'Required Files: WINUSER.INC, WINKERN.INC, WINGDI.INC
  6. '
  7. 'Uses:
  8. '
  9. 'Complexity Level: ADVANCED
  10. '
  11. 'Notes: The three include file below correspond to the three section of the
  12. '       Windows SDK 'windows.h' C header file.  These include files are
  13. '       provided for those who wish to call Windows API routines from MSTest.
  14. '       Since these are large Include files, you may wish to extract only the
  15. '       statements necessary for your particular API calls from the approriate
  16. '       file.
  17. '
  18. '       NOTE: Some Windows.h struct field names have been changed to avoid
  19. '       conflicts with MSTest reserved words.  These changes are:
  20. '
  21. '       RECT                - left and right are defined as wleft and wright
  22. '       MSG and EVENTMSG    - time is defined as dwtime
  23. '
  24. '******************************************************************************
  25.  
  26. ' USER section of Windows.Inc
  27. '$Include: 'WinUser.Inc'
  28.  
  29. ' Kernel Section of Windows.Inc
  30. '$Include: 'WinKern.Inc'
  31.  
  32. ' GDI Section of Windows.Inc
  33. '$Include: 'WinGDI.Inc'
  34.  
  35.