mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
19 lines
487 B
C
19 lines
487 B
C
|
/****************************************************************************
|
||
|
* USB Loader GX Team
|
||
|
* buffer.cpp
|
||
|
*
|
||
|
* Loading covers in a background thread
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef BUFFER_H
|
||
|
#define BUFFER_H
|
||
|
|
||
|
GuiImage * ImageBuffer(int imagenumber);
|
||
|
void NewOffset(int off, int d);
|
||
|
void InitBufferThread();
|
||
|
void ShutdownBufferThread();
|
||
|
void ResumeBufferThread(int offset);
|
||
|
void HaltBufferThread();
|
||
|
|
||
|
#endif
|