?? teclinklist.h
字號:
// tecLinkList.h
#ifndef __TEC_LINK_LIST__
#define __TEC_LINK_LIST__
typedef struct _tec_data_info_ *LPTEC_DATA_INFO;
typedef struct _tec_data_info_ {
int nVal;
LPTEC_DATA_INFO pPrev;
LPTEC_DATA_INFO pNext;
} TEC_DATA_INFO;
typedef struct _tec_linklist_ {
int nNum;
LPTEC_DATA_INFO pData;
} TEC_LINKLIST;
#ifdef __cplusplus
extern "C" {
#endif
BOOL __stdcall tecListAdd(
TEC_LINKLIST *ptecList,
TEC_DATA_INFO *pData,
int nInsBef, /*1: First. 0: Last*/
DWORD *pdwErrCode
);
BOOL __stdcall tecListDel(
TEC_LINKLIST *ptecList,
TEC_DATA_INFO *pData,
int *pnPos,
DWORD *pdwErrCode
);
BOOL __stdcall tecListFind(
TEC_LINKLIST strutecList,
TEC_DATA_INFO *pData,
int *pnPos,
DWORD *pdwErrCode
);
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -