mirror of https://github.com/tongzx/nt5src
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
545 B
26 lines
545 B
|
|
|
|
#ifndef _CDOMAIN_H_
|
|
#define _CDOMAIN_H_
|
|
|
|
class COleDsDomain: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsDomain( IUnknown* );
|
|
COleDsDomain( );
|
|
~COleDsDomain( );
|
|
|
|
HRESULT DeleteItem ( COleDsObject* );
|
|
HRESULT AddItem ( );
|
|
HRESULT MoveItem ( );
|
|
HRESULT CopyItem ( );
|
|
|
|
public:
|
|
DWORD GetChildren( DWORD* pTokens, DWORD dwMaxChildren,
|
|
CDialog* pQueryStatus,
|
|
BOOL* pFilters, DWORD dwFilters );
|
|
};
|
|
|
|
#endif
|
|
|