mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
17 lines
240 B
C++
17 lines
240 B
C++
#ifndef __NX_INIT_H
|
|
#define __NX_INIT_H
|
|
|
|
namespace NxPs2
|
|
{
|
|
|
|
void InitialiseEngine(void);
|
|
void ResetEngine(void);
|
|
void SuspendEngine(void);
|
|
void AllocateExtraDMA(bool allocate);
|
|
|
|
} // namespace NxPs2
|
|
|
|
|
|
#endif // __NX_INIT_H
|
|
|