diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2013-02-09 15:29:53 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2013-02-09 15:29:53 +0000 |
commit | 36f82a4f0dc4f002123cc313eab7c845dcd13572 (patch) | |
tree | c97146db8d0cf1f6b54a77650771b5e0824ed073 /FreeTrackClient/FTClient.h | |
parent | 22cf655f0b1380cb0e948302f4a73bbfb5ec919b (diff) |
Created a FaceTrackNoIR-version of FreeTrackClient.dll, because the existing one was crashing ArmA2. Made a 64-bit version too.
The FTReportName function was a trouble-maker. In the repo of FreeTrack it expects a pointer to a name, in reality, it should receive an integer... Cost me a while to figure out why ArmA kept crashing :(
Also added the option to enable/disable FreeTrack or TrackIR in the FreeTrack 2.0 settings-dialog.
Even more, added a button so users can 'repair' the location of NPClient.dll. Some users complained that their SW didn't work with TrackIR any more, after running FaceTrackNoIR...
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@270 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FreeTrackClient/FTClient.h')
-rw-r--r-- | FreeTrackClient/FTClient.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/FreeTrackClient/FTClient.h b/FreeTrackClient/FTClient.h new file mode 100644 index 00000000..406e1237 --- /dev/null +++ b/FreeTrackClient/FTClient.h @@ -0,0 +1,30 @@ +/** @file
+ @brief
+*/
+#pragma once
+#ifndef INCLUDED_FTCLIENT_H
+#define INCLUDED_FTCLIENT_H
+
+
+
+
+
+
+#include "Windows.h"
+#include "SysUtils.h"
+#include "FTTypes.h"
+
+/*__stdcall*/ bool FTGetData(PFreetrackData data);
+/*__stdcall*/ void FTReportName(PAnsiChar name);
+/*__stdcall*/ char* FTGetDllVersion();
+/*__stdcall*/ char* FTProvider();
+
+
+bool OpenMapping();
+void DestroyMapping();
+
+
+
+
+#endif//INCLUDED_FTCLIENT_H
+//END
|