mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
92b99b865e
- filesup.c's functions ConcatPaths(), Does[Path|File]Exist(), NtPathToDiskPartComponents(), OpenAndMapFile(), UnMapFile(); - Move the inicache library to setuplib as it'll be used for the 1st stage GUI setup too (indeed, there is no good INI file API under Win32; the Win32 profile "API" is just good enough to manipulate the win16 ini files, and are here anyways for backward compatibility purposes only); - Move the OS detector too. - Remove the duplicated ConcatPaths() code in arcname.c. svn path=/branches/setup_improvements/; revision=74634 svn path=/branches/setup_improvements/; revision=74638
58 lines
1.1 KiB
C
58 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS Setup Library
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Precompiled header
|
|
* COPYRIGHT: Copyright 2017-2018 Hermes Belusca-Maito
|
|
*/
|
|
|
|
/* C Headers */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* PSDK/NDK Headers */
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <winuser.h>
|
|
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/cmfuncs.h>
|
|
#include <ndk/exfuncs.h>
|
|
#include <ndk/iofuncs.h>
|
|
#include <ndk/kefuncs.h>
|
|
#include <ndk/mmfuncs.h>
|
|
#include <ndk/obfuncs.h>
|
|
#include <ndk/psfuncs.h>
|
|
#include <ndk/rtlfuncs.h>
|
|
#include <ndk/setypes.h>
|
|
|
|
#include <ntstrsafe.h>
|
|
|
|
|
|
/* Filesystem headers */
|
|
#include <reactos/rosioctl.h> // For extra partition IDs
|
|
|
|
//
|
|
///* Internal Headers */
|
|
//#include "interface/consup.h"
|
|
//#include "inffile.h"
|
|
//#include "inicache.h"
|
|
//#include "progress.h"
|
|
//#ifdef __REACTOS__
|
|
//#include "infros.h"
|
|
//#include "filequeue.h"
|
|
//#endif
|
|
|
|
//#include "registry.h"
|
|
//#include "fslist.h"
|
|
//#include "partlist.h"
|
|
//#include "cabinet.h"
|
|
//#include "filesup.h"
|
|
//#include "genlist.h"
|
|
|
|
|
|
extern HANDLE ProcessHeap;
|
|
|
|
#include "errorcode.h"
|
|
#include "linklist.h"
|