8 lines
198 B
C#
8 lines
198 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Viveport.Internal
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
internal delegate void QueryRuntimeModeCallback(int nResult, int nMode);
|
|
}
|