mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
[SETUPLIB] Move the files that implement utility functions into their own subdirectory. The files remaining in the main directory implement setup procedures that use the utility functions.
svn path=/branches/setup_improvements/; revision=75695
This commit is contained in:
parent
95a34ef6fc
commit
6f19c83b96
28 changed files with 28 additions and 26 deletions
|
@ -1,18 +1,20 @@
|
||||||
|
|
||||||
|
include_directories(utils)
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
arcname.c
|
utils/arcname.c
|
||||||
bldrsup.c
|
utils/bldrsup.c
|
||||||
|
utils/filesup.c
|
||||||
|
utils/genlist.c
|
||||||
|
utils/infsupp.c
|
||||||
|
utils/inicache.c
|
||||||
|
utils/ntverrsrc.c
|
||||||
|
utils/osdetect.c
|
||||||
|
utils/partlist.c
|
||||||
|
utils/regutil.c
|
||||||
bootsup.c
|
bootsup.c
|
||||||
filesup.c
|
|
||||||
fsutil.c
|
fsutil.c
|
||||||
genlist.c
|
|
||||||
infsupp.c
|
|
||||||
inicache.c
|
|
||||||
ntverrsrc.c
|
|
||||||
osdetect.c
|
|
||||||
partlist.c
|
|
||||||
registry.c
|
registry.c
|
||||||
regutil.c
|
|
||||||
setuplib.c
|
setuplib.c
|
||||||
precomp.h)
|
precomp.h)
|
||||||
|
|
||||||
|
|
|
@ -55,4 +55,4 @@
|
||||||
extern HANDLE ProcessHeap;
|
extern HANDLE ProcessHeap;
|
||||||
|
|
||||||
#include "errorcode.h"
|
#include "errorcode.h"
|
||||||
#include "linklist.h"
|
#include "utils/linklist.h"
|
||||||
|
|
|
@ -25,20 +25,20 @@
|
||||||
extern HANDLE ProcessHeap;
|
extern HANDLE ProcessHeap;
|
||||||
|
|
||||||
#include "errorcode.h"
|
#include "errorcode.h"
|
||||||
#include "linklist.h"
|
#include "utils/linklist.h"
|
||||||
#include "ntverrsrc.h"
|
#include "utils/ntverrsrc.h"
|
||||||
// #include "arcname.h"
|
// #include "utils/arcname.h"
|
||||||
#include "bldrsup.h"
|
#include "utils/bldrsup.h"
|
||||||
#include "bootsup.h"
|
#include "bootsup.h"
|
||||||
#include "filesup.h"
|
#include "utils/filesup.h"
|
||||||
#include "fsutil.h"
|
#include "fsutil.h"
|
||||||
#include "genlist.h"
|
#include "utils/genlist.h"
|
||||||
#include "infsupp.h"
|
#include "utils/infsupp.h"
|
||||||
#include "inicache.h"
|
#include "utils/inicache.h"
|
||||||
#include "partlist.h"
|
#include "utils/partlist.h"
|
||||||
#include "arcname.h"
|
#include "utils/arcname.h"
|
||||||
#include "osdetect.h"
|
#include "utils/osdetect.h"
|
||||||
#include "regutil.h"
|
#include "utils/regutil.h"
|
||||||
#include "registry.h"
|
#include "registry.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../lib/genlist.h"
|
// #include "../lib/utils/genlist.h"
|
||||||
|
|
||||||
typedef struct _GENERIC_LIST_UI
|
typedef struct _GENERIC_LIST_UI
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,7 +43,7 @@ extern VOID InfSetHeap(PVOID Heap);
|
||||||
|
|
||||||
#endif /* __REACTOS__ */
|
#endif /* __REACTOS__ */
|
||||||
|
|
||||||
#include <../lib/infsupp.h>
|
// #include "../lib/utils/infsupp.h"
|
||||||
|
|
||||||
|
|
||||||
/* HELPER FUNCTIONS **********************************************************/
|
/* HELPER FUNCTIONS **********************************************************/
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../lib/partlist.h"
|
// #include "../lib/utils/partlist.h"
|
||||||
|
|
||||||
typedef enum _FORMATMACHINESTATE
|
typedef enum _FORMATMACHINESTATE
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue