Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. struct TorrentInfoType_FilesList
  2. {
  3.     wchar_t* filepath;
  4.     wchar_t* filename;
  5.     long long filesize;
  6. };
  7.  
  8. struct TorrentInfoType
  9. {
  10.     bool IsValid;
  11.     wchar_t* name;
  12.     wchar_t* hash;
  13.     long long creationDate;
  14.     wchar_t* creator;
  15.     wchar_t* comment;
  16.     bool IsPrivate;
  17.     long long totalSize;
  18.     int filesCount;
  19.     int pieceLength;
  20.     int piecesCount;
  21.  
  22.     std::vector<TorrentInfoType_FilesList> files;
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement