home *** CD-ROM | disk | FTP | other *** search
/ Select a Pet / Select_a_Pet.iso / mac / SETUPAPI.INC < prev   
Text File  |  1994-07-07  |  57KB  |  1,848 lines

  1. rem rem $$Begin$$
  2.  
  3. rem Copyright:    (c) 1994 ICFX Corporation. All Rights Reserved.
  4. rem
  5. rem Project:      Pet CD 1
  6. rem
  7. rem Component:    Installer
  8. rem
  9. rem Description:  MSSETUP includes
  10. rem
  11. rem ---------------------------------------------------------------------
  12. rem
  13. rem rem   $Author:   NSJ  $
  14. rem
  15. rem rem     $Date:   07 Jul 1994 18:13:40  $
  16. rem
  17. rem rem      $Log:   S:/minnie.vcs/install/setupapi.inv  $
  18. rem 
  19. rem    Rev 1.1   07 Jul 1994 18:13:40   NSJ
  20. rem No change.
  21. rem 
  22. rem    Rev 1.0   07 Jul 1994 17:21:48   NSJ
  23. rem Initial revision.
  24. rem
  25. rem rem  $Logfile:   S:/minnie.vcs/install/setupapi.inv  $
  26. rem
  27. rem rem $Workfile:   setupapi.inc  $
  28. rem
  29. rem ---------------------------------------------------------------------
  30.  
  31. rem rem $$End$$
  32.  
  33. rem ---------------------------------------------------------------------
  34. rem
  35. rem SETUPAPI.INC - MSSETUP Include
  36. rem
  37. rem                Version 1.0
  38. rem
  39. rem                (c) 1994 ICFX Corporation. All Rights Reserved.
  40. rem
  41. rem ---------------------------------------------------------------------
  42.  
  43.  
  44.  
  45. '**************************************************************************
  46. '*******************************  Windows API's  **************************
  47. '**************************************************************************
  48. GLOBAL hSetup AS INTEGER
  49. GLOBAL fFrameInit AS INTEGER
  50. GLOBAL fInstallInit AS INTEGER
  51.  
  52. CONST SM_CXSCREEN = 0
  53. CONST SM_CYSCREEN = 1
  54.  
  55. CONST WF_80x87    = 1024
  56. CONST WF_CPU186   =  128
  57. CONST WF_CPU286   =    2
  58. CONST WF_CPU386   =    4
  59. CONST WF_CPU486   =    8
  60. CONST WF_STANDARD =   16
  61. CONST WF_ENHANCED =   32
  62.  
  63.  
  64. '' DoMsgBox Flags
  65.  
  66. CONST MB_OK          = 0
  67. CONST MB_ICONHAND    = 16
  68. CONST MB_TASKMODAL   = 8192
  69.  
  70.  
  71. DECLARE FUNCTION DoMsgBox LIB "mscomstf.dll" (lpText$,lpCaption$,wType%) As INTEGER
  72. DECLARE FUNCTION GetWindowsDirectory LIB "kernel" (szBuf$, cbBuf%) AS INTEGER
  73. DECLARE FUNCTION GetSystemDirectory LIB "kernel" (szBuf$, cbBuf%) AS INTEGER
  74. DECLARE FUNCTION GetProfileString LIB "kernel" (szSect$, szKey$, szDefault$, szBuf$, cbBuf%) AS INTEGER
  75. DECLARE FUNCTION GetVersion LIB "kernel" AS INTEGER
  76. DECLARE FUNCTION GetSystemMetrics LIB "user" (nIndex%) AS INTEGER
  77. DECLARE FUNCTION GetWinFlags LIB "kernel" AS LONG
  78.  
  79.  
  80.  
  81.  
  82. '**************************************************************************
  83. '****************************** Setup Constants ***************************
  84. '**************************************************************************
  85.  
  86.  
  87. ''Command Option Flags
  88.  
  89. CONST cmoVital       = 1
  90. CONST cmoCopy        = 2
  91. CONST cmoUndo        = 4
  92. CONST cmoRoot        = 8
  93. CONST cmoDecompress  = 16
  94. CONST cmoTimeStamp   = 32
  95. CONST cmoReadOnly    = 64
  96. CONST cmoBackup      = 128
  97. CONST cmoForce       = 256
  98. CONST cmoRemove      = 512
  99. CONST cmoOverwrite   = 1024
  100. CONST cmoAppend      = 2048
  101. CONST cmoPrepend     = 4096
  102. CONST cmoNone        = 0
  103. CONST cmoAll         = 65535
  104.  
  105.  
  106. ''File Exist Modes
  107.  
  108. CONST femExists     = 0
  109. CONST femRead       = 1
  110. CONST femWrite      = 2
  111. CONST femReadWrite  = 3
  112.  
  113.  
  114. ''Read-Only Return Code
  115.  
  116. CONST ynrcNo         = 0
  117. CONST ynrcYes        = 1
  118. CONST ynrcErr1       = 2
  119. CONST ynrcErr2       = 3
  120. CONST ynrcErr3       = 4
  121. CONST ynrcErr4       = 5
  122. CONST ynrcErr5       = 6
  123. CONST ynrcErr6       = 7
  124. CONST ynrcErr7       = 8
  125. CONST ynrcErr8       = 9
  126. CONST ynrcErr9       = 10
  127.  
  128.  
  129. ''General Return Codes
  130.  
  131. CONST grcOkay       = 0
  132. CONST grcNotOkay    = 1
  133. CONST grcUserQuit   = 48
  134.  
  135.  
  136. ''Ranges
  137.  
  138. ''CONST cbSymValMax = 8192
  139. CONST cbSymValMax = 512
  140.     ''REVIEW: symbol table will allow strings up to 8192 bytes
  141.     '' but we get Out of String Space wattdrvr error if we alloc
  142.     '' STRING$() that big. (See GetSymbolValue and GetListItem)
  143.     '' We should look into using dynamic far alloc instead of
  144.     '' STRING$ for large buffers.
  145.     '' NOTE: 8192 works okay with runtime wattdrvr, however.
  146.  
  147.  
  148. ''ON ERROR Error Codes
  149. CONST STFERR      = 1024   ''setup system error
  150. CONST STFQUIT     = 1025   ''user quit
  151.  
  152. CONST scmOff      = 0
  153. CONST scmOnIgnore = 1
  154. CONST scmOnFatal  = 2
  155.  
  156.  
  157. '**************************************************************************
  158. '********************************  Setup API's  ***************************
  159. '**************************************************************************
  160.  
  161. '' common
  162.  
  163. DECLARE FUNCTION FParseFATPathIntoPieces LIB "mscomstf.dll" (szPath$, szVol$, cbVol%, szDir$, cbDir%, szFile$, cbFile%) AS INTEGER
  164. DECLARE FUNCTION FOpenInf LIB "mscomstf.dll" (szFile$, fCheck%, fCheckSyms%) AS INTEGER
  165. DECLARE FUNCTION FSetSilent LIB "mscomstf.dll" (mode%) AS INTEGER
  166. DECLARE FUNCTION FSetBeepingMode LIB "mscomstf.dll" (mode%) AS INTEGER
  167. DECLARE FUNCTION HShowWaitCursor LIB "msshlstf.dll" AS INTEGER
  168. DECLARE FUNCTION FRestoreCursor  LIB "msshlstf.dll" (hPrev%) AS INTEGER
  169. DECLARE FUNCTION FOpenLogFile    LIB "mscomstf.dll" (szFile$, fAppend%) AS INTEGER
  170. DECLARE FUNCTION FCloseLogFile   LIB "mscomstf.dll" AS INTEGER
  171. DECLARE FUNCTION FWriteToLogFile LIB "mscomstf.dll" (sz$, fRequire%) AS INTEGER
  172. DECLARE FUNCTION CbGetInfSectionKeyField LIB "mscomstf.dll" (szSect$, szKey$, iField%, szBuf$, cbBuf%) AS INTEGER
  173. DECLARE FUNCTION FMakeListInfSectionField LIB "mscomstf.dll" (szSym$, szSect$, iField%) AS INTEGER
  174.  
  175.  
  176. ''shell
  177.  
  178. DECLARE FUNCTION FSetBitmap LIB "msshlstf.dll" (szDll$, Bitmap%) AS INTEGER
  179. DECLARE FUNCTION FSetAbout LIB "msshlstf.dll" (szAbout1$, szAbout2$) AS INTEGER
  180. DECLARE FUNCTION FDoDialog LIB "msuilstf.dll" (hwnd%, szDll$, Dlg%, szDlgProc$, HelpDlg%, szHelpProc$) AS INTEGER
  181. DECLARE FUNCTION FKillNDialogs LIB "msuilstf.dll" (n%) AS INTEGER
  182. DECLARE SUB SetWindowText LIB "User" (hwnd%, lpString$)
  183. DECLARE FUNCTION FSetSymbolValue LIB "msshlstf.dll" (szSymbol$, szValue$) AS INTEGER
  184. DECLARE FUNCTION FRemoveSymbol LIB "mscomstf.dll" (szSym$) AS INTEGER
  185. DECLARE FUNCTION CbGetSymbolValue LIB "mscomstf.dll" (szSymbol$, szValue$, Length%) AS INTEGER
  186. DECLARE FUNCTION UsGetListLength LIB "mscomstf.dll" (szSymbol$) AS INTEGER
  187. DECLARE FUNCTION CbGetListItem LIB "mscomstf.dll" (szListSymbol$, n%, szListItem$, cbMax%) AS INTEGER
  188. DECLARE FUNCTION FAddListItem LIB "mscomstf.dll" (szListSymbol$, szListItem$) AS INTEGER
  189. DECLARE FUNCTION FReplaceListItem LIB "mscomstf.dll" (szListSymbol$, n%, szListItem$) AS INTEGER
  190. DECLARE FUNCTION FSetSymbolToListOfInfKeys LIB "mscomstf.dll" (szSym$, szSect$, fNulls%) AS INTEGER
  191.  
  192.  
  193. ''shell
  194.  
  195. DECLARE FUNCTION InitializeFrame LIB "msshlstf.dll" (szCmdLine$) AS INTEGER
  196. DECLARE FUNCTION HwndFrame LIB "msshlstf.dll" AS INTEGER
  197. DECLARE FUNCTION HinstFrame LIB "msshlstf.dll" AS INTEGER
  198.  
  199.  
  200.  
  201. ''install
  202.  
  203. DECLARE SUB      ProSetPos LIB "msinsstf.dll" (x%, y%)
  204. DECLARE FUNCTION FCreateDir LIB "msinsstf.dll" (szDir$, cmo%) AS INTEGER
  205. DECLARE FUNCTION FRemoveDir LIB "msinsstf.dll" (szDir$, cmo%) AS INTEGER
  206. DECLARE FUNCTION FAddSectionFilesToCopyList LIB "mscomstf.dll" (szSect$, szSrc$, szDest$) AS INTEGER
  207. DECLARE FUNCTION FAddSectionKeyFileToCopyList LIB "mscomstf.dll" (szSect$, szKey$, szSrc$, szDest$) AS INTEGER
  208. DECLARE FUNCTION FAddSpecialFileToCopyList LIB "mscomstf.dll" (szSect$, szKey$, szSrc$, szDest$) AS INTEGER
  209. DECLARE FUNCTION GrcCopyFilesInCopyList LIB "msinsstf.dll" (hInstance%) AS INTEGER
  210. DECLARE FUNCTION FRemoveIniSection LIB "msinsstf.dll" (szFile$, szSect$, cmo%) AS INTEGER
  211. DECLARE FUNCTION FCreateIniKeyValue LIB "msinsstf.dll" (szFile$, szSect$, szKey$, szValue$, cmo%) AS INTEGER
  212. DECLARE FUNCTION FRemoveIniKey LIB "msinsstf.dll" (szFile$, szSect$, szKey$, cmo%) AS INTEGER
  213. DECLARE FUNCTION FCreateSysIniKeyValue LIB "msinsstf.dll" (szFile$, szSect$, szKey$, szValue$, cmo%) AS INTEGER
  214. DECLARE FUNCTION FCreateProgManGroup LIB "msinsstf.dll" (szGroup$, szPath$, cmo%) AS INTEGER
  215. DECLARE FUNCTION FCreateProgManItem LIB "msinsstf.dll" (szGroup$, szItem$, szCmd$, cmo%) AS INTEGER
  216. DECLARE FUNCTION FShowProgManGroup LIB "msinsstf.dll" (szGroup$, szCmd$, cmo%) AS INTEGER
  217. DECLARE FUNCTION FStampResource LIB "msinsstf.dll" (szSect$, szKey$, szDst$, wResType%, wResId%, szData$, cbData%) AS INTEGER
  218. DECLARE FUNCTION FDumpCopyListToFile LIB "msinsstf.dll" (szFile$) AS INTEGER
  219. DECLARE SUB      ResetCopyList LIB "msinsstf.dll"
  220. DECLARE FUNCTION LcbGetCopyListCost LIB "msinsstf.dll" (szExtraList$, szCostList$, szNeedList$) AS LONG
  221. DECLARE FUNCTION FAddDos5Help LIB "msinsstf.dll" (szProgName$, szProgHelp$, cmo%) AS INTEGER
  222. DECLARE FUNCTION FCopyOneFile LIB "msinsstf.dll" (szSrc$, szDest$, cmo%, fAppend%) AS INTEGER
  223. DECLARE FUNCTION YnrcRemoveFile LIB "msinsstf.dll" (szFullPathSrc$, cmo%) AS INTEGER
  224. DECLARE FUNCTION YnrcBackupFile LIB "msinsstf.dll" (szFullPath$, szBackup$, cmo%) AS INTEGER
  225. DECLARE FUNCTION FInitializeInstall LIB "msinsstf.dll" (hinst%, hwndFrame%) AS INTEGER
  226. DECLARE FUNCTION WFindFileUsingFileOpen LIB "msinsstf.dll" (szFile$, szBuf$, cbBuf%) AS INTEGER
  227. DECLARE FUNCTION FIsDirWritable LIB "msinsstf.dll" (szDir$) AS INTEGER
  228. DECLARE FUNCTION FIsFileWritable LIB "msinsstf.dll" (szFile$) AS INTEGER
  229. DECLARE FUNCTION FAddToBillboardList LIB "msinsstf.dll" (szDll$, idDlg%, szProc$, lTicks&) AS INTEGER
  230. DECLARE FUNCTION FClearBillboardList LIB "msinsstf.dll" AS INTEGER
  231. DECLARE FUNCTION FSetRestartDir LIB "msinsstf.dll" (szDir$) AS INTEGER
  232. DECLARE FUNCTION FRestartListEmpty LIB "msinsstf.dll" AS INTEGER
  233. DECLARE FUNCTION FExitExecRestart LIB "msinsstf.dll" AS INTEGER
  234. DECLARE FUNCTION SetCopyMode LIB "msinsstf.dll" (fMode%) AS INTEGER
  235. DECLARE FUNCTION GetCopyMode LIB "msinsstf.dll" AS INTEGER
  236. DECLARE FUNCTION SetDecompMode LIB "msinsstf.dll" (fMode%) AS INTEGER
  237. DECLARE FUNCTION GetDecompMode LIB "msinsstf.dll" AS INTEGER
  238. DECLARE FUNCTION SetSizeCheckMode LIB "msinsstf.dll" (scmMode%) AS INTEGER
  239. DECLARE FUNCTION FPrependToPath LIB "msinsstf.dll" (szSrc$, szDst$, szDir$, cmo%) AS INTEGER
  240.  
  241. DECLARE FUNCTION SetTimeValue LIB "msinsstf.dll" (usHours%, usMinutes%, usSeconds%) AS INTEGER
  242.  
  243.  
  244.  
  245. '*************************************************************************
  246. '****************  Setup Basic Wrapper Declarations  *********************
  247. '*************************************************************************
  248.  
  249.  
  250. ''shell
  251.  
  252. DECLARE SUB SetBitmap(szDll$, Bitmap%)
  253. DECLARE SUB SetAbout(szAbout1$, szAbout2$)
  254. DECLARE FUNCTION UIStartDlg(szDll$, Dlg%, szDlgProc$, HelpDlg%, szHelpProc$) AS STRING
  255. DECLARE SUB UIPop (n%)
  256. DECLARE SUB UIPopAll
  257. DECLARE SUB SetTitle (sz$)
  258. DECLARE SUB ReadInfFile (szFile$)
  259. DECLARE SUB SetSymbolValue (szSymbol$, szValue$)
  260. DECLARE SUB RemoveSymbol (szSym$)
  261. DECLARE FUNCTION GetSymbolValue (szSymbol$) AS STRING
  262. DECLARE FUNCTION GetListLength(szSymbol$) AS INTEGER
  263. DECLARE SUB MakeListFromSectionKeys (szSymbol$, szSect$)
  264. DECLARE FUNCTION GetListItem(szSymbol$, n%) AS STRING
  265. DECLARE SUB AddListItem(szSymbol$, szItem$)
  266. DECLARE SUB ReplaceListItem(szSymbol$, n%, szItem$)
  267.  
  268. DECLARE FUNCTION InitFrame (szCmdLine$) AS INTEGER
  269. DECLARE FUNCTION InitSetup (szCmdLine$) AS INTEGER
  270.  
  271. DECLARE FUNCTION ShowWaitCursor AS INTEGER
  272. DECLARE SUB RestoreCursor (hPrev%)
  273.  
  274. DECLARE FUNCTION SetBeepingMode (mode%) AS INTEGER
  275. DECLARE FUNCTION SetSilentMode (mode%) AS INTEGER
  276.  
  277. DECLARE FUNCTION GetSectionKeyDate (szSect$, szKey$) AS STRING
  278. DECLARE FUNCTION GetSectionKeyFilename (szSect$, szKey$) AS STRING
  279. DECLARE FUNCTION GetSectionKeySize (szSect$, szKey$) AS LONG
  280. DECLARE FUNCTION GetSectionKeyVersion (szSect$, szKey$) AS STRING
  281.  
  282. DECLARE SUB MakeListFromSectionDate (szSym$, szSect$)
  283. DECLARE SUB MakeListFromSectionFilename (szSym$, szSect$)
  284. DECLARE SUB MakeListFromSectionSize (szSym$, szSect$)
  285. DECLARE SUB MakeListFromSectionVersion (szSym$, szSect$)
  286.  
  287.  
  288. ''install
  289.  
  290.  
  291. DECLARE SUB CreateDir (szDir$, cmo%)
  292. DECLARE SUB RemoveDir (szDir$, cmo%)
  293. DECLARE SUB AddSectionFilesToCopyList (szSect$, szSrc$, szDest$)
  294. DECLARE SUB AddSectionKeyFileToCopyList (szSect$, szKey$, szSrc$, szDest$)
  295. DECLARE SUB AddSpecialFileToCopyList (szSect$, szKey$, szSrc$, szDest$)
  296. DECLARE SUB CopyFilesInCopyList
  297. DECLARE SUB RemoveIniSection (szFile$, szSect$, cmo%)
  298. DECLARE SUB CreateIniKeyValue (szFile$, szSect$, szKey$, szValue$, cmo%)
  299. DECLARE SUB RemoveIniKey (szFile$, szSect$, szKey$, cmo%)
  300. DECLARE SUB CreateSysIniKeyValue (szFile$, szSect$, szKey$, szValue$, cmo%)
  301. DECLARE SUB CreateProgmanGroup (szGroup$, szPath$, cmo%)
  302. DECLARE SUB CreateProgmanItem (szGroup$, szItem$, szCmd$, szOther$, cmo%)
  303. DECLARE SUB ShowProgmanGroup (szGroup$, Cmd%, cmo%)
  304. DECLARE SUB StampResource (szSect$, szKey$, szDst$, wResType%, wResId%, szData$, cbData%)
  305. DECLARE SUB DumpCopyList (szFile$)
  306. DECLARE SUB ClearCopyList
  307. DECLARE FUNCTION GetCopyListCost (szExtraList$, szCostList$, szNeedList$) AS LONG
  308. DECLARE SUB AddDos5Help (szProgName$, szProgHelp$, cmo%)
  309. DECLARE SUB CopyFile (szFullPathSrc$, szFullPathDst$, cmo%, fAppend%)
  310. DECLARE SUB RemoveFile (szFullPathSrc$, cmo%)
  311. DECLARE SUB BackupFile (szFullPath$, szBackup$)
  312. DECLARE SUB RenameFile (szFullPath$, szBackup$)
  313. DECLARE SUB InitInstall
  314. DECLARE SUB AddToBillboardList (szDll$, idDlg%, szProc$, lTicks&)
  315. DECLARE SUB AddBlankToBillboardList (lTicks&)
  316. DECLARE SUB ClearBillboardList
  317. DECLARE SUB OpenLogFile (szFile$, fAppend%)
  318. DECLARE SUB CloseLogFile
  319. DECLARE SUB WriteToLogFile (szStr$)
  320. DECLARE SUB SetCopyGaugePosition (x%, y%)
  321. DECLARE SUB SetRestartDir(szDir$)
  322. DECLARE FUNCTION RestartListEmpty AS INTEGER
  323. DECLARE FUNCTION ExitExecRestart AS INTEGER
  324. DECLARE FUNCTION FindFileUsingFileOpen (szFile$) AS STRING
  325. DECLARE FUNCTION IsDirWritable (szDir$) AS INTEGER
  326. DECLARE FUNCTION IsFileWritable (szFile$) AS INTEGER
  327. DECLARE FUNCTION GetNthFieldFromIniString (szLine$, iField%) AS STRING
  328. DECLARE SUB PrependToPath (szSrc$, szDst$, szDir$, cmo%)
  329.  
  330.  
  331. '' Error Handling
  332.  
  333. '$ifdef DEBUG
  334.  
  335. '' Setup API Errors
  336. CONST saeFail   = 0
  337. CONST saeInit   = 1
  338. CONST saeNYI    = 3
  339. CONST saeArg    = 4    ''must be max sae value
  340.  
  341. DECLARE SUB StfApiErr (nMsg%, szApi$, szArgs$)
  342. DECLARE SUB BadArgErr (nArg%, szApi$, szArgs$)
  343.  
  344. '' chk arg
  345. DECLARE FUNCTION FValidFATDir LIB "mscomstf.dll" (szDir$) AS INTEGER
  346. DECLARE FUNCTION CchlValidFATSubPath LIB "mscomstf.dll" (szPath$) AS INTEGER
  347. DECLARE FUNCTION FValidFATPath LIB "mscomstf.dll" (szPath$) AS INTEGER
  348. DECLARE FUNCTION FValidDrive (szDrive$) AS INTEGER
  349.  
  350. DECLARE FUNCTION FValidInfSect (szSect$) AS INTEGER
  351. DECLARE FUNCTION FValidIniFile (szFile$) AS INTEGER
  352.  
  353. '$endif ''DEBUG
  354.  
  355.  
  356.  
  357. '' Windows system detect
  358.  
  359. DECLARE FUNCTION GetWindowsMajorVersion AS INTEGER
  360. DECLARE FUNCTION GetWindowsMinorVersion AS INTEGER
  361. DECLARE FUNCTION GetWindowsMode AS INTEGER
  362. DECLARE FUNCTION GetWindowsDir  AS STRING
  363. DECLARE FUNCTION GetWindowsSysDir AS STRING
  364. DECLARE FUNCTION IsWindowsShared AS INTEGER
  365. DECLARE FUNCTION GetScreenWidth AS INTEGER
  366. DECLARE FUNCTION GetScreenHeight AS INTEGER
  367.  
  368.  
  369. '*************************************************************************
  370. '*****************  Setup Basic Wrapper Definitions  *********************
  371. '*************************************************************************
  372. FUNCTION InitSetup(szCmdLine$) STATIC AS INTEGER
  373.     fFrameInit = 0
  374.     fInstallInit = 0
  375.  
  376.     IF hSetup > 0 THEN
  377. '$ifdef DEBUG
  378.         StfApiErr saeInit, "InitSetup", szCmdLine$
  379. '$endif ''DEBUG
  380.     END IF
  381.  
  382.     i% = InitFrame(szCmdLine$)
  383.     fFrameInit = 1
  384.  
  385.     InitInstall
  386.     fInstallInit = 1
  387.  
  388.     InitSetup = i%
  389. END FUNCTION
  390.  
  391.  
  392.  
  393. '**************************************************************************
  394. FUNCTION InitFrame(szCmdLine$) STATIC AS INTEGER
  395.     IF hSetup > 0 THEN
  396. '$ifdef DEBUG
  397.         StfApiErr saeInit, "InitFrame", szCmdLine$
  398. '$endif ''DEBUG
  399.     ELSE
  400.         i% = InitializeFrame(szCmdLine$)
  401.         IF i% = -1 THEN
  402.             END   '' NOT an error - Usage (/?) or Command line copy operation
  403.         ELSEIF i% = 0 THEN
  404. '$ifdef DEBUG
  405.             StfApiErr saeFail, "InitFrame", szCmdLine$
  406. '$endif ''DEBUG
  407.             END
  408.         ELSE
  409.             InitFrame = i%
  410.         END IF
  411.     END IF
  412. END FUNCTION
  413.  
  414.  
  415. '**************************************************************************
  416. SUB SetBitmap(szDll$, Bitmap%) STATIC
  417.     IF FSetBitmap(szDll$, Bitmap%) = 0 THEN
  418. '$ifdef DEBUG
  419.         StfApiErr saeFail, "SetBitmap", szDll$+","+STR$(Bitmap%)
  420. '$endif ''DEBUG
  421.         ERROR STFERR
  422.     END IF
  423. END SUB
  424.  
  425.  
  426. '**************************************************************************
  427. SUB SetAbout(szAbout1$, szAbout2$) STATIC
  428.     IF FSetAbout(szAbout1$, szAbout2$) = 0 THEN
  429. '$ifdef DEBUG
  430.         StfApiErr saeFail, "SetAbout", szAbout1$ + "," + szAbout2$
  431. '$endif ''DEBUG
  432.         ERROR STFERR
  433.     END IF
  434. END SUB
  435.  
  436.  
  437. '*************************************************************************
  438. SUB SetTitle(sz$) STATIC
  439.     SetWindowText HwndFrame(), sz$
  440. END SUB
  441.  
  442.  
  443. '*************************************************************************
  444. SUB ReadInfFile (szFile$) STATIC
  445. '$ifdef DEBUG
  446.     if FValidFATPath(szFile$) = 0 then
  447.         BadArgErr 1, "ReadInfFile", szFile$
  448.     end if
  449.     IF FOpenInf(szFile$, 1, 1) = 0 THEN
  450.         StfApiErr saeFail, "ReadInfFile", szFile$
  451. '$else  ''!DEBUG
  452.     IF FOpenInf(szFile$, 1, 0) = 0 THEN
  453. '$endif ''!DEBUG
  454.         ERROR STFERR
  455.     END IF
  456. END SUB
  457.  
  458.  
  459. '*************************************************************************
  460. FUNCTION UIStartDlg(szDll$, Dlg%, szDlgProc$, HelpDlg%, szHelpProc$) STATIC AS STRING
  461. '$ifdef DEBUG
  462.     if szDll$ = "" then
  463.         n% = 1
  464.     elseif szDlgProc$ = "" then
  465.         n% = 3
  466.     else
  467.         n% = 0
  468.     end if
  469.     if n% > 0 then
  470.         BadArgErr n%, "UIStartDlg", szDll$+", "+STR$(Dlg%)+", "+szDlgProc$+", "+STR$(HelpDlg%)+", "+szHelpProc$
  471.     end if
  472. '$endif ''DEBUG
  473.  
  474.     IF FDoDialog(HwndFrame(), szDll$, Dlg%, szDlgProc$, HelpDlg%, szHelpProc$) = 0 THEN
  475. '$ifdef DEBUG
  476.         StfApiErr saeFail, "UIStartDlg", szDll$+", "+STR$(Dlg%)+", "+szDlgProc$+", "+STR$(HelpDlg%)+", "+szHelpProc$
  477. '$endif ''DEBUG
  478.         ERROR STFERR
  479.     ELSE
  480.         UIStartDlg = GetSymbolValue("DLGEVENT")
  481.     END IF
  482. END FUNCTION
  483.  
  484.  
  485. '*************************************************************************
  486. SUB UIPop (n%) STATIC
  487.     IF FKillNDialogs(n%) = 0 THEN
  488. '$ifdef DEBUG
  489.         StfApiErr saeFail, "UIPop", STR$(n%)
  490. '$endif ''DEBUG
  491.         ERROR STFERR
  492.     END IF
  493. END SUB
  494.  
  495.  
  496. '*************************************************************************
  497. SUB UIPopAll STATIC
  498.     IF FKillNDialogs(65535) = 0 THEN
  499. '$ifdef DEBUG
  500.         StfApiErr saeFail, "UIPopAll", ""
  501. '$endif ''DEBUG
  502.         ERROR STFERR
  503.     END IF
  504. END SUB
  505.  
  506.  
  507. '*************************************************************************
  508. FUNCTION GetSymbolValue(szSymbol$) STATIC AS STRING
  509. '$ifdef DEBUG
  510.     if szSymbol$ = "" then
  511.         BadArgErr 1, "GetSymbolValue", szSymbol$
  512.     end if
  513. '$endif ''DEBUG
  514.     szValue$ = string$(cbSymValMax,32)
  515.     Length% = CbGetSymbolValue(szSymbol$, szValue$, cbSymValMax)
  516.     GetSymbolValue = szValue$
  517.     IF Length% >= cbSymValMax THEN
  518.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  519.         ERROR STFERR
  520.     END IF
  521.     IF szSymbol$ = "" THEN
  522.         ERROR STFERR
  523.     END IF
  524.     szValue$ = ""
  525. END FUNCTION
  526.  
  527.  
  528. '*************************************************************************
  529. FUNCTION GetListLength(szSymbol$) STATIC AS INTEGER
  530. '$ifdef DEBUG
  531.     if szSymbol$ = "" then
  532.         BadArgErr 1, "GetListLength", szSymbol$
  533.     end if
  534. '$endif ''DEBUG
  535.     GetListLength = UsGetListLength(szSymbol$)
  536.     IF szSymbol$ = "" THEN
  537.         ERROR STFERR
  538.     END IF
  539. END FUNCTION
  540.  
  541.  
  542. '*************************************************************************
  543. FUNCTION GetListItem(szListSymbol$, nItem%) STATIC AS STRING
  544. '$ifdef DEBUG
  545.     if szListSymbol$ = "" then
  546.         BadArgErr 1, "GetListItem", szListSymbol$+", "+STR$(nItem%)
  547.     end if
  548.  
  549.     if nItem% <= 0 or nItem% > GetListLength(szListSymbol$) then
  550.         BadArgErr 2, "GetListItem", szListSymbol$+", "+STR$(nItem%)
  551.     end if
  552. '$endif ''DEBUG
  553.  
  554.     szListItem$ = string$(cbSymValMax,32)
  555.     Length% = CbGetListItem(szListSymbol$, nItem%, szListItem$, cbSymValMax)
  556.     GetListItem = szListItem$
  557.     IF Length% >= cbSymValMax THEN
  558.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  559.         ERROR STFERR
  560.     END IF
  561.     IF szListSymbol$ = "" THEN
  562.         ERROR STFERR
  563.     END IF
  564.     if nItem% <= 0 or nItem% > GetListLength(szListSymbol$) then
  565.         ERROR STFERR
  566.     end if
  567.     szListItem$ = ""
  568. END FUNCTION
  569.  
  570.  
  571. '*************************************************************************
  572. SUB AddListItem(szSymbol$, szItem$) STATIC
  573. '$ifdef DEBUG
  574.     if szSymbol$ = "" then
  575.         BadArgErr 1, "AddListItem", szSymbol$+", "+szItem$
  576.     end if
  577. '$endif ''DEBUG
  578.     IF FAddListItem(szSymbol$, szItem$) = 0 THEN
  579. '$ifdef DEBUG
  580.         StfApiErr saeFail, "AddListItem", szSymbol$+", "+szItem$
  581. '$endif ''DEBUG
  582.         ERROR STFERR
  583.     END IF
  584. END SUB
  585.  
  586.  
  587. '*************************************************************************
  588. SUB ReplaceListItem(szSymbol$, n%, szItem$) STATIC
  589. '$ifdef DEBUG
  590.     if szSymbol$ = "" then
  591.         nArg% = 1
  592.     elseif (n% <= 0) OR (n% > GetListLength(szSymbol$)) then
  593.         nArg% = 2
  594.     else
  595.         nArg% = 0
  596.     end if
  597.     if nArg% > 0 then
  598.         BadArgErr nArg%, "ReplaceListItem", szSymbol$+", "+STR$(n%)+", "+szItem$
  599.     end if
  600. '$endif ''DEBUG
  601.  
  602.     IF FReplaceListItem(szSymbol$, n%, szItem$) = 0 THEN
  603. '$ifdef DEBUG
  604.         StfApiErr saeFail, "ReplaceListItem", szSymbol$+", "+STR$(n%)+", "+szItem$
  605. '$endif ''DEBUG
  606.         ERROR STFERR
  607.     END IF
  608. END SUB
  609.  
  610.  
  611. '**************************************************************************
  612. SUB MakeListFromSectionKeys(szSymbol$, szSect$) STATIC
  613. '$ifdef DEBUG
  614.     if szSymbol$ = "" then
  615.         n% = 1
  616.     elseif FValidInfSect(szSect$) = 0 then
  617.         n% = 2
  618.     else
  619.         n% = 0
  620.     end if
  621.     if n% > 0 then
  622.         BadArgErr n%, "MakeListFromSectionKeys", szSymbol$+", "+szSect$
  623.     end if
  624. '$endif ''DEBUG
  625.  
  626.     IF FSetSymbolToListOfInfKeys(szSymbol$, szSect$, 1) = 0 THEN
  627. '$ifdef DEBUG
  628.         StfApiErr saeFail, "MakeListFromSectionKeys", szSymbol$+", "+szSect$
  629. '$endif ''DEBUG
  630.         ERROR STFERR
  631.     END IF
  632. END SUB
  633.  
  634.  
  635. '*************************************************************************
  636. SUB SetSymbolValue(szSymbol$, szValue$) STATIC
  637. '$ifdef DEBUG
  638.     if szSymbol$ = "" then
  639.         BadArgErr 1, "SetSymbolValue", szSymbol$+", "+szValue$
  640.     end if
  641. '$endif ''DEBUG
  642.     IF FSetSymbolValue(szSymbol$, szValue$) = 0 THEN
  643. '$ifdef DEBUG
  644.         StfApiErr saeFail, "SetSymbolValue", szSymbol$+", "+szValue$
  645. '$endif ''DEBUG
  646.         ERROR STFERR
  647.     END IF
  648. END SUB
  649.  
  650.  
  651. '*************************************************************************
  652. SUB RemoveSymbol(szSym$) STATIC
  653. '$ifdef DEBUG
  654.     if szSym$ = "" then
  655.         BadArgErr 1, "RemoveSymbol", szSym$
  656.     end if
  657. '$endif ''DEBUG
  658.     IF FRemoveSymbol(szSym$) = 0 THEN
  659. '$ifdef DEBUG
  660.         StfApiErr saeFail, "RemoveSymbol", szSym$
  661. '$endif ''DEBUG
  662.         ERROR STFERR
  663.     END IF
  664. END SUB
  665.  
  666.  
  667. '*************************************************************************
  668. FUNCTION ShowWaitCursor STATIC AS INTEGER
  669.     ShowWaitCursor = HShowWaitCursor
  670. END FUNCTION
  671.  
  672.  
  673. '*************************************************************************
  674. SUB RestoreCursor (hPrev%) STATIC
  675.     i% = FRestoreCursor(hPrev%)
  676.     IF i% = 0 THEN
  677. '$ifdef DEBUG
  678.         StfApiErr saeFail, "RestoreCursor", ""
  679. '$endif ''DEBUG
  680.         ERROR STFERR
  681.     END IF
  682. END SUB
  683.  
  684.  
  685. '*************************************************************************
  686. FUNCTION SetBeepingMode (mode%) STATIC AS INTEGER
  687.     SetBeepingMode = FSetBeepingMode(mode%)
  688. END FUNCTION
  689.  
  690.  
  691. '*************************************************************************
  692. FUNCTION SetSilentMode (mode%) STATIC AS INTEGER
  693.     SetSilentMode = FSetSilent(mode%)
  694. END FUNCTION
  695.  
  696.  
  697. '*************************************************************************
  698. FUNCTION GetSectionKeyDate (szSect$, szKey$) STATIC AS STRING
  699. '$ifdef DEBUG
  700.     if FValidInfSect(szSect$) = 0 then
  701.         n% = 1
  702.     elseif szKey$ = "" then
  703.         n% = 2
  704.     else
  705.         n% = 0
  706.     end if
  707.     if n% > 0 then
  708.         BadArgErr n%, "GetSectionKeyDate", szSect$+", "+szKey$
  709.     end if
  710. '$endif ''DEBUG
  711.  
  712.     szBuf$ = string$(128, 32)
  713.     Length% = CbGetInfSectionKeyField(szSect$, szKey$, 5, szBuf$, 128)
  714.     IF Length% >= 128 THEN
  715.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  716.         ERROR STFERR
  717.     END IF
  718.  
  719.     IF Length% = -1 THEN
  720. '$ifdef DEBUG
  721.         StfApiErr saeFail, "GetSectionKeyDate", szSect$+", "+szKey$
  722. '$endif ''DEBUG
  723.         ERROR STFERR
  724.     END IF
  725.  
  726.     GetSectionKeyDate = szBuf$
  727.     szBuf$ = ""
  728. END FUNCTION
  729.  
  730.  
  731. '*************************************************************************
  732. FUNCTION GetSectionKeyFilename (szSect$, szKey$) STATIC AS STRING
  733. '$ifdef DEBUG
  734.     if FValidInfSect(szSect$) = 0 then
  735.         n% = 1
  736.     elseif szKey$ = "" then
  737.         n% = 2
  738.     else
  739.         n% = 0
  740.     end if
  741.     if n% > 0 then
  742.         BadArgErr n%, "GetSectionKeyFilename", szSect$+", "+szKey$
  743.     end if
  744. '$endif ''DEBUG
  745.  
  746.     szBuf$ = string$(128, 32)
  747.     Length% = CbGetInfSectionKeyField(szSect$, szKey$, 1, szBuf$, 128)
  748.     IF Length% >= 128 THEN
  749.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  750.         ERROR STFERR
  751.     END IF
  752.  
  753.     IF Length% = -1 THEN
  754. '$ifdef DEBUG
  755.         StfApiErr saeFail, "GetSectionKeyFilename", szSect$+", "+szKey$
  756. '$endif ''DEBUG
  757.         ERROR STFERR
  758.     END IF
  759.  
  760.     GetSectionKeyFilename = szBuf$
  761.     szBuf$ = ""
  762. END FUNCTION
  763.  
  764.  
  765. '*************************************************************************
  766. FUNCTION GetSectionKeySize (szSect$, szKey$) STATIC AS LONG
  767. '$ifdef DEBUG
  768.     if FValidInfSect(szSect$) = 0 then
  769.         n% = 1
  770.     elseif szKey$ = "" then
  771.         n% = 2
  772.     else
  773.         n% = 0
  774.     end if
  775.     if n% > 0 then
  776.         BadArgErr n%, "GetSectionKeySize", szSect$+", "+szKey$
  777.     end if
  778. '$endif ''DEBUG
  779.  
  780.     szBuf$ = string$(128, 32)
  781.     Length% = CbGetInfSectionKeyField(szSect$, szKey$, 15, szBuf$, 128)
  782.     IF Length% >= 128 THEN
  783.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  784.         ERROR STFERR
  785.     END IF
  786.  
  787.     IF Length% = -1 THEN
  788. '$ifdef DEBUG
  789.         StfApiErr saeFail, "GetSectionKeySize", szSect$+", "+szKey$
  790. '$endif ''DEBUG
  791.         ERROR STFERR
  792.     END IF
  793.  
  794.     GetSectionKeySize = VAL(szBuf$)
  795.     szBuf$ = ""
  796. END FUNCTION
  797.  
  798.  
  799. '*************************************************************************
  800. FUNCTION GetSectionKeyVersion (szSect$, szKey$) STATIC AS STRING
  801. '$ifdef DEBUG
  802.     if FValidInfSect(szSect$) = 0 then
  803.         n% = 1
  804.     elseif szKey$ = "" then
  805.         n% = 2
  806.     else
  807.         n% = 0
  808.     end if
  809.     if n% > 0 then
  810.         BadArgErr n%, "GetSectionKeyVersion", szSect$+", "+szKey$
  811.     end if
  812. '$endif ''DEBUG
  813.  
  814.     szBuf$ = string$(128, 32)
  815.     Length% = CbGetInfSectionKeyField(szSect$, szKey$, 19, szBuf$, 128)
  816.     IF Length% >= 128 THEN
  817.         res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  818.         ERROR STFERR
  819.     END IF
  820.  
  821.     IF Length% = -1 THEN
  822. '$ifdef DEBUG
  823.         StfApiErr saeFail, "GetSectionKeyVersion", szSect$+", "+szKey$
  824. '$endif ''DEBUG
  825.         ERROR STFERR
  826.     END IF
  827.  
  828.     GetSectionKeyVersion = szBuf$
  829.     szBuf$ = ""
  830. END FUNCTION
  831.  
  832.  
  833. '*************************************************************************
  834. SUB MakeListFromSectionDate (szSym$, szSect$) STATIC
  835. '$ifdef DEBUG
  836.     if szSym$ = "" then
  837.         n% = 1
  838.     elseif FValidInfSect(szSect$) = 0 then
  839.         n% = 2
  840.     else
  841.         n% = 0
  842.     end if
  843.     if n% > 0 then
  844.         BadArgErr n%, "MakeListFromSectionDate", szSym$+", "+szSect$
  845.     end if
  846. '$endif ''DEBUG
  847.  
  848.     IF FMakeListInfSectionField(szSym$, szSect$, 5) = 0 THEN
  849. '$ifdef DEBUG
  850.         StfApiErr saeFail, "MakeListFromSectionDate", szSym$+", "+szSect$
  851. '$endif ''DEBUG
  852.         ERROR STFERR
  853.     END IF
  854. END SUB
  855.  
  856.  
  857. '*************************************************************************
  858. SUB MakeListFromSectionFilename (szSym$, szSect$) STATIC
  859. '$ifdef DEBUG
  860.     if szSym$ = "" then
  861.         n% = 1
  862.     elseif FValidInfSect(szSect$) = 0 then
  863.         n% = 2
  864.     else
  865.         n% = 0
  866.     end if
  867.     if n% > 0 then
  868.         BadArgErr n%, "MakeListFromSectionFilename", szSym$+", "+szSect$
  869.     end if
  870. '$endif ''DEBUG
  871.  
  872.     IF FMakeListInfSectionField(szSym$, szSect$, 1) = 0 THEN
  873. '$ifdef DEBUG
  874.         StfApiErr saeFail, "MakeListFromSectionFilename", szSym$+", "+szSect$
  875. '$endif ''DEBUG
  876.         ERROR STFERR
  877.     END IF
  878. END SUB
  879.  
  880.  
  881. '*************************************************************************
  882. SUB MakeListFromSectionSize (szSym$, szSect$) STATIC
  883. '$ifdef DEBUG
  884.     if szSym$ = "" then
  885.         n% = 1
  886.     elseif FValidInfSect(szSect$) = 0 then
  887.         n% = 2
  888.     else
  889.         n% = 0
  890.     end if
  891.     if n% > 0 then
  892.         BadArgErr n%, "MakeListFromSectionSize", szSym$+", "+szSect$
  893.     end if
  894. '$endif ''DEBUG
  895.  
  896.     IF FMakeListInfSectionField(szSym$, szSect$, 15) = 0 THEN
  897. '$ifdef DEBUG
  898.         StfApiErr saeFail, "MakeListFromSectionSize", szSym$+", "+szSect$
  899. '$endif ''DEBUG
  900.         ERROR STFERR
  901.     END IF
  902. END SUB
  903.  
  904.  
  905. '*************************************************************************
  906. SUB MakeListFromSectionVersion (szSym$, szSect$) STATIC
  907. '$ifdef DEBUG
  908.     if szSym$ = "" then
  909.         n% = 1
  910.     elseif FValidInfSect(szSect$) = 0 then
  911.         n% = 2
  912.     else
  913.         n% = 0
  914.     end if
  915.     if n% > 0 then
  916.         BadArgErr n%, "MakeListFromSectionVersion", szSym$+", "+szSect$
  917.     end if
  918. '$endif ''DEBUG
  919.  
  920.     IF FMakeListInfSectionField(szSym$, szSect$, 19) = 0 THEN
  921. '$ifdef DEBUG
  922.         StfApiErr saeFail, "MakeListFromSectionVersion", szSym$+", "+szSect$
  923. '$endif ''DEBUG
  924.         ERROR STFERR
  925.     END IF
  926. END SUB
  927.  
  928.  
  929. '*************************************************************************
  930. SUB InitInstall STATIC
  931.     IF hSetup > 0 THEN
  932. '$ifdef DEBUG
  933.         StfApiErr saeInit, "InitInstall", ""
  934. '$endif ''DEBUG
  935.     ELSEIF FInitializeInstall(HinstFrame(), HwndFrame()) = 0 THEN
  936. '$ifdef DEBUG
  937.         StfApiErr saeFail, "InitInstall", ""
  938. '$endif ''DEBUG
  939.         END
  940.     END IF
  941. END SUB
  942.  
  943.  
  944. '*************************************************************************
  945. SUB CreateDir (szDir$, cmo%) STATIC
  946. '$ifdef DEBUG
  947.     if FValidFATDir(szDir$) = 0 then
  948.         BadArgErr 1, "CreateDir", szDir$+", "+STR$(cmo%)
  949.     end if
  950. '$endif ''DEBUG
  951.     IF FCreateDir(szDir$, cmo%) = 0 THEN
  952. '$ifdef DEBUG
  953.         StfApiErr saeFail, "CreateDir", szDir$+", "+STR$(cmo%)
  954. '$endif ''DEBUG
  955.         ERROR STFERR
  956.     END IF
  957. END SUB
  958.  
  959.  
  960. '*************************************************************************
  961. SUB RemoveDir (szDir$, cmo%) STATIC
  962. '$ifdef DEBUG
  963.     if FValidFATDir(szDir$) = 0 then
  964.         BadArgErr 1, "RemoveDir", szDir$+", "+STR$(cmo%)
  965.     end if
  966. '$endif ''DEBUG
  967.     IF FRemoveDir(szDir$, cmo%) = 0 THEN
  968. '$ifdef DEBUG
  969.         StfApiErr saeFail, "RemoveDir", szDir$+", "+STR$(cmo%)
  970. '$endif ''DEBUG
  971.         ERROR STFERR
  972.     END IF
  973. END SUB
  974.  
  975.  
  976.  
  977. '*************************************************************************
  978. SUB RemoveIniSection (szFile$, szSect$, cmo%) STATIC
  979. '$ifdef DEBUG
  980.     if FValidIniFile(szFile$) = 0 then
  981.         n% = 1
  982.     elseif FValidInfSect(szSect$) = 0 then
  983.         n% = 2
  984.     else
  985.         n% = 0
  986.     end if
  987.     if n% > 0 then
  988.         BadArgErr n%, "RemoveIniSection", szFile$+", "+szSect$+", "+STR$(cmo%)
  989.     end if
  990. '$endif ''DEBUG
  991.  
  992.     IF FRemoveIniSection(szFile$, szSect$, cmo%) = 0 THEN
  993. '$ifdef DEBUG
  994.         StfApiErr saeFail, "RemoveIniSection", szFile$+", "+szSect$+", "+STR$(cmo%)
  995. '$endif ''DEBUG
  996.         ERROR STFERR
  997.     END IF
  998. END SUB
  999.  
  1000.  
  1001. '*************************************************************************
  1002. SUB CreateIniKeyValue (szFile$, szSect$, szKey$, szValue$, cmo%) STATIC
  1003. '$ifdef DEBUG
  1004.     if FValidIniFile(szFile$) = 0 then
  1005.         n% = 1
  1006.     elseif FValidInfSect(szSect$) = 0 then
  1007.         n% = 2
  1008.     else
  1009.         n% = 0
  1010.     end if
  1011.     if n% > 0 then
  1012.         BadArgErr n%, "CreateIniKeyValue", szFile$+", "+szSect$+", "+szKey$+", "+szValue$+", "+STR$(cmo%)
  1013.     end if
  1014. '$endif ''DEBUG
  1015.  
  1016.     IF FCreateIniKeyValue(szFile$, szSect$, szKey$, szValue$, cmo%) = 0 THEN
  1017. '$ifdef DEBUG
  1018.         StfApiErr saeFail, "CreateIniKeyValue", szFile$+", "+szSect$+", "+szKey$+", "+szValue$+", "+STR$(cmo%)
  1019. '$endif ''DEBUG
  1020.         ERROR STFERR
  1021.     END IF
  1022. END SUB
  1023.  
  1024.  
  1025. '*************************************************************************
  1026. SUB RemoveIniKey (szFile$, szSect$, szKey$, cmo%) STATIC
  1027. '$ifdef DEBUG
  1028.     if FValidIniFile(szFile$) = 0 then
  1029.         n% = 1
  1030.     elseif FValidInfSect(szSect$) = 0 then
  1031.         n% = 2
  1032.     elseif szKey$ = "" then
  1033.         n% = 3
  1034.     else
  1035.         n% = 0
  1036.     end if
  1037.     if n% > 0 then
  1038.         BadArgErr n%, "RemoveIniKey", szFile$+", "+szSect$+", "+szKey$+", "+STR$(cmo%)
  1039.     end if
  1040. '$endif ''DEBUG
  1041.  
  1042.     IF FRemoveIniKey(szFile$, szSect$, szKey$, cmo%) = 0 THEN
  1043. '$ifdef DEBUG
  1044.         StfApiErr saeFail, "RemoveIniKey", szFile$+", "+szSect$+", "+szKey$+", "+STR$(cmo%)
  1045. '$endif ''DEBUG
  1046.         ERROR STFERR
  1047.     END IF
  1048. END SUB
  1049.  
  1050.  
  1051. '*************************************************************************
  1052. SUB CreateSysIniKeyValue (szFile$, szSect$, szKey$, szValue$, cmo%) STATIC
  1053. '$ifdef DEBUG
  1054.     if FValidFATPath(szFile$) = 0 then
  1055.         n% = 1
  1056.     elseif FValidInfSect(szSect$) = 0 then
  1057.         n% = 2
  1058.     elseif szKey$ = "" then
  1059.         n% = 3
  1060.     else
  1061.         n% = 0
  1062.     end if
  1063.     if n% > 0 then
  1064.         BadArgErr n%, "CreateSysIniKeyValue", szFile$+", "+szSect$+", "+szKey$+", "+szValue$+", "+STR$(cmo%)
  1065.     end if
  1066. '$endif ''DEBUG
  1067.  
  1068.     IF FCreateSysIniKeyValue(szFile$, szSect$, szKey$, szValue$, cmo%) = 0 THEN
  1069. '$ifdef DEBUG
  1070.         StfApiErr saeFail, "CreateSysIniKeyValue", szFile$+", "+szSect$+", "+szKey$+", "+szValue$+", "+STR$(cmo%)
  1071. '$endif ''DEBUG
  1072.         ERROR STFERR
  1073.     END IF
  1074. END SUB
  1075.  
  1076.  
  1077. '*************************************************************************
  1078. SUB CreateProgmanGroup (szGroup$, szPath$, cmo%) STATIC
  1079. '$ifdef DEBUG
  1080.     if szGroup$ = "" or len(szGroup$) > 24 then
  1081.         BadArgErr 1, "CreateProgmanGroup", szGroup$+", "+STR$(Cmd%)+", "+STR$(cmo%)
  1082.     end if
  1083. '$endif ''DEBUG
  1084.     IF FCreateProgManGroup(szGroup$, szPath$, cmo%) = 0 THEN
  1085. '$ifdef DEBUG
  1086.         StfApiErr saeFail, "CreateProgmanGroup", szGroup$+", "+szPath$+", "+STR$(cmo%)
  1087. '$endif ''DEBUG
  1088.         ERROR STFERR
  1089.     END IF
  1090. END SUB
  1091.  
  1092.  
  1093. '*************************************************************************
  1094. SUB ShowProgmanGroup (szGroup$, Cmd%, cmo%) STATIC
  1095. '$ifdef DEBUG
  1096.     if szGroup$ = "" or len(szGroup$) > 24 then
  1097.         BadArgErr 1, "ShowProgmanGroup", szGroup$+", "+STR$(Cmd%)+", "+STR$(cmo%)
  1098.     end if
  1099. '$endif ''DEBUG
  1100.     IF FShowProgManGroup(szGroup$, STR$(Cmd%), cmo%) = 0 THEN
  1101. '$ifdef DEBUG
  1102.         StfApiErr saeFail, "ShowProgmanGroup", szGroup$+", "+STR$(Cmd%)+", "+STR$(cmo%)
  1103. '$endif ''DEBUG
  1104.         ERROR STFERR
  1105.     END IF
  1106. END SUB
  1107.  
  1108.  
  1109. '*************************************************************************
  1110. SUB StampResource (szSect$, szKey$, szDst$, wResType%, wResId%, szData$, cbData%) STATIC
  1111. '$ifdef DEBUG
  1112.     if FValidInfSect(szSect$) = 0 then
  1113.         n% = 1
  1114.     elseif szKey$ = "" then
  1115.         n% = 2
  1116.     elseif FValidFATDir(szDst$) = 0 then
  1117.         n% = 3
  1118.     else
  1119.         n% = 0
  1120.     end if
  1121.     if n% > 0 then
  1122.         BadArgErr n%, "StampResource", szSect$+", "+szKey$+", "+szDst$+", "+STR$(wResType%)+", "+STR$(wResId%)+", "+szData$+", "+STR$(cbData%)
  1123.     end if
  1124. '$endif ''DEBUG
  1125.  
  1126.     IF FStampResource (szSect$, szKey$, szDst$, wResType%, wResId%, szData$, cbData%) = 0 THEN
  1127. '$ifdef DEBUG
  1128.         StfApiErr saeFail, "StampResource", szSect$+", "+szKey$+", "+szDst$+", "+STR$(wResType%)+", "+STR$(wResId%)+", "+szData$+", "+STR$(cbData%)
  1129. '$endif ''DEBUG
  1130.         ERROR STFERR
  1131.     END IF
  1132. END SUB
  1133.  
  1134.  
  1135. '*************************************************************************
  1136. SUB DumpCopyList (szFile$) STATIC
  1137. '$ifdef DEBUG
  1138.     if szFile$ = "" then
  1139.         BadArgErr 1, "DumpCopyList", szFile$
  1140.     end if
  1141. '$endif ''DEBUG
  1142.     IF FDumpCopyListToFile (szFile$) = 0 THEN
  1143. '$ifdef DEBUG
  1144.         StfApiErr saeFail, "DumpCopyList", szFile$
  1145. '$endif ''DEBUG
  1146.         ERROR STFERR
  1147.     END IF
  1148. END SUB
  1149.  
  1150.  
  1151. '*************************************************************************
  1152. SUB ClearCopyList STATIC
  1153.     ResetCopyList
  1154. END SUB
  1155.  
  1156.  
  1157. '*************************************************************************
  1158. FUNCTION GetCopyListCost (szExtraList$, szCostList$, szNeedList$) STATIC AS LONG
  1159.     lNeed& = LcbGetCopyListCost (szExtraList$, szCostList$, szNeedList$)
  1160.     IF lNeed& < 0 THEN
  1161. '$ifdef DEBUG
  1162.         StfApiErr saeFail, "GetCopyListCost", szExtraList$+", "+szCostList$+", "+szNeedList$
  1163. '$endif ''DEBUG
  1164.         ERROR STFERR
  1165.     END IF
  1166.     GetCopyListCost = lNeed&
  1167. END FUNCTION
  1168.  
  1169.  
  1170. '*************************************************************************
  1171. SUB CreateProgmanItem (szGroup$, szItem$, szCmd$, szOther$, cmo%) STATIC
  1172.     szItemNew$ = szItem$
  1173.     IF szOther$ <> "" THEN
  1174.         szItemNew$ = szItem$ + "," + szOther$
  1175.     END IF
  1176. '$ifdef DEBUG
  1177.     if szGroup$ = "" or len(szGroup$) > 24 then
  1178.         BadArgErr 1, "CreateProgmanItem", szGroup$+", "+STR$(Cmd%)+", "+STR$(cmo%)
  1179.     end if
  1180. '$endif ''DEBUG
  1181.  
  1182.     IF FCreateProgManItem(szGroup$, szItemNew$, szCmd$, cmo%) = 0 THEN
  1183. '$ifdef DEBUG
  1184.         StfApiErr saeFail, "CreateProgmanItem", szGroup$+", "+szItem$+", "+szCmd$+", "+szOther$+", "+STR$(cmo%)
  1185. '$endif ''DEBUG
  1186.         ERROR STFERR
  1187.     END IF
  1188.     szItemNew$ = ""
  1189. END SUB
  1190.  
  1191.  
  1192. '*************************************************************************
  1193. SUB AddDos5Help (szProgName$, szProgHelp$, cmo%) STATIC
  1194. '$ifdef DEBUG
  1195.     if szProgName$ = "" OR MID$(szProgName$, 1, 1) = "@" OR LEN(szProgName$) > 8 then
  1196.         n% = 1
  1197.     elseif INSTR(szProgName$, " ") <> 0 OR INSTR(szProgName$, CHR$(9)) <> 0 then
  1198.         n% = 1
  1199.     elseif szProgHelp$ = "" then
  1200.         n% = 2
  1201.     else
  1202.         n% = 0
  1203.     end if
  1204.     if n% > 0 then
  1205.         BadArgErr n%, "AddDos5Help", szProgName$+", "+szProgHelp$+", "+STR$(cmo%)
  1206.     end if
  1207. '$endif ''DEBUG
  1208.     IF FAddDos5Help (szProgName$, szProgHelp$, cmo%) = 0 THEN
  1209. '$ifdef DEBUG
  1210.         StfApiErr saeFail, "AddDos5Help", szProgName$+", "+szProgHelp$+", "+STR$(cmo%)
  1211. '$endif ''DEBUG
  1212.         ERROR STFERR
  1213.     END IF
  1214. END SUB
  1215.  
  1216.  
  1217. '*************************************************************************
  1218. SUB CopyFilesInCopyList STATIC
  1219.     grc% = GrcCopyFilesInCopyList (HinstFrame())
  1220.  
  1221.     IF grc% = grcUserQuit THEN
  1222.         ERROR STFQUIT
  1223.     ELSEIF grc% > 0 THEN
  1224. '$ifdef DEBUG
  1225.         StfApiErr saeFail, "CopyFilesInCopyList", ""
  1226. '$endif ''DEBUG
  1227.         ERROR STFERR
  1228.     END IF
  1229. END SUB
  1230.  
  1231.  
  1232. '*************************************************************************
  1233. SUB CopyFile (szFullPathSrc$, szFullPathDst$, cmo%, fAppend%) STATIC
  1234. '$ifdef DEBUG
  1235.     if FValidFATPath(szFullPathSrc$) = 0 then
  1236.         n% = 1
  1237.     elseif FValidFATPath(szFullPathDst$) = 0 then
  1238.         n% = 2
  1239.     else
  1240.         n% = 0
  1241.     end if
  1242.     if n% > 0 then
  1243.         BadArgErr n%, "CopyFile", szFullPathSrc$+", "+szFullPathDst$+", "+STR$(cmo%)+", "+STR$(fAppend%)
  1244.     end if
  1245. '$endif ''DEBUG
  1246.  
  1247.     IF  FCopyOneFile(szFullPathSrc$, szFullPathDst$, (cmo OR cmoCopy), fAppend%) = 0 THEN
  1248. '$ifdef DEBUG
  1249.         StfApiErr saeFail, "CopyFile", szFullPathSrc$+", "+szFullPathDst$+", "+STR$(cmo%)+", "+STR$(fAppend%)
  1250. '$endif ''DEBUG
  1251.         ERROR STFERR
  1252.     END IF
  1253. END SUB
  1254.  
  1255.  
  1256.  
  1257. '*************************************************************************
  1258. SUB RemoveFile (szFullPathSrc$, cmo%) STATIC
  1259. '$ifdef DEBUG
  1260.     if FValidFATPath(szFullPathSrc$) = 0 then
  1261.         BadArgErr 1, "RemoveFile", szFullPathSrc$+", "+STR$(cmo%)
  1262.     end if
  1263. '$endif ''DEBUG
  1264.     IF  YnrcRemoveFile(szFullPathSrc$, cmo%) = ynrcNo THEN
  1265. '$ifdef DEBUG
  1266.         StfApiErr saeFail, "RemoveFile", szFullPathSrc$+", "+STR$(cmo%)
  1267. '$endif ''DEBUG
  1268.         ERROR STFERR
  1269.     END IF
  1270. END SUB
  1271.  
  1272.  
  1273. '*************************************************************************
  1274. SUB BackupFile (szFullPath$, szBackup$) STATIC
  1275. '$ifdef DEBUG
  1276.     if FValidFATPath(szFullPath$) = 0 then
  1277.         n% = 1
  1278.     elseif szBackup$ = "" then
  1279.         n% = 2
  1280.     else
  1281.         n% = 0
  1282.     end if
  1283.     if n% > 0 then
  1284.         BadArgErr n%, "BackupFile", szFullPath$+", "+szBackup$
  1285.     end if
  1286. '$endif ''DEBUG
  1287.  
  1288.     IF YnrcBackupFile(szFullPath$, szBackup$, cmoNone) = ynrcNo THEN
  1289. '$ifdef DEBUG
  1290.         StfApiErr saeFail, "BackupFile", szFullPath$+", "+szBackup$
  1291. '$endif ''DEBUG
  1292.         ERROR STFERR
  1293.     END IF
  1294. END SUB
  1295.  
  1296.  
  1297. '*************************************************************************
  1298. SUB RenameFile (szFullPath$, szBackup$) STATIC
  1299. '$ifdef DEBUG
  1300.     if FValidFATPath(szFullPath$) = 0 then
  1301.         n% = 1
  1302.     elseif szBackup$ = "" then
  1303.         n% = 2
  1304.     else
  1305.         n% = 0
  1306.     end if
  1307.     if n% > 0 then
  1308.         BadArgErr n%, "RenameFile", szFullPath$+", "+szBackup$
  1309.     end if
  1310. '$endif ''DEBUG
  1311.  
  1312.     IF YnrcBackupFile(szFullPath$, szBackup$, cmoNone) = ynrcNo THEN
  1313. '$ifdef DEBUG
  1314.         StfApiErr saeFail, "RenameFile", szFullPath$+", "+szBackup$
  1315. '$endif ''DEBUG
  1316.         ERROR STFERR
  1317.     END IF
  1318. END SUB
  1319.  
  1320.  
  1321. '*************************************************************************
  1322. SUB AddSectionFilesToCopyList (szSect$, szSrc$, szDest$) STATIC
  1323. '$ifdef DEBUG
  1324.     if FValidInfSect(szSect$) = 0 then
  1325.         n% = 1
  1326.     elseif FValidFATDir(szSrc$) = 0 then
  1327.         n% = 2
  1328.     elseif FValidFATDir(szDest$) = 0 then
  1329.         n% = 3
  1330.     else
  1331.         n% = 0
  1332.     end if
  1333.     if n% > 0 then
  1334.         BadArgErr n%, "AddSectionFilesToCopyList", szSect$+", "+szSrc$+", "+szDest$
  1335.     end if
  1336. '$endif ''DEBUG
  1337.  
  1338.     IF FAddSectionFilesToCopyList (szSect$, szSrc$, szDest$) = 0 THEN
  1339. '$ifdef DEBUG
  1340.         StfApiErr saeFail, "AddSectionFilesToCopyList", szSect$+", "+szSrc$+", "+szDest$
  1341. '$endif ''DEBUG
  1342.         ERROR STFERR
  1343.     END IF
  1344. END SUB
  1345.  
  1346.  
  1347. '*************************************************************************
  1348. SUB AddSectionKeyFileToCopyList (szSect$, szKey$, szSrc$, szDest$) STATIC
  1349. '$ifdef DEBUG
  1350.     if FValidInfSect(szSect$) = 0 then
  1351.         n% = 1
  1352.     elseif szKey$ = "" then
  1353.         n% = 2
  1354.     elseif FValidFATDir(szSrc$) = 0 then
  1355.         n% = 3
  1356.     elseif FValidFATDir(szDest$) = 0 then
  1357.         n% = 4
  1358.     else
  1359.         n% = 0
  1360.     end if
  1361.     if n% > 0 then
  1362.         BadArgErr n%, "AddSectionKeyFileToCopyList", szSect$+", "+szKey$+", "+szSrc$+", "+szDest$
  1363.     end if
  1364. '$endif ''DEBUG
  1365.  
  1366.     IF FAddSectionKeyFileToCopyList (szSect$, szKey$, szSrc$, szDest$) = 0 THEN
  1367. '$ifdef DEBUG
  1368.         StfApiErr saeFail, "AddSectionKeyFileToCopyList", szSect$+", "+szKey$+", "+szSrc$+", "+szDest$
  1369. '$endif ''DEBUG
  1370.         ERROR STFERR
  1371.     END IF
  1372. END SUB
  1373.  
  1374.  
  1375. '*************************************************************************
  1376. SUB AddSpecialFileToCopyList (szSect$, szKey$, szSrc$, szDest$) STATIC
  1377. '$ifdef DEBUG
  1378.     if FValidInfSect(szSect$) = 0 then
  1379.         n% = 1
  1380.     elseif szKey$ = "" then
  1381.         n% = 2
  1382.     elseif FValidFATDir(szSrc$) = 0 then
  1383.         n% = 3
  1384.     elseif FValidFATPath(szDest$) = 0 then
  1385.         n% = 4
  1386.     else
  1387.         n% = 0
  1388.     end if
  1389.     if n% > 0 then
  1390.         BadArgErr n%, "AddSpecialFileToCopyList", szSect$+", "+szKey$+", "+szSrc$+", "+szDest$
  1391.     end if
  1392. '$endif ''DEBUG
  1393.  
  1394.     IF FAddSpecialFileToCopyList (szSect$, szKey$, szSrc$, szDest$) = 0 THEN
  1395. '$ifdef DEBUG
  1396.         StfApiErr saeFail, "AddSpecialFileToCopyList", szSect$+", "+szKey$+", "+szSrc$+", "+szDest$
  1397. '$endif ''DEBUG
  1398.         ERROR STFERR
  1399.     END IF
  1400. END SUB
  1401.  
  1402.  
  1403. '*************************************************************************
  1404. SUB AddToBillboardList (szDll$, idDlg%, szProc$, lTicks&) STATIC
  1405. '$ifdef DEBUG
  1406.     if szDll$ = "" then
  1407.         n% = 1
  1408.     elseif idDlg% = 0 then
  1409.         n% = 2
  1410.     elseif szProc$ = "" then
  1411.         n% = 3
  1412.     elseif lTicks& <= 0 then
  1413.         n% = 4
  1414.     else
  1415.         n% = 0
  1416.     end if
  1417.     if n% > 0 then
  1418.         BadArgErr n%, "AddToBillboardList", szDll$+", "+STR$(idDlg%)+", "+szProc$+", "+STR$(lTicks&)
  1419.     end if
  1420. '$endif ''DEBUG
  1421.  
  1422.     IF FAddToBillboardList(szDll$, idDlg%, szProc$, lTicks&) = 0 THEN
  1423. '$ifdef DEBUG
  1424.         StfApiErr saeFail, "AddToBillboardList", szDll$+", "+STR$(idDlg%)+", "+szProc$+", "+STR$(lTicks&)
  1425. '$endif ''DEBUG
  1426.         ERROR STFERR
  1427.     END IF
  1428. END SUB
  1429.  
  1430.  
  1431. '*************************************************************************
  1432. SUB AddBlankToBillboardList (lTicks&) STATIC
  1433. '$ifdef DEBUG
  1434.     if lTicks& <= 0 then
  1435.         BadArgErr 1, "AddBlankToBillboardList", STR$(lTicks&)
  1436.     end if
  1437. '$endif ''DEBUG
  1438.     IF FAddToBillboardList(NULL, 0, NULL, lTicks&) = 0 THEN
  1439. '$ifdef DEBUG
  1440.         StfApiErr saeFail, "AddBlankToBillboardList", STR$(lTicks&)
  1441. '$endif ''DEBUG
  1442.         ERROR STFERR
  1443.     END IF
  1444. END SUB
  1445.  
  1446.  
  1447. '*************************************************************************
  1448. SUB ClearBillboardList STATIC
  1449.     IF FClearBillboardList = 0 THEN
  1450. '$ifdef DEBUG
  1451.         StfApiErr saeFail, "ClearBillboardList", ""
  1452. '$endif ''DEBUG
  1453.         ERROR STFERR
  1454.     END IF
  1455. END SUB
  1456.  
  1457.  
  1458. '*************************************************************************
  1459. SUB OpenLogFile (szFile$, fAppend%) STATIC
  1460. '$ifdef DEBUG
  1461.     if FValidFATPath(szFile$) = 0 then
  1462.         BadArgErr 1, "OpenLogFile", szFile$+", "+STR$(fAppend%)
  1463.     end if
  1464. '$endif ''DEBUG
  1465.     IF FOpenLogFile(szFile$, fAppend%) = 0 THEN
  1466. '$ifdef DEBUG
  1467.         StfApiErr saeFail, "OpenLogFile", szFile$+", "+STR$(fAppend%)
  1468. '$endif ''DEBUG
  1469.         ERROR STFERR
  1470.     END IF
  1471. END SUB
  1472.  
  1473.  
  1474. '*************************************************************************
  1475. SUB CloseLogFile STATIC
  1476.     IF FCloseLogFile() = 0 THEN
  1477. '$ifdef DEBUG
  1478.         StfApiErr saeFail, "CloseLogFile", ""
  1479. '$endif ''DEBUG
  1480.         ERROR STFERR
  1481.     END IF
  1482. END SUB
  1483.  
  1484.  
  1485. '*************************************************************************
  1486. SUB WriteToLogFile (szStr$) STATIC
  1487.     IF FWriteToLogFile(szStr$, 1) = 0 THEN
  1488. '$ifdef DEBUG
  1489.         StfApiErr saeFail, "WriteToLogFile", szStr$
  1490. '$endif ''DEBUG
  1491.         ERROR STFERR
  1492.     END IF
  1493. END SUB
  1494.  
  1495.  
  1496. ''' -1 in either parameter will mean 'center in frame client area'
  1497. '*************************************************************************
  1498. SUB SetCopyGaugePosition (x%, y%) STATIC
  1499.     ProSetPos x%, y%
  1500. END SUB
  1501.  
  1502.  
  1503. '*************************************************************************
  1504. FUNCTION FindFileUsingFileOpen (szFile$) STATIC AS STRING
  1505.     szBuf$ = STRING$(512, 32)
  1506.  
  1507.     wRet% = WFindFileUsingFileOpen(szFile$, szBuf$, len(szBuf$))
  1508.     IF wRet% = 0 THEN
  1509.         FindFileUsingFileOpen = szBuf$
  1510.     ELSEIF wRet% = 1 THEN
  1511.         FindFileUsingFileOpen = ""
  1512.     ELSE
  1513. '$ifdef DEBUG
  1514.         StfApiErr saeFail, "FindFileUsingFileOpen", szFile$
  1515. '$endif ''DEBUG
  1516.         ERROR STFERR
  1517.     END IF
  1518.  
  1519.     szBuf$ = ""
  1520. END FUNCTION
  1521.  
  1522.  
  1523. '*************************************************************************
  1524. FUNCTION IsDirWritable (szDir$) STATIC AS INTEGER
  1525.     IsDirWritable = FIsDirWritable(szDir$)
  1526. END FUNCTION
  1527.  
  1528.  
  1529. '*************************************************************************
  1530. FUNCTION IsFileWritable (szFile$) STATIC AS INTEGER
  1531. '$ifdef DEBUG
  1532.     if FValidFATDir(szFile$) = 0 then
  1533.         BadArgErr 1, "IsFileWritable", szFile$
  1534.     end if
  1535. '$endif ''DEBUG
  1536.     IsFileWritable = FIsFileWritable(szFile$)
  1537. END FUNCTION
  1538.  
  1539.  
  1540. '*************************************************************************
  1541. FUNCTION GetNthFieldFromIniString (szLine$, iField%) STATIC AS STRING
  1542.     IF iField% < 1 THEN
  1543. '$ifdef DEBUG
  1544.         StfApiErr saeFail, "GetNthFieldFromIniString", szLine$+", "+STR$(iField%)
  1545. '$endif ''DEBUG
  1546.         ERROR STFERR
  1547.     END IF
  1548.     szStart$ = szLine$
  1549.     IF iField% <> 1 THEN
  1550.         FOR i% = 2 TO iField% STEP 1
  1551.             iNew% = INSTR(szStart$, ",")
  1552.             IF iNew% = 0 THEN
  1553.                 GetNthFieldFromIniString = ""
  1554.                 GOTO _GNFFIS_END
  1555.             END IF
  1556.             szStart$ = MID$(szStart$, (iNew% + 1))
  1557.         NEXT
  1558.     END IF
  1559.  
  1560.     iNew% = INSTR(szStart$, ",")
  1561.     IF iNew% <> 0 THEN
  1562.         szStart$ = MID$(szStart$, 1, (iNew% - 1))
  1563.     END IF
  1564.  
  1565.     GetNthFieldFromIniString = LTRIM$(RTRIM$(szStart$))
  1566.  
  1567. _GNFFIS_END:
  1568.  
  1569. END FUNCTION
  1570.  
  1571.  
  1572. '*************************************************************************
  1573. FUNCTION GetWindowsMajorVersion STATIC AS INTEGER
  1574.     GetWindowsMajorVersion = GetVersion() MOD 256
  1575. END FUNCTION
  1576.  
  1577.  
  1578. '*************************************************************************
  1579. FUNCTION GetWindowsMinorVersion STATIC AS INTEGER
  1580.     GetWindowsMinorVersion = GetVersion() / 256
  1581. END FUNCTION
  1582.  
  1583.  
  1584. '*************************************************************************
  1585. FUNCTION GetWindowsMode STATIC AS INTEGER
  1586.     GetWindowsMode = 0
  1587.     longTmp& = GetWinFlags()
  1588.     IF longTmp& AND WF_STANDARD THEN
  1589.         GetWindowsMode = 1
  1590.     ELSEIF longTmp& AND WF_ENHANCED THEN
  1591.         GetWindowsMode = 2
  1592.     END IF
  1593. END FUNCTION
  1594.  
  1595.  
  1596. '*************************************************************************
  1597. FUNCTION GetWindowsDir STATIC AS STRING
  1598.     szBuf$ = string$(256, 32)
  1599.     cbBuf% = GetWindowsDirectory(szBuf$, 256)
  1600.  
  1601.     IF cbBuf% = 0 THEN
  1602.         GetWindowsDir = ""
  1603. '$ifdef DEBUG
  1604.         StfApiErr saeFail, "GetWindowsDir", ""
  1605. '$endif ''DEBUG
  1606.         ERROR STFERR
  1607.     ELSE
  1608.         IF cbBuf% > 255 THEN
  1609.             res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  1610.             ERROR STFERR
  1611.         END IF
  1612.         szBuf$ = RTRIM$(szBuf$)
  1613.         IF MID$(szBuf$, 1, 1) = "\" THEN
  1614.             'szBuf$ = MID$(CURDIR$, 1, 2) + szBuf$
  1615.             szBuf$ = MID$(GetWindowsSysDir, 1, 2) + szBuf$
  1616.         ELSEIF MID$(szBuf$, 2, 1) <> ":" THEN
  1617.             szBuf$ = MID$(GetWindowsSysDir, 1, 3) + szBuf$
  1618.         END IF
  1619.         IF MID$(szBuf$, LEN(szBuf$), 1) <> "\" THEN
  1620.             szBuf$ = szBuf$ + "\"
  1621.         END IF
  1622.         GetWindowsDir = szBuf$
  1623.     END IF
  1624.  
  1625.     szBuf$ = ""
  1626. END FUNCTION
  1627.  
  1628.  
  1629. '*************************************************************************
  1630. FUNCTION GetWindowsSysDir STATIC AS STRING
  1631.     szBuf$ = string$(256, 32)
  1632.     cbBuf% = GetSystemDirectory(szBuf$, 256)
  1633.  
  1634.     IF cbBuf% = 0 THEN
  1635. '$ifdef DEBUG
  1636.         StfApiErr saeFail, "GetWindowsSysDir", ""
  1637. '$endif ''DEBUG
  1638.         ERROR STFERR
  1639.     ELSE
  1640.         IF cbBuf% > 255 THEN
  1641.             res% = DoMsgBox("Buffer Overflow", "MS-Setup Error", MB_ICONHAND+MB_OK)
  1642.             ERROR STFERR
  1643.         END IF
  1644.         szBuf$ = RTRIM$(szBuf$)
  1645.         IF MID$(szBuf$, 1, 1) = "\" THEN
  1646.             szBuf$ = MID$(CURDIR$, 1, 2) + szBuf$
  1647.         ELSEIF MID$(szBuf$, 2, 1) <> ":" THEN
  1648.             szBuf$ = MID$(CURDIR$, 1, 3) + szBuf$
  1649.         END IF
  1650.         IF MID$(szBuf$, LEN(szBuf$), 1) <> "\" THEN
  1651.             szBuf$ = szBuf$ + "\"
  1652.         END IF
  1653.         GetWindowsSysDir = szBuf$
  1654.     END IF
  1655.  
  1656.     szBuf$ = ""
  1657. END FUNCTION
  1658.  
  1659.  
  1660. '*************************************************************************
  1661. FUNCTION IsWindowsShared STATIC AS INTEGER
  1662.     szWin$ = UCASE$(GetWindowsDir())
  1663.     szSys$ = UCASE$(GetWindowsSysDir())
  1664.  
  1665.     IF len(szWin$) = 0 THEN
  1666. '$ifdef DEBUG
  1667.         StfApiErr saeFail, "IsWindowsShared", ""
  1668. '$endif ''DEBUG
  1669.         ERROR STFERR
  1670.     END IF
  1671.  
  1672.     IF len(szSys$) <= len(szWin$) THEN
  1673.         IsWindowsShared = 1
  1674.     ELSE
  1675.         szSys$ = MID$(szSys$, 1, len(szWin$))
  1676.         IF szWin$ = szSys$ THEN
  1677.             IsWindowsShared = 0
  1678.         ELSE
  1679.             IsWindowsShared = 1
  1680.         END IF
  1681.     END IF
  1682. END FUNCTION
  1683.  
  1684.  
  1685. '*************************************************************************
  1686. FUNCTION GetScreenWidth STATIC AS INTEGER
  1687.     GetScreenWidth = GetSystemMetrics(SM_CXSCREEN)
  1688. END FUNCTION
  1689.  
  1690.  
  1691. '*************************************************************************
  1692. FUNCTION GetScreenHeight STATIC AS INTEGER
  1693.     GetScreenHeight = GetSystemMetrics(SM_CYSCREEN)
  1694. END FUNCTION
  1695.  
  1696.  
  1697. '*************************************************************************
  1698. SUB SetRestartDir (szDir$) STATIC
  1699. '$ifdef DEBUG
  1700.     if FValidFATDir(szDir$) = 0 then
  1701.         BadArgErr 1, "SetRestartDir", szDir$
  1702.     end if
  1703. '$endif ''DEBUG
  1704.     IF FSetRestartDir(szDir$) = 0 THEN
  1705. '$ifdef DEBUG
  1706.         StfApiErr saeFail, "SetRestartDir", szDir$
  1707. '$endif ''DEBUG
  1708.         ERROR STFERR
  1709.     END IF
  1710. END SUB
  1711.  
  1712.  
  1713. '*************************************************************************
  1714. FUNCTION RestartListEmpty STATIC AS INTEGER
  1715.     IF FRestartListEmpty() = 0 THEN
  1716.         RestartListEmpty = 0
  1717.     ELSE
  1718.         RestartListEmpty = 1
  1719.     END IF
  1720. END FUNCTION
  1721.  
  1722.  
  1723. '*************************************************************************
  1724. FUNCTION ExitExecRestart STATIC AS INTEGER
  1725.     ExitExecRestart = FExitExecRestart
  1726. END FUNCTION
  1727.  
  1728.  
  1729. '*************************************************************************
  1730. SUB PrependToPath (szSrc$, szDst$, szDir$, cmo%) STATIC
  1731.  
  1732. '$ifdef DEBUG
  1733.     if (FValidFATPath(szSrc$) = 0) AND (szSrc$ <> "") then
  1734.         n% = 1
  1735.     elseif FValidFATPath(szDst$) = 0 then
  1736.         n% = 2
  1737.     elseif FValidFATDir(szDir$) = 0 then
  1738.         n% = 3
  1739.     else
  1740.         n% = 0
  1741.     end if
  1742.     if n% > 0 then
  1743.         BadArgErr n%, "PrependToPath", szSrc$+", "+szDst$+", "+szDir$+", "+STR$(cmo%)
  1744.     end if
  1745. '$endif ''DEBUG
  1746.  
  1747.     IF FPrependToPath (szSrc$, szDst$, szDir$, cmo%) = 0 THEN
  1748. '$ifdef DEBUG
  1749.         StfApiErr saeFail, "PrependToPath", szSrc$+", "+szDst$+", "+szDir$+", "+STR$(cmo%)
  1750. '$endif ''DEBUG
  1751.         ERROR STFERR
  1752.     END IF
  1753. END SUB
  1754.  
  1755.  
  1756.  
  1757. '**************************************************************************
  1758. '***************************  Error Handlers  *****************************
  1759. '**************************************************************************
  1760.  
  1761.  
  1762. '$ifdef DEBUG
  1763. '**************************************************************************
  1764. SUB StfApiErr (nMsg%, szApi$, szArgs$) STATIC      ''DEBUG only
  1765.     select case nMsg%
  1766.         case saeFail
  1767.             lpText$ = "Failed"
  1768.         case saeInit
  1769.             lpText$ = "Already Initialized"
  1770.         case saeNYI
  1771.             lpText$ = "NYI"
  1772.         case else
  1773.             lpText$ = "Bad Arg "+LTRIM$(STR$(nMsg% - saeArg))
  1774.     end select
  1775.  
  1776.     lpText$ = lpText$ + ": "+ szApi$
  1777.     if szArgs$ <> "" then
  1778.         lpText$ = lpText + " (" + szArgs$ + ")"
  1779.     end if
  1780.     lpCaption$ = "MS-Setup Toolkit API Error"
  1781.     res% = DoMsgBox(lpText$, lpCaption$, MB_TASKMODAL+MB_ICONHAND+MB_OK)
  1782.     print lpText$
  1783.     lpText$ = ""
  1784.     lpCaption$ = ""
  1785. END SUB
  1786.  
  1787. '**************************************************************************
  1788. SUB BadArgErr (nArg%, szApi$, szArgs$) STATIC      ''DEBUG only
  1789.     StfApiErr nArg%+saeArg, szApi$, szArgs$
  1790.     ERROR STFERR
  1791. END SUB
  1792.  
  1793.  
  1794. '** REVIEW: Move this function into common lib (we'll need it there too)
  1795. '**************************************************************************
  1796. FUNCTION FValidInfSect (szSect$) STATIC AS INTEGER
  1797.     if (szSect$ = "") OR (INSTR(1,szSect$,"]") <> 0) then
  1798.         FValidInfSect = 0
  1799.     else
  1800.         FValidInfSect = 1
  1801.     end if
  1802. END FUNCTION
  1803.  
  1804.  
  1805. '** REVIEW: Move this function into common lib (we'll need it there too)
  1806. '**************************************************************************
  1807. FUNCTION FValidIniFile (szFile$) STATIC AS INTEGER
  1808.     if (FValidFATPath(szFile$) = 0) AND (UCASE$(szFile$) <> "WIN.INI") then
  1809.         FValidIniFile = 0
  1810.     else
  1811.         FValidIniFile = 1
  1812.     end if
  1813. END FUNCTION
  1814.  
  1815. '**************************************************************************
  1816. FUNCTION FValidDrive (szDrive$) STATIC AS INTEGER
  1817.  
  1818.     if szDrive$ = "" then
  1819.         FValidDrive = 0
  1820.     elseif INSTR(1,szDrive$,"\\") = 1 then   ' UNC path
  1821.         FValidDrive = 1
  1822.     elseif ASC(UCASE$(szDrive$)) - ASC("A") < 0 then
  1823.         FValidDrive = 0
  1824.     elseif ASC(UCASE$(szDrive$)) - ASC("A") > 25 then
  1825.         FValidDrive = 0
  1826.     elseif LEN(szDrive$) = 1 then
  1827.         FValidDrive = 1
  1828.     elseif INSTR(2,szDrive$,":\") = 2 then
  1829.         FValidDrive = 1
  1830.     elseif INSTR(1,szDrive$,":") = 2 then
  1831.         FValidDrive = 1
  1832.     else
  1833.         FValidDrive = 0
  1834.     end if
  1835. END FUNCTION
  1836.  
  1837. '$endif ''DEBUG
  1838.  
  1839.  
  1840. TRAP CleanupTrap From "MSSHLSTF.DLL"
  1841.  
  1842. End Trap
  1843.  
  1844. hSetup = InitSetup(COMMAND$)
  1845.  
  1846. ON ERROR GOTO QUIT
  1847.  
  1848.