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.
21 lines
301 B
21 lines
301 B
|
|
|
|
#ifndef _CSESSION_H_
|
|
#define _CSESSION_H_
|
|
|
|
class COleDsSession: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsSession( IUnknown* );
|
|
COleDsSession( );
|
|
~COleDsSession( );
|
|
|
|
CString GetDeleteName ( );
|
|
|
|
public:
|
|
HRESULT ReleaseIfNotTransient( void );
|
|
};
|
|
|
|
#endif
|
|
|