📄 devpcdmsync.h
字号:
//
// File:
// =====
// DevPCDMSync.h: Header file
//
// Description:
// ============
// This class represents the store object for your provider.
// The implementation file also contains all the required dll
// export functions.
//
#pragma once
#include <windows.h>
#include <cesync.h>
#define PCDMSYNC_NUM_FOLDERS 1
class CBaseFolder;
class CPCDMSyncStore
{
public:
CPCDMSyncStore();
~CPCDMSyncStore();
protected:
CBaseFolder *m_pFolders[PCDMSYNC_NUM_FOLDERS];
CBaseFolder* GetFolderByName(LPWSTR wszName);
public:
BOOL FindObjects(PFINDOBJINFO pFindObjInfo);
BOOL InitObjType(LPWSTR lpszObjType, IReplObjHandler **ppObjHandler, UINT uPartnerBit);
BOOL ObjectNotify(POBJNOTIFY pNotify);
BOOL GetObjTypeInfo(POBJTYPEINFO pInfo);
BOOL ReportStatus(LPWSTR lpszObjType, UINT uCode, UINT uParam);
};
//
// This declares the one & only instance of the CPCDMSyncStore class.
// You can access any public members of this class through the
// global _Store (Its definition is in PCDMSync.cpp)
//
extern CPCDMSyncStore _Store;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -