Merge the following revisions from kernel-fun branch:
[reactos.git] / reactos / 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
54 WINAPI
55 InfpFindFirstLineW(
56 IN HINF InfHandle,
57 IN PCWSTR Section,
58 IN PCWSTR Key,
59 IN OUT PINFCONTEXT Context);
60
61 HINF
62 WINAPI
63 InfpOpenInfFileW(
64 IN PCWSTR FileName,
65 IN PCWSTR InfClass,
66 IN DWORD InfStyle,
67 IN LCID LocaleId,
68 OUT PUINT ErrorLine);
69
70 #endif /* __REACTOS__ */
71
72 BOOLEAN
73 INF_GetData(
74 IN PINFCONTEXT Context,
75 OUT PWCHAR *Key,
76 OUT PWCHAR *Data);
77
78 BOOLEAN
79 INF_GetDataField(
80 IN PINFCONTEXT Context,
81 IN ULONG FieldIndex,
82 OUT PWCHAR *Data);
83
84 HINF WINAPI
85 INF_OpenBufferedFileA(
86 IN PSTR FileBuffer,
87 IN ULONG FileSize,
88 IN PCSTR InfClass,
89 IN DWORD InfStyle,
90 IN LCID LocaleId,
91 OUT PUINT ErrorLine);
92
93 /* EOF */