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.

18 lines
345 B

  1. #pragma once
  2. #include "modlist.h"
  3. class CModuleListSet : public vector<CModuleList>
  4. {
  5. public:
  6. VOID
  7. DumpSetToConsole ();
  8. BOOL
  9. FContainsModuleList (
  10. IN const CModuleList* pList) const;
  11. HRESULT
  12. HrAddModuleList (
  13. IN const CModuleList* pList,
  14. IN DWORD dwFlags /* INS_FLAGS */);
  15. };