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.
33 lines
443 B
33 lines
443 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_V_args_V();
|
|
|
|
int func_P_args_V();
|
|
|
|
void func_V_args_P(int arg1_P);
|
|
|
|
int func_P_args_P(int arg1_P);
|
|
|
|
void func_V_args_pP(unsigned int* const arg1_pP);
|
|
|
|
int func_P_args_P_pP_pP(int arg1_P, int* arg2_pP, int* arg3_pP);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif //FUNCTIONS_H
|
|
|