Native applications must not know about BOOL type.

svn path=/trunk/; revision=5238
This commit is contained in:
Eric Kohl 2003-07-24 13:52:27 +00:00
parent 2b64861966
commit 901dcf2a27
2 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* 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
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/inicache.c
@ -438,7 +438,7 @@ static PCHAR
IniCacheGetKeyValue(PCHAR Ptr,
PCHAR *DataPtr,
PULONG DataSize,
BOOL String)
BOOLEAN String)
{
ULONG Size = 0;
@ -511,7 +511,7 @@ IniCacheGetKeyValue(PCHAR Ptr,
NTSTATUS
IniCacheLoad(PINICACHE *Cache,
PUNICODE_STRING FileName,
BOOL String)
BOOLEAN String)
{
OBJECT_ATTRIBUTES ObjectAttributes;
FILE_STANDARD_INFORMATION FileInfo;

View file

@ -78,7 +78,7 @@ typedef enum
NTSTATUS
IniCacheLoad(PINICACHE *Cache,
PUNICODE_STRING FileName,
BOOL String);
BOOLEAN String);
VOID
IniCacheDestroy(PINICACHE Cache);