You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
574 B
45 lines
574 B
#ifndef FUNCTIONS_H
|
|
#define FUNCTIONS_H
|
|
|
|
#include "typedefs.h"
|
|
#include "enums.h"
|
|
#include "structs.h"
|
|
#include "vars.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void func_void_void();
|
|
|
|
int func_int_void();
|
|
|
|
void func_void_int(int);
|
|
|
|
int func_int_int(int);
|
|
|
|
// struct
|
|
struct _PS func__PS_V();
|
|
|
|
// enum
|
|
enum _E func__E_V();
|
|
|
|
// typedef
|
|
T_P func_TP_V();
|
|
void func_V_TP(T_P);
|
|
T_P func_TP_TP(T_P);
|
|
|
|
APS func_APS_V();
|
|
void func_V_APS(APS);
|
|
APS func_APS_APS(APS);
|
|
|
|
TPS func_TPS_V();
|
|
void func_V_TPS(TPS);
|
|
TPS func_TPS_TPS(TPS);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif //FUNCTIONS_H
|
|
|