mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 17:29:17 +01:00
50231648ca
*Removed the temporary AltDol Fix
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
|