didlist.h

来自「Simple Module Procedure Call for windows」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef __DIDLIST_H#define __DIDLIST_H#include <dlist/dlist.h>typedef unsigned long	dword;class DIdElement : public DElement{ private:  dword id; public:   DIdElement(dword _id) : DElement() { id = _id; }  dword Id(void) const { return id; }};class DIdList : public DSortList{ public:  DIdList(void) : DSortList() {}  virtual int cmp(DElement* e, DElement* nxt) const  { return ((DIdElement*)e)->Id() < ((DIdElement*)nxt)->Id(); }  DIdElement* Get(dword);};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?