ISDb.h
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #pragma once
  2. #include <atlcoll.h>
  3. #include <afxinet.h>
  4. #include "Playlist.h"
  5. #define ISDb_PROTOCOL_VERSION 1
  6. struct isdb_subtitle
  7. {
  8. int id, discs, disc_no;
  9. CStringA name, format, language, iso639_2, nick, email;
  10. struct isdb_subtitle() {reset();}
  11. void reset() {id = discs = disc_no = 0; format = language = nick = email = "";}
  12. };
  13. struct isdb_movie
  14. {
  15. CAtlList<CStringA> titles;
  16. CAtlList<isdb_subtitle> subs;
  17. void reset() {titles.RemoveAll(); subs.RemoveAll();}
  18. void operator = (const struct isdb_movie& m)
  19. {
  20. titles.RemoveAll(); 
  21. titles.AddTailList(&m.titles);
  22. subs.RemoveAll(); 
  23. subs.AddTailList(&m.subs);
  24. }
  25. };
  26. struct filehash {CString name; UINT64 size, hash;};
  27. extern bool hash(LPCTSTR fn, filehash& fh);
  28. extern void hash(CPlaylist& pl, CList<filehash>& fhs);
  29. extern CStringA makeargs(CPlaylist& pl);
  30. extern bool OpenUrl(CInternetSession& is, CString url, CStringA& str);