mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:03:00 +00:00
Native applications must not know about BOOL type.
svn path=/trunk/; revision=5238
This commit is contained in:
parent
2b64861966
commit
901dcf2a27
2 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: inicache.c,v 1.4 2003/01/30 17:37:13 ekohl Exp $
|
/* $Id: inicache.c,v 1.5 2003/07/24 13:52:27 ekohl Exp $
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS text-mode setup
|
* PROJECT: ReactOS text-mode setup
|
||||||
* FILE: subsys/system/usetup/inicache.c
|
* FILE: subsys/system/usetup/inicache.c
|
||||||
|
@ -438,7 +438,7 @@ static PCHAR
|
||||||
IniCacheGetKeyValue(PCHAR Ptr,
|
IniCacheGetKeyValue(PCHAR Ptr,
|
||||||
PCHAR *DataPtr,
|
PCHAR *DataPtr,
|
||||||
PULONG DataSize,
|
PULONG DataSize,
|
||||||
BOOL String)
|
BOOLEAN String)
|
||||||
{
|
{
|
||||||
ULONG Size = 0;
|
ULONG Size = 0;
|
||||||
|
|
||||||
|
@ -511,7 +511,7 @@ IniCacheGetKeyValue(PCHAR Ptr,
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
IniCacheLoad(PINICACHE *Cache,
|
IniCacheLoad(PINICACHE *Cache,
|
||||||
PUNICODE_STRING FileName,
|
PUNICODE_STRING FileName,
|
||||||
BOOL String)
|
BOOLEAN String)
|
||||||
{
|
{
|
||||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||||
FILE_STANDARD_INFORMATION FileInfo;
|
FILE_STANDARD_INFORMATION FileInfo;
|
||||||
|
|
|
@ -78,7 +78,7 @@ typedef enum
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
IniCacheLoad(PINICACHE *Cache,
|
IniCacheLoad(PINICACHE *Cache,
|
||||||
PUNICODE_STRING FileName,
|
PUNICODE_STRING FileName,
|
||||||
BOOL String);
|
BOOLEAN String);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
IniCacheDestroy(PINICACHE Cache);
|
IniCacheDestroy(PINICACHE Cache);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue