Click or drag to resize
CSYSEnableGXDebugger Method (CGXNETCore, String, String)
Enable GX Debugger GUI

Available since Oasis montaj version: 5.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
Takes as input two strings one a path that will be scanned recursively for GXC source files and a second string without a path of the GX where the first breakpoint should be set in (i.e. "gxname.gx"). The source of the GX should be found in the path (e.g. <path>\somewhere\gxname.gxc) and a breakpoint will be set on the first executing line of this GX. Make sure the GX binary is newer than the source file, otherwise unexpected results may occur. As soon as the GX is run the GUI will become visible and it will be possible to set more breakpoints in any of the GXC files found in the path.
Syntax
public static void EnableGXDebugger(
	CGXNETCore gxNetShared,
	string src_dir,
	string first_gx
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
src_dir
Type: SystemString
Path that will be scanned recursively for GXC source files
first_gx
Type: SystemString
Name of gx where first breakpoint should be set
See Also