Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jiowcl committed Sep 7, 2019
1 parent 57331f2 commit 13122a3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ThinBasic.NET/Core/Thinbasic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ public class Thinbasic
/// <param name="dependancyMode"></param>
/// <returns>Returns int.</returns>
[DllImport("thinCore.dll", EntryPoint = "thinBasic_Run", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)]
public static extern int Run(int hScript, [MarshalAs(UnmanagedType.BStr)] string sBuffer, int bufferType, int options, int debugMode, int logMode, int obfuscateMode, int callingProgram, int dependancyMode);
public static extern int Run(int hScript,
[MarshalAs(UnmanagedType.BStr)] string sBuffer,
int bufferType,
int options,
int debugMode,
int logMode,
int obfuscateMode,
int callingProgram,
int dependancyMode);

/// <summary>
/// Release
Expand Down

0 comments on commit 13122a3

Please sign in to comment.