aboutsummaryrefslogtreecommitdiff
path: root/bindings/cs
diff options
context:
space:
mode:
authordpeter99 <dpeter99@gmail.com>2018-04-01 17:36:08 +0200
committerJustin Berger <j.david.berger@gmail.com>2018-04-02 00:11:42 -0600
commitee3160032cd6a609a490be011019b323fe1c0c02 (patch)
tree101a9d30bfe5677756237c90c8a7f3dccc780d04 /bindings/cs
parentcf4c2c50e75e6b21d7aa65211031417619e4dacd (diff)
downloadlibsurvive-ee3160032cd6a609a490be011019b323fe1c0c02.tar.gz
libsurvive-ee3160032cd6a609a490be011019b323fe1c0c02.tar.bz2
Added new accesors (WIP)
Diffstat (limited to 'bindings/cs')
-rw-r--r--bindings/cs/libsurvive.net/cfunctions.cs24
1 files changed, 23 insertions, 1 deletions
diff --git a/bindings/cs/libsurvive.net/cfunctions.cs b/bindings/cs/libsurvive.net/cfunctions.cs
index 6715a36..67812f5 100644
--- a/bindings/cs/libsurvive.net/cfunctions.cs
+++ b/bindings/cs/libsurvive.net/cfunctions.cs
@@ -94,7 +94,29 @@ namespace libsurvive
public static extern int Survive_default_htc_config_process(SurviveObjectPtr so, string ct0conf, int len);
-//#pragma warning restore IDE1006 // Naming Styles
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_codename")]
+ public static extern char Survive_object_codename(SurviveObjectPtr so);
+
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_drivername")]
+ public static extern char Survive_object_drivername(SurviveObject so);
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_charge")]
+ public static extern byte Survive_object_charge(SurviveObject so);
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_charging")]
+ public static extern bool Survive_object_charging(SurviveObject so);
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_pose")]
+ public static extern SurvivePose Survive_object_pose(SurviveObject so);
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_sensor_locations")]
+ public static extern int Survive_object_sensor_locations(SurviveObjectPtr so);
+
+ [DllImport("libsurvive", CallingConvention = CallingConvention.StdCall, EntryPoint = "survive_object_sensor_normals")]
+ public static extern int Survive_object_sensor_normals(SurviveObjectPtr so);
+
+ //#pragma warning restore IDE1006 // Naming Styles
}