tear down Engine god object #4511

just trying different things
This commit is contained in:
Andrey 2022-09-05 04:09:59 -04:00
parent b756456450
commit 09bef1e440
3 changed files with 10 additions and 9 deletions

View File

@ -9,6 +9,14 @@
#pragma once
#ifndef FALSE
#define FALSE (0)
#endif /* FALSE */
#ifndef TRUE
#define TRUE (!(FALSE))
#endif /* TRUE */
#ifdef __cplusplus
#define EXTERNC extern "C"
#else

View File

@ -8,6 +8,7 @@
#pragma once
#include "global.h"
#include "tunerstudio_outputs.h"
class CdmState {
public:

View File

@ -9,14 +9,6 @@
* this file.
*/
#ifndef FALSE
#define FALSE (0)
#endif /* FALSE */
#ifndef TRUE
#define TRUE (!(FALSE))
#endif /* TRUE */
#include <rusefi/arrays.h>
#include <rusefi/crc.h>
#include <rusefi/fragments.h>
@ -25,11 +17,11 @@
#include <rusefi/math.h>
#include <rusefi/pt2001.h>
#include "global.h"
#include "efifeatures.h"
#include "rusefi_generated.h"
#include "loggingcentral.h"
#include "error_handling.h"
#include "global.h"
#include "efi_gpio.h"
#include "tunerstudio_outputs.h"
#include "engine.h"