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.

28 lines
621 B

  1. #ifndef _CGENERIC_H_
  2. #define _CGENERIC_H_
  3. class COleDsGeneric: public COleDsObject
  4. {
  5. public:
  6. COleDsGeneric( IUnknown* );
  7. COleDsGeneric( );
  8. ~COleDsGeneric( );
  9. // void SetClass ( CClass* );
  10. HRESULT DeleteItem ( COleDsObject* );
  11. HRESULT AddItem ( );
  12. HRESULT MoveItem ( );
  13. HRESULT CopyItem ( );
  14. public:
  15. DWORD GetChildren( DWORD* pTokens, DWORD dwMaxChildren,
  16. CDialog* pQueryStatus,
  17. BOOL* pFilters, DWORD dwFilters );
  18. };
  19. #endif