devpcdmsync.h
来自「《Windows CE 权威指南》(作者:(美)CHRIS MUENCH」· C头文件 代码 · 共 44 行
H
44 行
//
// 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 + =
减小字号Ctrl + -
显示快捷键?