List.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:0k
源码类别:

uCOS

开发平台:

C/C++

  1. #ifndef __LIST_H__
  2. #define __LIST_H__
  3. #include "../inc/sysconfig.h"
  4. #if USE_MINIGUI==0
  5. #define OSListMemNum 1000
  6. typedef struct typeList{ //系统控件的链表
  7. struct typeList* pNextList;
  8. struct typeList* pPreList;
  9. void *pData;
  10. }List,*PList;
  11. void initOSList(void);
  12. void AddListNode(PList plist, void* pNode);
  13. void DeleteListNode(PList pList);
  14. PList GetLastList(PList pList);
  15. #endif //#if USE_MINIGUI==0
  16. #endif