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.
26 lines
481 B
26 lines
481 B
|
|
|
|
#ifndef _CGROUP_H_
|
|
#define _CGROUP_H_
|
|
|
|
class COleDsGroup: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsGroup( IUnknown* );
|
|
COleDsGroup( );
|
|
~COleDsGroup( );
|
|
|
|
HRESULT DeleteItem ( COleDsObject* );
|
|
HRESULT AddItem ( );
|
|
|
|
|
|
public:
|
|
DWORD GetChildren( DWORD* pTokens, DWORD dwMaxChildren,
|
|
CDialog* pQueryStatus,
|
|
BOOL* pFilters, DWORD dwFilters );
|
|
|
|
};
|
|
|
|
#endif
|
|
|