WindowsXP/Source/XPSP1/NT/sdktools/cntrtext/initodat/initodat.h
2024-08-03 16:30:48 +02:00

87 lines
1.3 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1993-1994 Microsoft Corporation
Module Name:
initodat.h
Abstract:
This is the include file for the ini to data file conversion functions.
Author:
HonWah Chan (a-honwah) October, 1993
Revision History:
--*/
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>
// #include <io.h>
#include <fcntl.h>
#include <malloc.h>
#include <sys\types.h>
#include <sys\stat.h>
#include <tchar.h>
#define VALUE_BUFFER_SIZE (4096 * 100)
typedef struct _REG_UNICODE_FILE {
LARGE_INTEGER LastWriteTime;
PWSTR FileContents;
PWSTR EndOfFile;
PWSTR BeginLine;
PWSTR EndOfLine;
PWSTR NextLine;
} REG_UNICODE_FILE, *PREG_UNICODE_FILE;
NTSTATUS
DatReadMultiSzFile(
#if FE_SB
UINT uCodePage,
#endif
IN PUNICODE_STRING FileName,
OUT PVOID *ValueBuffer,
OUT PULONG ValueLength
);
NTSTATUS
DatLoadAsciiFileAsUnicode(
#if FE_SB
UINT uCodePage,
#endif
IN PUNICODE_STRING FileName,
OUT PREG_UNICODE_FILE UnicodeFile
);
BOOLEAN
DatGetMultiString(
IN OUT PUNICODE_STRING ValueString,
OUT PUNICODE_STRING MultiString
);
BOOL
OutputIniData (
IN PUNICODE_STRING FileName,
IN LPTSTR OutFileCandidate,
IN PVOID pValueBuffer,
IN ULONG ValueLength
);