vJoyInterfaceWrap.vJoy.GetvJoyProductString C# (CSharp) Method

GetvJoyProductString() public method

public GetvJoyProductString ( ) : string
return string
        public string GetvJoyProductString() { return Marshal.PtrToStringAuto(_GetvJoyProductString()); }
        public string GetvJoyManufacturerString() { return Marshal.PtrToStringAuto(_GetvJoyManufacturerString()); }

Usage Example

コード例 #1
0
ファイル: vJoyFeeder.cs プロジェクト: patdohere/FreeMoVR
        //retrieve driver info
        private string displayJoyDriverInfo()
        {
            String a = joystick.GetvJoyManufacturerString();
            String b = joystick.GetvJoyProductString();
            String c = joystick.GetvJoySerialNumberString();

            return(a + " | " + b + " | " + c);
        }
All Usage Examples Of vJoyInterfaceWrap.vJoy::GetvJoyProductString