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.
28 lines
593 B
28 lines
593 B
|
|
|
|
#ifndef _CGENERIC_H_
|
|
#define _CGENERIC_H_
|
|
|
|
class COleDsGeneric: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsGeneric( IUnknown* );
|
|
COleDsGeneric( );
|
|
~COleDsGeneric( );
|
|
|
|
// void SetClass ( CClass* );
|
|
|
|
HRESULT DeleteItem ( COleDsObject* );
|
|
HRESULT AddItem ( );
|
|
HRESULT MoveItem ( );
|
|
HRESULT CopyItem ( );
|
|
|
|
public:
|
|
DWORD GetChildren( DWORD* pTokens, DWORD dwMaxChildren,
|
|
CDialog* pQueryStatus,
|
|
BOOL* pFilters, DWORD dwFilters );
|
|
};
|
|
|
|
#endif
|
|
|