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.
50 lines
1.2 KiB
50 lines
1.2 KiB
/* UNDDESHAREINFO - contains information about a NDDE share */
|
|
|
|
struct UNDdeShareInfo_tag {
|
|
LONG lRevision;
|
|
LPWSTR lpszShareName;
|
|
LONG lShareType;
|
|
LPWSTR lpszAppTopicList;
|
|
LONG fSharedFlag;
|
|
LONG fService;
|
|
LONG fStartAppFlag;
|
|
LONG nCmdShow;
|
|
LONG qModifyId[2];
|
|
LONG cNumItems;
|
|
LPWSTR lpszItemList;
|
|
};
|
|
typedef struct UNDdeShareInfo_tag UNDDESHAREINFO;
|
|
typedef struct UNDdeShareInfo_tag * PUNDDESHAREINFO;
|
|
|
|
/*
|
|
Special commands
|
|
*/
|
|
#define NDDE_SC_TEST 0
|
|
#define NDDE_SC_REFRESH 1
|
|
#define NDDE_SC_GET_PARAM 2
|
|
#define NDDE_SC_SET_PARAM 3
|
|
#define NDDE_SC_DUMP_NETDDE 4
|
|
|
|
struct sc_param {
|
|
LONG pType;
|
|
LONG offSection;
|
|
LONG offKey;
|
|
LONG offszValue;
|
|
UINT pData;
|
|
};
|
|
|
|
typedef struct sc_param SC_PARAM;
|
|
typedef struct sc_param * PSC_PARAM;
|
|
|
|
#define SC_PARAM_INT 0
|
|
#define SC_PARAM_STRING 1
|
|
|
|
void RefreshNDDECfg(void);
|
|
void RefreshDSDMCfg(void);
|
|
void DebugDdeIntfState();
|
|
void DebugDderState();
|
|
void DebugRouterState();
|
|
void DebugPktzState();
|
|
|
|
|
|
|