You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
685 B
32 lines
685 B
//
|
|
// Microsoft Corporation - Copyright 1997
|
|
//
|
|
|
|
//
|
|
// PCH.H - Precompile header
|
|
//
|
|
|
|
#if DBG == 1
|
|
#define DEBUG
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <httpext.h>
|
|
#include <shlwapi.h>
|
|
#include <wininet.h>
|
|
#include "debug.h"
|
|
#include "reflectr.h"
|
|
#include "base.h"
|
|
#include "response.h"
|
|
#include "readdata.h"
|
|
#include "multpars.h"
|
|
#include "textpars.h"
|
|
|
|
#define FILEUPLD_VERSION_MAJOR 1
|
|
#define FILEUPLD_VERSION_MINOR 0
|
|
#define FILEUPLD_DESCRIPTION "Form Submission Reflecter"
|
|
#define FILEUPLD_FILTER_FLAGS SF_NOTIFY_READ_RAW_DATA | SF_NOTIFY_ORDER_DEFAULT
|
|
|
|
// Macros
|
|
#define ARRAYOF( _a ) ( sizeof( _a ) / sizeof( _a[0] ) )
|