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.
33 lines
750 B
33 lines
750 B
class CNWCOMPATFSFileServiceGeneralInfo: INHERIT_TRACKING,
|
|
public IADsFSFileServiceGeneralInfo
|
|
{
|
|
|
|
friend class CNWCOMPATFileService;
|
|
|
|
public:
|
|
|
|
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj);
|
|
|
|
DECLARE_STD_REFCOUNTING;
|
|
|
|
DECLARE_IDispatch_METHODS;
|
|
|
|
DECLARE_IADsFSFileServiceGeneralInfo_METHODS;
|
|
|
|
CNWCOMPATFSFileServiceGeneralInfo();
|
|
|
|
~CNWCOMPATFSFileServiceGeneralInfo();
|
|
|
|
static
|
|
HRESULT
|
|
CNWCOMPATFSFileServiceGeneralInfo::Create(
|
|
CNWCOMPATFileService FAR * pCoreADsObject,
|
|
CNWCOMPATFSFileServiceGeneralInfo FAR * FAR * ppFileServiceGenInfo
|
|
);
|
|
|
|
protected:
|
|
|
|
CDispatchMgr *_pDispMgr;
|
|
CNWCOMPATFileService *_pCoreADsObject;
|
|
};
|
|
|