Fixed CreateStringEvalValue creating strings with wrong char width
This commit is contained in:
parent
93ae52b04a
commit
b1958593ec
|
@ -77,7 +77,7 @@ namespace PorygonSharp.EvalValues
|
|||
[DllImport("PorygonLang", EntryPoint = "CreateBoolEvalValue",CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern IntPtr CreateBoolEvalValue(bool b);
|
||||
[DllImport("PorygonLang", EntryPoint = "CreateStringEvalValue",CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern IntPtr CreateStringEvalValue(string s);
|
||||
private static extern IntPtr CreateStringEvalValue([MarshalAs(UnmanagedType.LPWStr)]string s);
|
||||
[DllImport("PorygonLang", EntryPoint = "CreateUserDataEvalValue",CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern IntPtr CreateUserDataEvalValue(uint typeHash, IntPtr obj);
|
||||
|
||||
|
|
Loading…
Reference in New Issue