You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
374 B
C
24 lines
374 B
C
#pragma once
|
|
|
|
|
|
#define NATIVEDLL_EXPORTS
|
|
|
|
#ifdef NATIVEDLL_EXPORTS
|
|
#define NATIVEDLL_API __declspec(dllexport)
|
|
#else
|
|
#define NATIVEDLL_API __declspec(dllimport)
|
|
#endif
|
|
|
|
// 定义回调函数类型
|
|
typedef void(*InvalidateWndCallback)(int msgType,int msgValue);
|
|
|
|
enum eWellPoleCallbackMsgDef
|
|
{
|
|
tZeroData,
|
|
tInvalidateWnd,
|
|
tSetItemForElement,
|
|
vSetSelectItem,
|
|
vSetWellPoleItem
|
|
};
|
|
|