mirror of
https://github.com/Maschell/dynamic_libs.git
synced 2024-11-14 17:05:16 +01:00
24 lines
380 B
C
24 lines
380 B
C
#ifndef __NN_FP_FUNCTIONS_H_
|
|
#define __NN_FP_FUNCTIONS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "os_types.h"
|
|
|
|
/* Handle for coreinit */
|
|
extern u32 nn_fp_handle;
|
|
|
|
extern void(* nn_fp_GetMyPresence)(void *);
|
|
extern void(* nn_fp_Initialize)(void);
|
|
|
|
void InitAcquireFp(void);
|
|
void InitFpFunctionPointers(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __NN_FP_FUNCTIONS_H_
|