diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-23 23:13:34 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-24 19:33:34 +0200 |
commit | 459202a781fa997f6d8f841e9a55cd9325fd4cc9 (patch) | |
tree | 0347cc291467129ee07bbf7972d62e335c450505 /x-plane-plugin/plugin.c | |
parent | cc5c36f5cba605cb416d116b4861e447e555ad8a (diff) |
unbreak hopefully
Diffstat (limited to 'x-plane-plugin/plugin.c')
-rw-r--r-- | x-plane-plugin/plugin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x-plane-plugin/plugin.c b/x-plane-plugin/plugin.c index 62c9d6f0..3958c895 100644 --- a/x-plane-plugin/plugin.c +++ b/x-plane-plugin/plugin.c @@ -13,8 +13,6 @@ #include <XPLMCamera.h> #include <XPLMProcessing.h> -#include "ftnoir_tracker_base/ftnoir_tracker_types.h" - #ifndef PLUGIN_API #define PLUGIN_API #endif @@ -23,6 +21,10 @@ #define WINE_SHM_NAME "facetracknoir-wine-shm" #define WINE_MTX_NAME "facetracknoir-wine-mtx" +enum Axis { + TX = 0, TY, TZ, Yaw, Pitch, Roll +}; + typedef struct PortableLockedShm { void* mem; int fd, size; |