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
18 lines
345 B
#pragma once
|
|
#include "modlist.h"
|
|
|
|
class CModuleListSet : public vector<CModuleList>
|
|
{
|
|
public:
|
|
VOID
|
|
DumpSetToConsole ();
|
|
|
|
BOOL
|
|
FContainsModuleList (
|
|
IN const CModuleList* pList) const;
|
|
|
|
HRESULT
|
|
HrAddModuleList (
|
|
IN const CModuleList* pList,
|
|
IN DWORD dwFlags /* INS_FLAGS */);
|
|
};
|