home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / customwz / options.h < prev    next >
C/C++ Source or Header  |  1998-03-05  |  685b  |  23 lines

  1. // options.cpp : declaration of COptions class.  This class keeps track of
  2. //                options which affect each other (number of "new" steps
  3. //                requested-- that is, steps other than those automatically
  4. //                included from the standard AppWizard sequences; which, if
  5. //                any, AppWizard sequence of steps to include; and the type
  6. //                of the custom AppWizard).
  7. //
  8. // Copyright (c) 1985-1998, Microsoft Corporation. All rights reserved.
  9. //
  10.  
  11. class COptions
  12. {
  13. public:
  14.     COptions::COptions();
  15.     void DefineDlgMacros();
  16.  
  17.     int m_nCustomType;
  18.     UINT m_nCustomSteps;
  19.     int m_nApwzSeq;
  20. };
  21.  
  22. extern COptions g_options;
  23.