blob: 2cce6da1fe03cdbd8e2f1cec911a2a212a1b1138 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef PLT_PARSER__
#define PLT_PARSER__
/* *************************************
* Includes
* *************************************/
#include "Global_Inc.h"
#include "GameStructures.h"
/* *************************************
* Defines
* *************************************/
/* **************************************
* Structs and enums *
* *************************************/
/* *************************************
* Global prototypes
* *************************************/
bool PltParserLoadFile(const char* strPath, TYPE_FLIGHT_DATA* const ptrFlightData);
uint8_t* PltParserGenerateFile(TYPE_PLT_CONFIG* ptrPltConfig);
/* *************************************
* Global variables
* *************************************/
#endif //PLT_PARSER__
|