From d2b661b2a16f1bb76dca339dea77318497621022 Mon Sep 17 00:00:00 2001 From: Serban Marin Date: Mon, 9 Dec 2024 13:03:22 -0500 Subject: [PATCH] Sync with 2024.2 release --- examples/impaseg/impaseg.grc | 22 ++-- examples/impaseg/impaseg.gxc | 21 +++- include/du.gxh | 3 +- include/precomp_all.gxh | 197 ++++++++++++++++++----------------- include/version.gxh | 2 +- 5 files changed, 133 insertions(+), 112 deletions(-) diff --git a/examples/impaseg/impaseg.grc b/examples/impaseg/impaseg.grc index 601c34d..3ba56f8 100644 --- a/examples/impaseg/impaseg.grc +++ b/examples/impaseg/impaseg.grc @@ -1,14 +1,15 @@ // //----------------------------------------------------------------------------- RESOURCE,FORM,IMPASEGForm,"Import GDF",-1 -FEDIT,,,24,"ASEG-GDF DEFN File",,OLD,,,*.dfn -FEDIT,,,24,"ASEG-GDF Data File",,OLD,,,*.dat -FEDIT,,,24,"ASEG-GDF Description File(optional)",,OLD,,,*.txt;*.des -EDIT,,,24,"Flight Line Channel name",,,"FLTLINE" -FEDIT,,,24,"Template",,OLD,,,*.i4 -FEDIT,,,24,"ASEG-GDF Projection File (optional)",,,,,*.prj;*.met -EDIT,,,24,"X Channel to associate with projection" -EDIT,,,24,"Y Channel to associate with projection" +FEDIT,,,24,"ASEG-GDF2 DEFN file",,OLD,,,*.dfn +FEDIT,,,24,"ASEG-GDF2 data file",,OLD,,,*.dat +FEDIT,,,24,"ASEG-GDF2 description file(optional)",,OLD,,,*.txt;*.des +EDIT,,,24,"Flight line channel name",,,"FLTLINE" +FEDIT,,,24,"ASEG-GDF2 template file",,OLD,,,*.i4 +FEDIT,,,24,"ASEG-GDF2 projection file (optional)",,,,,*.prj;*.met +EDIT,,,24,"X channel to associate with projection" +EDIT,,,24,"Y channel to associate with projection" +LEDIT,,,24,"Use fiducial channel",R,FORCE,"No",FIDUCIAL EBUT,&OK,0 EBUT,&Cancel,1,CANCEL HBUT,&Help,help @@ -20,7 +21,10 @@ EBUT,&OK,0 EBUT,&Cancel,-1,CANCEL HBUT,&Help,help - RESOURCE,HELP,help,nogx.hlp RESOURCE,LIST,CHAN + +RESOURCE,LIST,FIDUCIAL +ITEM,"No" ,"No" +ITEM,"Yes" ,"Yes" diff --git a/examples/impaseg/impaseg.gxc b/examples/impaseg/impaseg.gxc index d04253a..755c27e 100644 --- a/examples/impaseg/impaseg.gxc +++ b/examples/impaseg/impaseg.gxc @@ -12,12 +12,14 @@ Import ASEG-GDF data. .PROJ : Input Projection file name (optional) .XCH : Channel pair to associate with projection .YCH : Channel pair to associate with projection + .FIDUCIAL : Fiducial selection " TRANSLATIONDOMAIN = "core" TRANSLATIONFRIENDLYPATH = "GX/Database/Import/ASEG-GDF" // Revision History: +// v2024.2: Allow user to select fiducial. // v5.1.8: Set current X and Y channels only if these values are defined. // v5.1.7: Delete line 0, channel loading should be done in script mode, too. // v5.1.3: Added projection setting if enabled. @@ -48,7 +50,8 @@ int i; // Utility int iLines; int iChannels; int iBlobs; -int iErase; +int iErase; +int iFiducial; string(STR_FILE) sDefn, sFile, sDB; string(STR_DEFAULT_LONG) sPr; @@ -57,6 +60,7 @@ string(STR_FILE) sFLC; string(STR_FILE) sTemplate; string(STR_DEFAULT_SHORT) sExt; string(STR_DB_SYMBOL) sXCh,sYCh; +string(STR_FILE) sFID; //=========================================================================== // CODE @@ -102,7 +106,8 @@ string(STR_DB_SYMBOL) sXCh,sYCh; GetString_SYS("IMPASEG","TEMPLATE",sFile); if(!iStrlen_STR(sFile) && iStrlen_STR(sTemplate)) SetString_SYS("IMPASEG","TEMPLATE",sTemplate); - + DefaultInt_SYS("IMPASEG", "FIDUCIAL", 0); + // --- Set any Defaults --- SetInfoSYS_DGW(Diag,_IMPASEGFORM_0,DGW_FILEPATH,"IMPASEG","DEFN"); @@ -113,6 +118,8 @@ string(STR_DB_SYMBOL) sXCh,sYCh; SetInfoSYS_DGW(Diag,_IMPASEGFORM_5,DGW_FILEPATH,"IMPASEG","PROJ"); SetInfoSYS_DGW(Diag,_IMPASEGFORM_6,DGW_TEXT,"IMPASEG","XCH"); SetInfoSYS_DGW(Diag,_IMPASEGFORM_7,DGW_TEXT,"IMPASEG","YCH"); + SetInfoSYS_DGW(Diag,_IMPASEGFORM_8,DGW_LISTALIAS,"IMPASEG","FIDUCIAL"); + // --- Run the Dialogue --- @@ -130,6 +137,7 @@ string(STR_DB_SYMBOL) sXCh,sYCh; GetInfoSYS_DGW(Diag,_IMPASEGFORM_5,DGW_FILEPATH,"IMPASEG","PROJ"); GetInfoSYS_DGW(Diag,_IMPASEGFORM_6,DGW_TEXT,"IMPASEG","XCH"); GetInfoSYS_DGW(Diag,_IMPASEGFORM_7,DGW_TEXT,"IMPASEG","YCH"); + GetInfoSYS_DGW(Diag,_IMPASEGFORM_8,DGW_LISTALIAS,"IMPASEG","FIDUCIAL"); // --- Destroy the Dialogue --- @@ -149,6 +157,13 @@ string(STR_DB_SYMBOL) sXCh,sYCh; GetString_SYS("IMPASEG","PROJ",sProj); GetString_SYS("IMPASEG","XCH", sXCh); GetString_SYS("IMPASEG","YCH", sYCh); + + GetString_SYS("IMPASEG","FIDUCIAL", sFID); + + if (iChar_STR(sFID) == iChar_STR("No")) + iFiducial = 0; + else if (iChar_STR(sFID) == iChar_STR("Yes")) + iFiducial = 1; // --- At least one of Data, Defn or Template file names is necessary --- @@ -270,7 +285,7 @@ string(STR_DB_SYMBOL) sXCh,sYCh; // --- import --- - ImportAsegProj_DU(Data,sTemplate,sDefn,sData,sFLC,64,sProj,sXCh,sYCh); + ImportAsegProj_DU(Data,sTemplate,sDefn,sData,sFLC,64,sProj,sXCh,sYCh,iFiducial); // --- Set the X and Y channels as current --- diff --git a/include/du.gxh b/include/du.gxh index d6619a9..840bc2d 100644 --- a/include/du.gxh +++ b/include/du.gxh @@ -2139,7 +2139,8 @@ int, // Number of channels to import at one time string, // Projection file name string, // Channel pair to associate projection - string); // Channel pair to associate projection + string, // Channel pair to associate projection + int); // Fiducial selection diff --git a/include/precomp_all.gxh b/include/precomp_all.gxh index 6df5905..1cc919a 100644 --- a/include/precomp_all.gxh +++ b/include/precomp_all.gxh @@ -15018,9 +15018,10 @@ typedef KENGRAV; int, string, string, - string); + string, + int); #pragma encoding(ansi) -# 2166 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2167 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportBIN_DU(DB, string, string, @@ -15028,7 +15029,7 @@ typedef KENGRAV; int, real); #pragma encoding(ansi) -# 2195 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2196 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportBIN2_DU(DB, string, string, @@ -15037,7 +15038,7 @@ typedef KENGRAV; real, WA); #pragma encoding(ansi) -# 2215 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2216 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportBIN4_DU(DB, int, string, @@ -15047,20 +15048,20 @@ typedef KENGRAV; real, WA); #pragma encoding(ansi) -# 2236 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2237 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportDAARC500Serial_DU(DB, int, string, int, int); #pragma encoding(ansi) -# 2258 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2259 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportDAARC500SerialGPS_DU(DB, int, string, int); #pragma encoding(ansi) -# 2282 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2283 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportDAO_DU(DB, string, string, @@ -15068,62 +15069,62 @@ typedef KENGRAV; string, string); #pragma encoding(ansi) -# 2306 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2307 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportESRI_DU(DB, string, string, string); #pragma encoding(ansi) -# 2319 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2320 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportGBN_DU(DB, string); #pragma encoding(ansi) -# 2330 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2331 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportODDF_DU(DB, string); #pragma encoding(ansi) -# 2341 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2342 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportPico_DU(DB, string, string, int); #pragma encoding(ansi) -# 2357 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2358 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportUBCModMsh_DU(DB, string, string, int, real); #pragma encoding(ansi) -# 2371 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2372 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportUSGSPost_DU(DB, string); #pragma encoding(ansi) -# 2388 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2389 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportXYZ_DU(DB, int, string, string); #pragma encoding(ansi) -# 2407 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2408 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportXYZ2_DU(DB, int, string, string, WA); #pragma encoding(ansi) -# 2424 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2425 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ImportIoGAS_DU(DB, string, string); #pragma encoding(ansi) -# 2436 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2437 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void IndexOrder_DU(DB, int, int, int); #pragma encoding(ansi) -# 2449 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2450 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Interp_DU(DB, int, int, @@ -15131,7 +15132,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2464 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2465 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void InterpGap_DU(DB, int, int, @@ -15141,7 +15142,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2481 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2482 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void InterpGapAndFill_DU(DB, int, int, @@ -15152,7 +15153,7 @@ typedef KENGRAV; int, real); #pragma encoding(ansi) -# 2499 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2500 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Intersect_DU(DB, int, int, @@ -15160,7 +15161,7 @@ typedef KENGRAV; real, string); #pragma encoding(ansi) -# 2514 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2515 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void IntersectAll_DU(DB, int, int, @@ -15168,11 +15169,11 @@ typedef KENGRAV; real, string); #pragma encoding(ansi) -# 2531 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2532 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void IntersectGDBtoTBL_DU(string, string); #pragma encoding(ansi) -# 2550 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2551 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void IntersectOld_DU(DB, int, int, @@ -15180,11 +15181,11 @@ typedef KENGRAV; string, string); #pragma encoding(ansi) -# 2570 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2571 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void IntersectTBLtoGDB_DU(string, string); #pragma encoding(ansi) -# 2600 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2601 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void LabTemplate_DU(string, string, int, @@ -15195,58 +15196,58 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2643 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2644 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void LoadGravity_DU(DB, REG, int, string); #pragma encoding(ansi) -# 2658 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2659 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void LoadGravityCG6_DU(DB, string); #pragma encoding(ansi) -# 2671 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2672 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void LoadGravityCG6ToLine_DU(DB, string, string); #pragma encoding(ansi) -# 2685 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2686 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void LoadGravityCG6Ex_DU(DB, string, string, int); #pragma encoding(ansi) -# 2710 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2711 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void LoadLTB_DU(DB, int, LTB, int); #pragma encoding(ansi) -# 2723 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2724 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void MakeFid_DU(DB, int, int, int); #pragma encoding(ansi) -# 2736 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2737 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Mask_DU(DB, int, int, int); #pragma encoding(ansi) -# 2763 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2764 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Math_DU(DB, int, EXP); #pragma encoding(ansi) -# 2776 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2777 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void MergeLine_DU(DB, int, int, int, int); #pragma encoding(ansi) -# 2795 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2796 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ModFidRange_DU(DB, int, real, @@ -15255,7 +15256,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2814 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2815 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Move_DU(DB, int, int, @@ -15263,7 +15264,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2830 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2831 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void NLFilt_DU(DB, int, int, @@ -15271,12 +15272,12 @@ typedef KENGRAV; int, real); #pragma encoding(ansi) -# 2847 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2848 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void Normal_DU(DB, int, int); #pragma encoding(ansi) -# 2859 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2860 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void PolyFill_DU(DB, int, int, @@ -15285,7 +15286,7 @@ typedef KENGRAV; PLY, int); #pragma encoding(ansi) -# 2875 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2876 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void PolyMask_DU(DB, int, int, @@ -15294,7 +15295,7 @@ typedef KENGRAV; PLY, int); #pragma encoding(ansi) -# 2893 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2894 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ProjectData_DU(DB, int, int, @@ -15303,7 +15304,7 @@ typedef KENGRAV; int, PJ); #pragma encoding(ansi) -# 2911 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2912 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ProjectXYZ_DU(DB, int, int, @@ -15314,7 +15315,7 @@ typedef KENGRAV; int, PJ); #pragma encoding(ansi) -# 2931 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2932 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ProjPoints_DU(DB, int, int, @@ -15336,12 +15337,12 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 2967 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2968 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void QCInitSeparation_DU(DB, real, real); #pragma encoding(ansi) -# 2985 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 2986 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int QCSurveyPlan_DU(DB, WA, PLY, @@ -15361,7 +15362,7 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3018 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3019 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int QCSurveyPlan2_DU(DB, WA, PLY, @@ -15381,13 +15382,13 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3053 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3054 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] real rDirection_DU(DB, int, int, int); #pragma encoding(ansi) -# 3078 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3079 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ReFid_DU(DB, int, int, @@ -15398,18 +15399,18 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3101 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3102 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ReFidAllCh_DU(DB, int, int); #pragma encoding(ansi) -# 3119 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3120 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ReFidCh_DU(DB, int, int, int); #pragma encoding(ansi) -# 3132 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3133 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Rotate_DU(DB, int, int, @@ -15420,7 +15421,7 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3152 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3153 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SampleGD_DU(DB, int, int, @@ -15428,7 +15429,7 @@ typedef KENGRAV; int, GD); #pragma encoding(ansi) -# 3169 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3170 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SampleIMG_DU(DB, int, int, @@ -15436,7 +15437,7 @@ typedef KENGRAV; int, IMG); #pragma encoding(ansi) -# 3186 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3187 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SampleIMGLineLST_DU(DB, LST, int, @@ -15444,7 +15445,7 @@ typedef KENGRAV; int, IMG); #pragma encoding(ansi) -# 3203 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3204 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SampleIMGLineLSTEx_DU(DB, LST, int, @@ -15453,41 +15454,41 @@ typedef KENGRAV; IMG, int); #pragma encoding(ansi) -# 3221 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3222 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ScanADO_DU(string, string, string); #pragma encoding(ansi) -# 3234 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3235 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ScanAseg_DU(string, string, string, string); #pragma encoding(ansi) -# 3249 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3250 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void ScanDAO_DU(string, string, string, string); #pragma encoding(ansi) -# 3263 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3264 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ScanPico_DU(string, string); #pragma encoding(ansi) -# 3274 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3275 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Sort_DU(DB, int, int, int); #pragma encoding(ansi) -# 3287 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3288 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SortIndex_DU(DB, int, int, int, int); #pragma encoding(ansi) -# 3301 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3302 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SortIndex2_DU(DB, int, int, @@ -15496,27 +15497,27 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3317 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3318 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SortIndexN_DU(DB, int, VV, VV, int); #pragma encoding(ansi) -# 3332 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3333 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLine_DU(DB, int, int, real); #pragma encoding(ansi) -# 3348 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3349 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLine2_DU(DB, int, int, real, int); #pragma encoding(ansi) -# 3365 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3366 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLineXY_DU(DB, int, int, @@ -15528,7 +15529,7 @@ typedef KENGRAV; var int, int); #pragma encoding(ansi) -# 3387 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3388 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLineXY2_DU(DB, int, int, @@ -15541,7 +15542,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3410 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3411 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLineXY3_DU(DB, int, int, @@ -15555,7 +15556,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3434 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3435 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLineByDirection_DU(DB, int, int, @@ -15570,7 +15571,7 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3458 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3459 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void SplitLineByDirection2_DU(DB, int, int, @@ -15586,27 +15587,27 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3486 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3487 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Stat_DU(DB, int, int, ST); #pragma encoding(ansi) -# 3499 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3500 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void TableLineFid_DU(DB, int, int, TB, int); #pragma encoding(ansi) -# 3513 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3514 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void TableSelectedLinesFid_DU(DB, int, int, TB, int); #pragma encoding(ansi) -# 3531 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3532 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void TimeConstant_DU(DB, int, int, @@ -15616,20 +15617,20 @@ typedef KENGRAV; int, int); #pragma encoding(ansi) -# 3550 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3551 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void Trend_DU(DB, int, int, int, int); #pragma encoding(ansi) -# 3567 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3568 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void UpdateIntersectDB_DU(DB, int, int, DB); #pragma encoding(ansi) -# 3593 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3594 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void VoxelSection_DU(DB, int, int, @@ -15640,13 +15641,13 @@ typedef KENGRAV; real, int); #pragma encoding(ansi) -# 3619 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3620 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_public] void WriteWA_DU(DB, int, LST, WA); #pragma encoding(ansi) -# 3634 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3635 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void XyzLine_DU(DB, int, int, @@ -15654,7 +15655,7 @@ typedef KENGRAV; int, real); #pragma encoding(ansi) -# 3651 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3652 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void XyzLine2_DU(DB, int, int, @@ -15663,7 +15664,7 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3669 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3670 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void XyzLine3_DU(DB, int, int, @@ -15673,7 +15674,7 @@ typedef KENGRAV; real, int); #pragma encoding(ansi) -# 3686 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3687 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void ZMask_DU(DB, int, int, @@ -15681,14 +15682,14 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3704 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3705 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void RangeXY_DU(DB, var real, var real, var real, var real); #pragma encoding(ansi) -# 3722 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3723 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void RangeXYZ_DU(DB, int, int, @@ -15701,7 +15702,7 @@ typedef KENGRAV; var real, var int); #pragma encoding(ansi) -# 3750 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3751 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void RangeXYZData_DU(DB, int, int, @@ -15717,13 +15718,13 @@ typedef KENGRAV; var real, var int); #pragma encoding(ansi) -# 3784 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3785 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void CreateDrillholeParameterWeightConstraintDatabase_DU(DB, int, REG, string); #pragma encoding(ansi) -# 3800 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3801 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void CalculateDrapedSurveyAltitude_DU(DB, int, int, @@ -15737,7 +15738,7 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3826 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3827 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void CalculateDrapedSurveyAltitude2_DU(DB, int, int, @@ -15753,7 +15754,7 @@ typedef KENGRAV; real, real); #pragma encoding(ansi) -# 3851 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3852 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void DirectGridDataToVoxel_DU(DB, int, int, @@ -15771,7 +15772,7 @@ typedef KENGRAV; real, int); #pragma encoding(ansi) -# 3878 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3879 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void DirectGridItemCountsToVoxel_DU(DB, int, int, @@ -15789,7 +15790,7 @@ typedef KENGRAV; real, int); #pragma encoding(ansi) -# 3914 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3915 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int iEMTauAutomatic_DU(VV, VV, VV, @@ -15805,7 +15806,7 @@ typedef KENGRAV; var int, VV); #pragma encoding(ansi) -# 3940 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3941 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int iEMTauCalc_DU(VV, VV, real, @@ -15819,7 +15820,7 @@ typedef KENGRAV; var int, VV); #pragma encoding(ansi) -# 3964 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3965 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int iEMTauLateTime_DU(VV, VV, VV, @@ -15837,7 +15838,7 @@ typedef KENGRAV; var int, VV); #pragma encoding(ansi) -# 3992 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 3993 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] int iEMTauManual_DU(VV, VV, VV, @@ -15854,14 +15855,14 @@ typedef KENGRAV; var int, VV); #pragma encoding(ansi) -# 4016 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 4017 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_licensed] void EMTauTrendWindow_DU(VV, VV, int, VV, VV); #pragma encoding(ansi) -# 4030 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 4031 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_extended] void FootprintCoverageStatic_DU(DAT, PLY, real, @@ -15871,7 +15872,7 @@ typedef KENGRAV; var real, MPLY); #pragma encoding(ansi) -# 4047 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" +# 4048 "M:\b\REL\geosoft-ci\geosoft-ci\geosoft-base\api\build\gxapi\geosoft.desktop\gxh/du.gxh" [_extended] void FootprintCoverageDynamic_DU(DAT, PLY, string, diff --git a/include/version.gxh b/include/version.gxh index ea1fbc0..7513adb 100644 --- a/include/version.gxh +++ b/include/version.gxh @@ -1 +1 @@ -VERSION = "2024.2 (20241104) Geosoft Inc." +VERSION = "2024.2 (20241130) Geosoft Inc."