mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05:00
21 lines
573 B
C
21 lines
573 B
C
#ifndef DWC_INIT_H_
|
|
#define DWC_INIT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
DWC_INIT_RESULT_NOERROR, DWC_INIT_RESULT_CREATE_USERID, DWC_INIT_RESULT_DESTROY_USERID, DWC_INIT_RESULT_DESTROY_OTHER_SETTING, DWC_INIT_RESULT_LAST, DWC_INIT_RESULT_DESTORY_USERID = DWC_INIT_RESULT_DESTROY_USERID, DWC_INIT_RESULT_DESTORY_OTHER_SETTING = DWC_INIT_RESULT_DESTROY_OTHER_SETTING
|
|
};
|
|
|
|
extern int DWC_Init(void * work);
|
|
extern u64 DWC_GetAuthenticatedUserId(void);
|
|
extern void DWC_Debug_DWCInitError(void * work, int dwc_init_error);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|