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
466 B
33 lines
466 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_Pi_args_V();
|
|
|
|
void func_V_args_Pi(int arg1_P);
|
|
|
|
int func_Pi_args_Pi(int arg1_P);
|
|
|
|
void func_V_args_pPi(unsigned int* const arg1_pP);
|
|
|
|
int func_Pi_args_Pi_pPi_pPi(int arg1_P,unsigned int* const arg2_pP, int* arg3_pP);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif //FUNCTIONS_H
|
|
|