2018-01-06 16:47:37 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2024-11-22 21:45:06 +01:00
|
|
|
SPFILE_EXPORTS SpFileExports = {NULL};
|
2018-01-06 16:47:37 +01:00
|
|
|
|
|
|
|
/* EOF */
|