mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
27 lines
517 B
C
27 lines
517 B
C
#ifndef _THP_THPREAD_H
|
|
#define _THP_THPREAD_H
|
|
|
|
#include "common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL CreateReadThread(s32 prioriy);
|
|
void ReadThreadStart(void);
|
|
void ReadThreadCancel(void);
|
|
|
|
// TODO: figure out if these returns THPBuffer * instead(DWARF info pls)
|
|
void* PopReadedBuffer(void);
|
|
void* PopFreeReadBuffer(void);
|
|
void* PopReadedBuffer2(void);
|
|
void* PushReadedBuffer(void* buffer);
|
|
void PushFreeReadBuffer(void* buffer);
|
|
void PushReadedBuffer2(void* buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|