This really needs to go in a branch. It needs heavy testing and can't coincide with...
[reactos.git] / base / setup / usetup / inffile.h
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2002 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /*
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS text-mode setup
22 * FILE: subsys/system/usetup/inffile.h
23 * PURPOSE: .inf files support functions
24 * PROGRAMMER: Hervé Poussineau
25 */
26
27 #pragma once
28
29 #ifndef __REACTOS__
30
31 #include <setupapi.h>
32
33 #else /* __REACTOS__ */
34
35 #include <infcommon.h>
36
37 #define SetupFindFirstLineW InfpFindFirstLineW
38 #define SetupGetFieldCount InfGetFieldCount
39 #define SetupGetIntField InfGetIntField
40 #define SetupOpenInfFileW InfpOpenInfFileW
41
42 #define INF_STYLE_WIN4 0x00000002
43
44 /* FIXME: this structure is the one used in inflib, not in setupapi
45 * Delete it once we don't use inflib anymore */
46 typedef struct _INFCONTEXT
47 {
48 PVOID Inf;
49 PVOID Section;
50 PVOID Line;
51 } INFCONTEXT;
52
53 BOOL WINAPI
54 InfpFindFirstLineW(
55 IN HINF InfHandle,
56 IN PCWSTR Section,
57 IN PCWSTR Key,
58 IN OUT PINFCONTEXT Context);
59
60 HINF WINAPI
61 InfpOpenInfFileW(
62 IN PCWSTR FileName,
63 IN PCWSTR InfClass,
64 IN DWORD InfStyle,
65 IN LCID LocaleId,
66 OUT PUINT ErrorLine);
67
68 #endif /* __REACTOS__ */
69
70 BOOLEAN
71 INF_GetData(
72 IN PINFCONTEXT Context,
73 OUT PWCHAR *Key,
74 OUT PWCHAR *Data);
75
76 BOOLEAN
77 INF_GetDataField(
78 IN PINFCONTEXT Context,
79 IN ULONG FieldIndex,
80 OUT PWCHAR *Data);
81
82 HINF WINAPI
83 INF_OpenBufferedFileA(
84 IN PSTR FileBuffer,
85 IN ULONG FileSize,
86 IN PCSTR InfClass,
87 IN DWORD InfStyle,
88 IN LCID LocaleId,
89 OUT PUINT ErrorLine);
90
91 /* EOF */