[SETUPLIB][USETUP] Move all the code that performs file copying into the SETUPLIB.

This commit is contained in:
Hermès Bélusca-Maïto 2018-01-07 01:35:48 +01:00
parent f894631472
commit 3d137b05d1
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
5 changed files with 699 additions and 530 deletions

View file

@ -44,6 +44,8 @@ extern HANDLE ProcessHeap;
#include "mui.h"
#include "settings.h"
// #include "install.h" // See at the end...
/* DEFINES ******************************************************************/
@ -124,6 +126,10 @@ typedef struct _USETUP_DATA
WCHAR InstallationDirectory[MAX_PATH];
} USETUP_DATA, *PUSETUP_DATA;
#include "install.h"
// HACK!!
extern BOOLEAN IsUnattendedSetup;