Rev | Line | |
---|
[21588] | 1 | // stdafx.h : include file for standard system include files,
|
---|
| 2 | // or project specific include files that are used frequently, but
|
---|
| 3 | // are changed infrequently
|
---|
| 4 | //
|
---|
| 5 |
|
---|
| 6 | #ifdef _MSC_VER
|
---|
| 7 | #pragma once
|
---|
| 8 | #endif
|
---|
| 9 |
|
---|
| 10 | #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
|
---|
| 11 | #define _WIN32_IE 0x0600
|
---|
| 12 | #endif
|
---|
| 13 |
|
---|
| 14 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
---|
| 15 |
|
---|
| 16 | // Windows Header Files:
|
---|
| 17 | #include <windows.h>
|
---|
| 18 | #include <Windowsx.h>
|
---|
| 19 | #include <commctrl.h>
|
---|
| 20 | #include <Shellapi.h>
|
---|
| 21 | #include <Shlwapi.h>
|
---|
| 22 |
|
---|
| 23 | // C RunTime Header Files
|
---|
| 24 | #include <stdlib.h>
|
---|
| 25 | #include <malloc.h>
|
---|
| 26 | #include <memory.h>
|
---|
| 27 | #include <tchar.h>
|
---|
| 28 | #include <stdio.h>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.