OPTIONS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. class COptions
  11. {
  12. public:
  13. COptions::COptions();
  14. void DefineDlgMacros();
  15. int m_nCustomType;
  16. UINT m_nCustomSteps;
  17. int m_nApwzSeq;
  18. };
  19. extern COptions g_options;