home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / w32api / lib / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-02  |  654 b   |  41 lines

  1. /* Perform simple test of headers to avoid typos and such */
  2. #define Win32_Winsock
  3. #include <windows.h>
  4.  
  5. #ifdef __OBJC__
  6. #define BOOL WINBOOL
  7. #endif
  8. #include <windowsx.h>
  9. #include <commctrl.h>
  10. #include <largeint.h>
  11. #include <mmsystem.h>
  12. #include <mciavi.h>
  13. #include <mcx.h>
  14. #include <sql.h>
  15. #include <sqlext.h>
  16. #include <imm.h>
  17. #include <lm.h>
  18. #include <zmouse.h>
  19. #include <scrnsave.h>
  20. #include <cpl.h>
  21. #include <cplext.h>
  22. #include <wincrypt.h>
  23. #include <pbt.h>
  24. #include <wininet.h>
  25. #include <regstr.h>
  26. #include <custcntl.h>
  27.  
  28. #ifndef __OBJC__
  29. #include <ole2.h>
  30. #include <shlobj.h>
  31. #else
  32. #undef BOOL
  33. #endif
  34.  
  35. #include <stdio.h>
  36.  
  37. int main()
  38. {
  39.   return 0;
  40. }
  41.