MoreItems.h 753 B

123456789101112131415161718192021222324252627
  1. #ifndef NULLSOFT_MOREITEMSH
  2. #define NULLSOFT_MOREITEMSH
  3. struct moreitems
  4. {
  5. moreitems();
  6. ~moreitems();
  7. const wchar_t *GetHiddenFilename(int index);
  8. int AddHiddenItem(const wchar_t *filename, const wchar_t *title, int length, int index, char *curtain);
  9. const char *GetHiddenCurtain(int index);
  10. int SetRange(int index, unsigned long start, unsigned long end);
  11. unsigned long GetStart(int index);
  12. unsigned long GetEnd(int index);
  13. wchar_t *strFile;
  14. size_t cbFile;
  15. wchar_t *strTitle;
  16. size_t cbTitle;
  17. char *strCurtain;
  18. size_t cbCurtain;
  19. int length;
  20. int index;
  21. unsigned long starttime; // Start time in MS (0, begin of file)
  22. unsigned long endtime; // End time in MS (0, end of file)
  23. moreitems *Next; // Next Item in linked list
  24. };
  25. #endif