home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sysmgmt / setup / infinst / instwiz.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  1KB  |  42 lines

  1.  
  2. /******************************************************************************\
  3. *       This is a part of the Microsoft Source Code Samples. 
  4. *       Copyright (C) 1995-1997 Microsoft Corporation.
  5. *       All rights reserved. 
  6. *       This source code is only intended as a supplement to 
  7. *       Microsoft Development Tools and/or WinHelp documentation.
  8. *       See these sources for detailed information regarding the 
  9. *       Microsoft samples programs.
  10. \******************************************************************************/
  11.  
  12. //////////////////////////////
  13. // resource definitions
  14.  
  15. #include "resource.h"
  16.  
  17. //
  18. // constants
  19. //
  20. #define NUM_PAGES    6
  21. #define MAX_BUF        5000
  22. #define MAX_LINE    512
  23.  
  24. //
  25. // Pages for INSTALL
  26. //
  27. BOOL APIENTRY Welcome(HWND, UINT, UINT, LONG);
  28. BOOL APIENTRY License(HWND, UINT, UINT, LONG);
  29. BOOL APIENTRY YourInfo(HWND, UINT, UINT, LONG);
  30. BOOL APIENTRY Install_Type(HWND, UINT, UINT, LONG);
  31. BOOL APIENTRY Install_Destination(HWND, UINT, UINT, LONG);
  32. BOOL APIENTRY Specify_Location(HWND, UINT, UINT, LONG);
  33. BOOL APIENTRY Custom_Options(HWND, UINT, UINT, LONG);
  34. BOOL APIENTRY Install(HWND, UINT, UINT, LONG);
  35.  
  36. //
  37. //functions
  38. //
  39. int CreateWizard(HWND, HINSTANCE);
  40. void FillInPropertyPage( PROPSHEETPAGE* , int, LPSTR, DLGPROC);
  41.  
  42.