mirror of
https://github.com/Maschell/dynamic_libs.git
synced 2024-11-15 01:15:15 +01:00
21 lines
302 B
C
21 lines
302 B
C
#ifndef __NN_NIM_FUNCTIONS_H_
|
|
#define __NN_NIM_FUNCTIONS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "os_types.h"
|
|
|
|
/* Handle for coreinit */
|
|
extern u32 nn_nim_handle;
|
|
|
|
void InitAcquireNim(void);
|
|
void InitNimFunctionPointers(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __NN_NIM_FUNCTIONS_H_
|