mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
17
Src/Plugins/Input/in_mp4/VirtualIO.h
Normal file
17
Src/Plugins/Input/in_mp4/VirtualIO.h
Normal file
@ -0,0 +1,17 @@
|
||||
#ifndef NULLSOFT_IN_MP4_VIRTUALIO_H
|
||||
#define NULLSOFT_IN_MP4_VIRTUALIO_H
|
||||
#include "main.h"
|
||||
#include <api/service/svcs/svc_fileread.h>
|
||||
#include <virtual_io.h>
|
||||
|
||||
void *CreateReader(const wchar_t *url, HANDLE killswitch);
|
||||
void DestroyReader(void *reader);
|
||||
void StopReader(void *reader);
|
||||
extern Virtual_IO HTTPIO;
|
||||
extern Virtual_IO UnicodeIO;
|
||||
|
||||
void *CreateUnicodeReader(const wchar_t *filename);
|
||||
void DestroyUnicodeReader(void *reader);
|
||||
int UnicodeClose(void *user);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user