summaryrefslogtreecommitdiff
path: root/wia/wiadriverex/imgfilter/stdafx.h
blob: bca637ae0ef15ba80335321cf86e9e9067d3eb78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#include <DriverSpecs.h>
_Analysis_mode_(_Analysis_code_type_user_driver_)

#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN     // Exclude rarely-used stuff from Windows headers
#endif
// Windows Header Files:
#include <windows.h>
#include <commctrl.h>
#include <commdlg.h>
#include <windowsx.h>
#include <stdio.h>
#include <tchar.h>
#include <shellapi.h>
#include <shlwapi.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
// WIA headers
#include <wia.h>
// STI headers
#include <sti.h>
#include <strsafe.h>

VOID TRC(LPCTSTR format,...);