VirtualIO.h 468 B

1234567891011121314151617
  1. #ifndef NULLSOFT_IN_MP4_VIRTUALIO_H
  2. #define NULLSOFT_IN_MP4_VIRTUALIO_H
  3. #include "main.h"
  4. #include <api/service/svcs/svc_fileread.h>
  5. #include <virtual_io.h>
  6. void *CreateReader(const wchar_t *url, HANDLE killswitch);
  7. void DestroyReader(void *reader);
  8. void StopReader(void *reader);
  9. extern Virtual_IO HTTPIO;
  10. extern Virtual_IO UnicodeIO;
  11. void *CreateUnicodeReader(const wchar_t *filename);
  12. void DestroyUnicodeReader(void *reader);
  13. int UnicodeClose(void *user);
  14. #endif