author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | 5305ddd8332ebd905ebef3b8365fc0d736858a7a (patch) (side-by-side diff) | |
tree | ba6dc874bdcb00bd2e116b377a92f347ab81a733 /stdafx.h | |
download | dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.zip dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.tar.gz dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/dipstick/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | stdafx.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/stdafx.h b/stdafx.h new file mode 100644 index 0000000..06ef43f --- a/dev/null +++ b/stdafx.h @@ -0,0 +1,36 @@ +// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
+
+#include <afxwin.h> // MFC core and standard components
+#include <afxext.h> // MFC extensions
+#ifndef _AFX_NO_AFXCMN_SUPPORT
+#include <afxcmn.h> // MFC support for Windows 95 Common Controls
+#endif // _AFX_NO_AFXCMN_SUPPORT
+
+#include <afxsock.h> // MFC socket extensions
+
+#include <afxole.h>
+#include <afxtempl.h>
+#include <afxmt.h>
+
+#include <winsock.h>
+#include "shared-code/ms_icmp.h"
+#include "shared-code/ip_icmp.h"
+
+#include "shared-code/kICMP.h"
+#include "shared-code/RegEx.h"
+#include "CrackURL.h"
+
+enum {
+ WM_DNP_ACTIVITYCOUNT = WM_USER+16,
+ WM_DNP_URLPING,
+ WM_DNP_UPDATEHOSTDATA,
+ WM_DNP_HTML
+};
+#include <MMSystem.h>
+// CG: The following line was added by the Windows Multimedia component.
+#pragma comment(lib, "winmm.lib")
|