32 lines
575 B
C
32 lines
575 B
C
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strsafe.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "SimConnect.h"
|
|
|
|
#pragma comment(lib, "SimConnect.lib")
|
|
|
|
typedef struct initialization {
|
|
uint8_t numModes;
|
|
int8_t maxRev;
|
|
char modes[3][5];
|
|
} initialization;
|
|
|
|
typedef struct values {
|
|
uint8_t mode;
|
|
int8_t leverValuesInPercent[4];
|
|
} values;
|
|
|