mirror of
https://github.com/AntonioND/palib.git
synced 2025-06-18 14:45:43 -04:00
30 lines
378 B
C
30 lines
378 B
C
#ifndef _PA_Main
|
|
#define _PA_Main
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <nds.h>
|
|
#include <maxmod7.h>
|
|
#include <dswifi7.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "PA_IPC.h"
|
|
#include "PA_FifoMessages.h"
|
|
#include "PA_Transfer.h"
|
|
|
|
#include "arm7/as_lib7.h"
|
|
|
|
void PA_Init(void);
|
|
|
|
void PA_InputGetAndSend(void);
|
|
void PA_LegacyIPCManage(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|