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