home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n05 / gotcha.exe / CD32DEMO.H < prev    next >
C/C++ Source or Header  |  1995-05-01  |  1KB  |  34 lines

  1. #include <windows.h>   // Windows
  2. #include "basedefs.h"  // Dave's stuff
  3. #include "base1ui.h"   // Symbols for resources
  4.  
  5. //===============================================================
  6. //
  7. // Public Function Prototypes (called between code segements)
  8. //
  9. // Preface these functions with the filename that they live in,
  10. // that makes it easier to find them once your program gets
  11. // mondo, and you can quickly recognize far calls in your code.
  12. //
  13. //===============================================================
  14.  
  15. WINPROC CD32DEMO_WndProc     ( WINDOWS_PARAMS );
  16.  
  17. //===============================================================
  18. //
  19. // Global Variables. The GLOBAL and GLOBAL CHAR macros expect
  20. // that *one* of your .C files has the INMAIN symbol defined,
  21. // all the other C files should NOT have the INMAIN symbol
  22. // defined.
  23. //
  24. // If you are using precompiled headers, you will need one
  25. // PCH file for the INMAIN definition, and one for the
  26. // non INMAIN definition.
  27. //
  28. //===============================================================
  29.  
  30. GLOBAL      HANDLE ghInst;
  31. GLOBAL      HWND   ghWnd;
  32. GLOBALCHAR         (szAppName[],"CD32DEMO"         );
  33. GLOBALCHAR         (szCaption[],"Common Dialog File Open Demo" );
  34.