Revision: | 368 |
Committed: | 2008-08-23T02:44:00-07:00 (16 years, 9 months ago) by douglas |
Content type: | text/x-c |
File size: | 464 byte(s) |
Log Message: | Rearranged everything else. |
# | Content |
---|---|
1 | // Douglas Thrift's Search Engine Installer |
2 | // |
3 | // Douglas Thrift |
4 | // |
5 | // SearchInstaller.h |
6 | |
7 | #ifndef _SearchInstaller_h_ |
8 | #define _SearchInstaller_h_ |
9 | |
10 | #ifdef _DEBUG |
11 | #pragma warning(disable:4786) |
12 | #endif // _DEBUG |
13 | |
14 | #include <iostream> |
15 | #include <fstream> |
16 | #include <string> |
17 | #include <vector> |
18 | |
19 | using namespace std; |
20 | |
21 | #include <windows.h> |
22 | #include <windowsx.h> |
23 | #include <prsht.h> |
24 | #include <objbase.h> |
25 | #include <shlobj.h> |
26 | |
27 | #include "resource.h" |
28 | |
29 | #endif // _SearchInstaller_h_ |