Leaked source code of windows server 2003
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.

38 lines
815 B

  1. //+------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993.
  5. //
  6. // File: bm_cgps.hxx
  7. //
  8. // Contents: test CoGetPSClsid
  9. //
  10. // Classes: CCGPSTest
  11. //
  12. // History: 07-Oct-95 Rickhi Created
  13. //
  14. //--------------------------------------------------------------------------
  15. #ifndef _BM_CGPS_HXX_
  16. #define _BM_CGPS_HXX_
  17. #include <bm_base.hxx>
  18. class CCGPSTest : public CTestBase
  19. {
  20. public:
  21. virtual TCHAR *Name ();
  22. virtual SCODE Setup (CTestInput *input);
  23. virtual SCODE Run ();
  24. virtual SCODE Report (CTestOutput &OutputFile);
  25. virtual SCODE Cleanup ();
  26. private:
  27. ULONG m_ulIterations;
  28. // build version APIs
  29. ULONG m_ulCoGetPSClsid[TEST_MAX_ITERATIONS];
  30. };
  31. #endif