summaryrefslogtreecommitdiff
path: root/network/wlan/ihvsampleui/precomp.h
diff options
context:
space:
mode:
authorDave Wilson <[email protected]>2015-03-17 19:50:07 -0700
committerDave Wilson <[email protected]>2015-03-17 19:50:07 -0700
commit97cf5197cf5b882b2c689d8dc2b555f2edf8f418 (patch)
tree46f3701832d70b420eb0fc0eb93261f9da45db3f /network/wlan/ihvsampleui/precomp.h
parentef1905bf1e8825bb31120dfb27e0daf3154d859a (diff)
Initial publish
Diffstat (limited to 'network/wlan/ihvsampleui/precomp.h')
-rw-r--r--network/wlan/ihvsampleui/precomp.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/network/wlan/ihvsampleui/precomp.h b/network/wlan/ihvsampleui/precomp.h
new file mode 100644
index 00000000..1037884d
--- /dev/null
+++ b/network/wlan/ihvsampleui/precomp.h
@@ -0,0 +1,43 @@
+//
+// Copyright (C) Microsoft Corporation 2005
+// IHV UI Extension sample
+//
+
+#pragma once
+
+#include <driverspecs.h>
+_Analysis_mode_(_Analysis_code_type_user_code_)
+
+#include <shlobj.h>
+#include <windows.h>
+#include <objbase.h>
+#include <unknwn.h>
+#include <strsafe.h>
+#include <assert.h>
+#include <wlanihv.h>
+
+// MIDL generated
+#include "ihvsample.h"
+
+#include "iunk.h"
+#include "resource.h"
+#include "utils.h"
+#include "IHVRegistryHelper.h"
+#include "IHVSampleExtUI.h"
+#include "IHVSampleProfile.h"
+#include "IHVSampleExtUICon.h"
+#include "IHVSampleExtUISec.h"
+#include "IHVSampleExtUIKey.h"
+#include "IHVClassFactory.h"
+#include <new>
+
+const GUID GUID_SAMPLE_IHVUI_CLSID =
+{ 0x4a01f9f9, 0x6012, 0x4343, { 0xa8, 0xc4, 0x10, 0xb5, 0xdf, 0x32, 0x67, 0x2a } };
+
+
+#define IHV_SAMPLE_IHV_NAME L"IHV"
+
+#define BAIL_ON_FAILURE( _hr ) if (FAILED(_hr)) goto error;
+#define BAIL( ) goto error;
+#define SYS_FREE_STRING( _s ) if ( _s ) { SysFreeString( _s ); (_s) = NULL;}
+