mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
16 lines
No EOL
325 B
C++
16 lines
No EOL
325 B
C++
#pragma once
|
|
#include "FileProcessor.h"
|
|
|
|
class ProgressiveProcessor : public FileProcessor
|
|
{
|
|
public:
|
|
ProgressiveProcessor();
|
|
~ProgressiveProcessor();
|
|
|
|
private:
|
|
/* FLVProcessor virtual method overrides */
|
|
int Write(void *data, size_t datalen, size_t *written);
|
|
private:
|
|
HANDLE writeCursor;
|
|
wchar_t tempFile[MAX_PATH];
|
|
}; |