8 lines
227 B
C#
8 lines
227 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Viveport.Internal
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
internal delegate void StatusCallback2(int nResult, [MarshalAs(UnmanagedType.LPStr)] string message);
|
|
}
|