Is there a way to emulate special C datatypes, like uint64 (_int64), anyID (_int16) in C#? I defined the special datatypes in C like this:
typedef unsigned _int16 anyID;
typedef unsigned _int64 uint64;
Its for using the TS3 Plugin API. It has to be C# though, and I just want to use the from TS3 defined C datatypes in C#.