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.

23 lines
465 B

  1. #ifndef _CSERVICE_H_
  2. #define _CSERVICE_H_
  3. class COleDsService: public COleDsObject
  4. {
  5. public:
  6. COleDsService( IUnknown* );
  7. COleDsService( );
  8. ~COleDsService( );
  9. public:
  10. virtual HRESULT PutProperty( int, int, CString& );
  11. virtual HRESULT PutProperty( CString&, CString&, CString& );
  12. virtual HRESULT GetProperty( int, int, CString& );
  13. virtual HRESULT GetProperty( CString&, CString&, CString& );
  14. };
  15. #endif