terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
Native.cs
Go to the documentation of this file.
1using System;
3
4namespace InControl
5{
6 // Token: 0x0200003C RID: 60
7 internal static class Native
8 {
9 // Token: 0x06000324 RID: 804 RVA: 0x0000965C File Offset: 0x0000785C
10 public static void Init(NativeInputOptions options)
11 {
12 }
13
14 // Token: 0x06000325 RID: 805 RVA: 0x0000966C File Offset: 0x0000786C
15 public static void Stop()
16 {
17 }
18
19 // Token: 0x06000326 RID: 806 RVA: 0x0000967C File Offset: 0x0000787C
21 {
22 }
23
24 // Token: 0x06000327 RID: 807 RVA: 0x0000968C File Offset: 0x0000788C
25 public static bool GetDeviceInfo(uint handle, [Out] InputDeviceInfo deviceInfo)
26 {
27 }
28
29 // Token: 0x06000328 RID: 808 RVA: 0x0000969C File Offset: 0x0000789C
30 public static bool GetDeviceState(uint handle, [Out] IntPtr deviceState)
31 {
32 }
33
34 // Token: 0x06000329 RID: 809 RVA: 0x000096AC File Offset: 0x000078AC
35 public static int GetDeviceEvents([Out] IntPtr deviceEvents)
36 {
37 }
38
39 // Token: 0x0600032A RID: 810 RVA: 0x000096BC File Offset: 0x000078BC
40 public static void SetHapticState(uint handle, byte motor0, byte motor1)
41 {
42 }
43
44 // Token: 0x0600032B RID: 811 RVA: 0x000096CC File Offset: 0x000078CC
45 public static void SetLightColor(uint handle, byte red, byte green, byte blue)
46 {
47 }
48
49 // Token: 0x0600032C RID: 812 RVA: 0x000096DC File Offset: 0x000078DC
50 public static void SetLightFlash(uint handle, byte flashOnDuration, byte flashOffDuration)
51 {
52 }
53
54 // Token: 0x040002CF RID: 719
55 private const string libraryName = "InControlNative";
56 }
57}
class f__AnonymousType0<< Count > j__TPar
static void SetHapticState(uint handle, byte motor0, byte motor1)
Definition Native.cs:40
static int GetDeviceEvents([Out] IntPtr deviceEvents)
Definition Native.cs:35
static bool GetDeviceState(uint handle, [Out] IntPtr deviceState)
Definition Native.cs:30
static void SetLightFlash(uint handle, byte flashOnDuration, byte flashOffDuration)
Definition Native.cs:50
const string libraryName
Definition Native.cs:55
static bool GetDeviceInfo(uint handle, [Out] InputDeviceInfo deviceInfo)
Definition Native.cs:25
static void GetVersionInfo([Out] NativeVersionInfo versionInfo)
Definition Native.cs:20
static void SetLightColor(uint handle, byte red, byte green, byte blue)
Definition Native.cs:45
static void Stop()
Definition Native.cs:15
static void Init(NativeInputOptions options)
Definition Native.cs:10