UiPlayDel.h
上传用户:hjhsjcl
上传日期:2020-09-25
资源大小:11378k
文件大小:1k
源码类别:

压缩解压

开发平台:

C++ Builder

  1. /*==========================================================================
  2. Copyright (c) 2004 ALi Corporation. All Rights Reserved
  3. File: UiFileList.c
  4. content: user interface for play module
  5. History: Created by TNE 2005/6/1
  6. ==========================================================================*/
  7. #ifdef _UI_PDEL_H_
  8. #define EXTERN
  9. #define _AT_(addr) _at_ addr
  10. #else
  11. #define EXTERN extern
  12. #define _AT_(addr)
  13. #endif
  14. //========== Keep varaible when del file ==========
  15. //Use gxbFontData for temp buffer
  16. #define gxwOldDelCurtFileInClass (*(WORD *)(gxbFontData+0)) //0x00-0x01
  17. #define gxwOldDelTotalFileInClass (*(WORD *)(gxbFontData+2)) //0x02-0x03
  18. #define gxwOldDelTotalFileInSelClass (*(WORD *)(gxbFontData+4)) //0x04-0x05
  19. #define gdwOldDelCdbAddPoint (*(DWORD *)(gxbFontData+6)) //0x06-0x09
  20. //for keep gxwOldTotalFileInDir and gxwOldTotalDirInDir, the define address should be the same
  21. #if(_PM_FLIST_)
  22. #define GXW_OLD_TOTAL_FILE_IN_DIR (*(WORD *)(gxbFontData+0x0A)) //0x0A-0x0B
  23. #define GXW_OLD_TOTAL_DIR_IN_DIR (*(WORD *)(gxbFontData+0x0C)) //0x0C-0x0D
  24. #else
  25. #define gxwOldTotalFileInDir (*(WORD *)(gxbFontData+0x0A)) //0x0A-0x0B
  26. #define gxwOldTotalDirInDir (*(WORD *)(gxbFontData+0x0C)) //0x0C-0x0D
  27. #endif
  28. //tne 2006/01/10
  29. #define UI_DEL_RE_COUNT_SEL_CLASS TRUE
  30. #define UI_DEL_NO_COUNT_SEL_CLASS FALSE
  31. #undef EXTERN
  32. #undef _AT_