1 | //
|
---|
2 | // MINSTALL.DLL (c) Copyright 2002-2005 Martin Kiewitz
|
---|
3 | //
|
---|
4 | // This file is part of MINSTALL.DLL for OS/2 / eComStation
|
---|
5 | //
|
---|
6 | // MINSTALL.DLL is free software: you can redistribute it and/or modify
|
---|
7 | // it under the terms of the GNU General Public License as published by
|
---|
8 | // the Free Software Foundation, either version 3 of the License, or
|
---|
9 | // (at your option) any later version.
|
---|
10 | //
|
---|
11 | // MINSTALL.DLL is distributed in the hope that it will be useful,
|
---|
12 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | // GNU General Public License for more details.
|
---|
15 | //
|
---|
16 | // You should have received a copy of the GNU General Public License
|
---|
17 | // along with MINSTALL.DLL. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 | //
|
---|
19 |
|
---|
20 | PMINSTDIR MINSTALL_SearchSourceDirID (ULONG DirectoryID);
|
---|
21 | PMINSTDIR MINSTALL_SearchRootSourceDirID (void);
|
---|
22 | PMINSTDIR MINSTALL_SearchDestinDirID (ULONG DirectoryID);
|
---|
23 | PMINSTGRP MINSTALL_SearchGroupID (ULONG GroupID);
|
---|
24 | PMINSTGRP MINSTALL_SearchGroupGeninID (PMINSTFILE CARDINFOFilePtr, ULONG GeninID);
|
---|
25 | PMINSTFILE MINSTALL_SearchFileCRC32 (ULONG FileCRC32);
|
---|
26 | PCHAR MINSTALL_ExtractValue (PULONG DestPtr, PCHAR StartPos, PCHAR EndPos);
|
---|
27 | PSZ MINSTALL_GetPointerToMacro (PCHAR *CurPosPtr, PCHAR EndPos);
|
---|
28 | PCHAR MINSTALL_GetMacrodString (PCHAR DestPtr, ULONG DestMaxSize, PCHAR StartPos, PCHAR EndPos);
|
---|
29 | PCHAR MINSTALL_GetNumericValue (PULONG DestPtr, PCHAR StartPos, PCHAR EndPos);
|
---|
30 | ULONG MINSTALL_GetVersionCode (PSZ VersionString);
|
---|
31 | VOID MINSTALL_GetInstalledVersion (PSZ GroupName, PSZ DestVersionInstalled);
|
---|
32 | VOID MINSTALL_SetInstalledVersion (PSZ GroupName, PSZ Version);
|
---|
33 | VOID MINSTALL_printf (PSZ FormatStr, ...);
|
---|
34 |
|
---|
35 | VOID MINSTALL_SaveCurrentDirectory (void);
|
---|
36 | VOID MINSTALL_RestoreCurrentDirectory (void);
|
---|
37 | VOID MINSTALL_SetCurrentDirectoryToSource (void);
|
---|
38 |
|
---|
39 | VOID MINSTALL_TrappedError (ULONG ErrorMsgID);
|
---|
40 | VOID MINSTALL_TrappedWarning (ULONG ErrorMsgID);
|
---|
41 |
|
---|
42 | VOID MINSTLOG_OpenFile (void);
|
---|
43 | VOID MINSTLOG_CloseFile (void);
|
---|
44 | VOID MINSTLOG_ToFile (PSZ FormatStr,...);
|
---|
45 | VOID MINSTLOG_ToScreen (PSZ FormatStr,...);
|
---|
46 | VOID MINSTLOG_ToAll (PSZ FormatStr,...);
|
---|