mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
35 lines
960 B
C
35 lines
960 B
C
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS Setup Library
|
||
|
* FILE: base/setup/lib/fileqsup.c
|
||
|
* PURPOSE: Interfacing with Setup* API File Queue support functions
|
||
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES *****************************************************************/
|
||
|
|
||
|
#include "precomp.h"
|
||
|
#include "fileqsup.h"
|
||
|
|
||
|
#define NDEBUG
|
||
|
#include <debug.h>
|
||
|
|
||
|
/* GLOBALS *******************************************************************/
|
||
|
|
||
|
/*
|
||
|
* These externs should be defined by the user of this library.
|
||
|
* They are kept there for reference and ease of usage.
|
||
|
*/
|
||
|
#if 0
|
||
|
|
||
|
pSpFileQueueOpen SpFileQueueOpen = NULL;
|
||
|
pSpFileQueueClose SpFileQueueClose = NULL;
|
||
|
pSpFileQueueCopy SpFileQueueCopy = NULL;
|
||
|
pSpFileQueueDelete SpFileQueueDelete = NULL;
|
||
|
pSpFileQueueRename SpFileQueueRename = NULL;
|
||
|
pSpFileQueueCommit SpFileQueueCommit = NULL;
|
||
|
|
||
|
#endif
|
||
|
|
||
|
/* EOF */
|