Skip to content

Commit 691aa23

Browse files
Add method for RE_RUN_AS_X86 setting at config.gx.
1 parent ca95526 commit 691aa23

File tree

1 file changed

+12
-0
lines changed
  • dotnet/src/dotnetframework/GxClasses/Model

1 file changed

+12
-0
lines changed

dotnet/src/dotnetframework/GxClasses/Model/gxproc.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,18 @@ public GXProcedure()
5353
}
5454
#endif
5555
}
56+
protected int MainImplEx(string[] args)
57+
{
58+
try
59+
{
60+
Config.ParseArgs(ref args);
61+
return ExecuteCmdLine(args);
62+
}
63+
catch (Exception ex)
64+
{
65+
return GXUtil.HandleException(ex, GetType().ToString(), args); ;
66+
}
67+
}
5668

5769
protected int MainImpl(string[] args)
5870
{

0 commit comments

Comments
 (0)