Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
736 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: demo.hxx
  3. *
  4. * Copyright (c) 1997 Microsoft Corporation
  5. *
  6. \**************************************************************************/
  7. #ifndef __demo_hxx__
  8. #define __demo_hxx__
  9. #include "mtk.hxx"
  10. #include "util.hxx"
  11. // Global environment
  12. #define MAX_USERS 10
  13. class ENV {
  14. public:
  15. ENV::ENV(int argc, char **argv);
  16. ENV::ENV();
  17. ENV::~ENV();
  18. LPTSTR *pUserTexFiles;
  19. TEX_RES *pUserTexRes;
  20. int nUsers; // one texture per user
  21. int iSelectedUser;
  22. BOOL bDebugMode;
  23. HINSTANCE hInstance;
  24. };
  25. extern BOOL RunLogonSequence( ENV* );
  26. extern BOOL RunContextMenuSequence( ENV *pEnv );
  27. #endif // __demo_hxx__