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.

41 lines
764 B

  1. //
  2. // header file for bmp_test.cxx
  3. // see bmp_test.cxx for information
  4. //
  5. #ifndef _BMP_TEST_HXX_
  6. #define _BMP_TEST_HXX_
  7. #include <bm_parse.hxx>
  8. class CSimpleTest : public CTimerBase
  9. {
  10. public:
  11. virtual SCODE SetParserObject ();
  12. virtual SCODE DeleteParserObject ();
  13. virtual WCHAR *Name ();
  14. virtual WCHAR* SectionHeader ();
  15. };
  16. class CParserTest : public CParserBase
  17. {
  18. public:
  19. virtual SCODE Setup (CTestInput *pInput);
  20. virtual SCODE Cleanup ();
  21. virtual ULONG ParseNewInstruction(LPWSTR pszNewInstruction);
  22. virtual ULONG ExecuteInstruction(ULONG ulInstrID);
  23. virtual WCHAR* InstructionName(ULONG ulInstrID);
  24. private:
  25. ULONG m_iInstrID;
  26. WCHAR m_wszBuf[30];
  27. };
  28. #endif