xref: /reactos/base/setup/lib/spapisup/fileqsup.c (revision f4d29a74)
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS Setup Library
4  * FILE:            base/setup/lib/fileqsup.c
5  * PURPOSE:         Interfacing with Setup* API File Queue support functions
6  * PROGRAMMERS:     Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7  */
8 
9 /* INCLUDES *****************************************************************/
10 
11 #include "precomp.h"
12 #include "fileqsup.h"
13 
14 #define NDEBUG
15 #include <debug.h>
16 
17 /* GLOBALS *******************************************************************/
18 
19 /*
20  * These externs should be defined by the user of this library.
21  * They are kept there for reference and ease of usage.
22  */
23 #if 0
24 
25 pSpFileQueueOpen   SpFileQueueOpen   = NULL;
26 pSpFileQueueClose  SpFileQueueClose  = NULL;
27 pSpFileQueueCopy   SpFileQueueCopy   = NULL;
28 pSpFileQueueDelete SpFileQueueDelete = NULL;
29 pSpFileQueueRename SpFileQueueRename = NULL;
30 pSpFileQueueCommit SpFileQueueCommit = NULL;
31 
32 #endif
33 
34 /* EOF */
35