[NETSHELL]

* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61799
This commit is contained in:
Amine Khaldi 2014-01-25 10:59:27 +00:00
parent b41d73f835
commit 52f491e006
5 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,5 @@
#pragma once
typedef struct tagGUIDStruct typedef struct tagGUIDStruct
{ {
BYTE dummy; /* offset 01 is unknown */ BYTE dummy; /* offset 01 is unknown */

View file

@ -1,5 +1,8 @@
#include "precomp.h" #include "precomp.h"
#include <netcfgx.h>
#include <netcfgn.h>
/// CLASSID /// CLASSID
/// {7007ACC5-3202-11D1-AAD2-00805FC1270E} /// {7007ACC5-3202-11D1-AAD2-00805FC1270E}
/// open network properties and wlan properties /// open network properties and wlan properties

View file

@ -1,5 +1,7 @@
#include "precomp.h" #include "precomp.h"
#include <winsock.h>
/// CLSID /// CLSID
/// HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{7007ACCF-3202-11D1-AAD2-00805FC1270E} /// HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{7007ACCF-3202-11D1-AAD2-00805FC1270E}
// IID B722BCCB-4E68-101B-A2BC-00AA00404770 // IID B722BCCB-4E68-101B-A2BC-00AA00404770

View file

@ -1,5 +1,7 @@
#include "precomp.h" #include "precomp.h"
#include <olectl.h>
HINSTANCE netshell_hInstance; HINSTANCE netshell_hInstance;
const GUID CLSID_LANConnectUI = {0x7007ACC5, 0x3202, 0x11D1, {0xAA, 0xD2, 0x00, 0x80, 0x5F, 0xC1, 0x27, 0x0E}}; const GUID CLSID_LANConnectUI = {0x7007ACC5, 0x3202, 0x11D1, {0xAA, 0xD2, 0x00, 0x80, 0x5F, 0xC1, 0x27, 0x0E}};
const GUID CLSID_NetworkConnections = {0x7007ACC7, 0x3202, 0x11D1, {0xAA, 0xD2, 0x00, 0x80, 0x5F, 0xC1, 0x27, 0x0E}}; const GUID CLSID_NetworkConnections = {0x7007ACC7, 0x3202, 0x11D1, {0xAA, 0xD2, 0x00, 0x80, 0x5F, 0xC1, 0x27, 0x0E}};

View file

@ -1,26 +1,23 @@
#ifndef _PRECOMP_H__ #ifndef _PRECOMP_H__
#define _PRECOMP_H__ #define _PRECOMP_H__
#include <stdio.h>
#define WIN32_NO_STATUS #define WIN32_NO_STATUS
#define _INC_WINDOWS #define _INC_WINDOWS
#define COM_NO_WINDOWS_H #define COM_NO_WINDOWS_H
#include <stdio.h>
#include <windef.h> #include <windef.h>
#include <winreg.h>
#include <winbase.h> #include <winbase.h>
#include <winreg.h>
#include <winnls.h> #include <winnls.h>
#include <winsock2.h>
#include <shlwapi.h> #include <shlwapi.h>
#include <shlobj.h> #include <shlobj.h>
#include <shellapi.h> #include <shellapi.h>
#include <olectl.h>
#include <iphlpapi.h> #include <iphlpapi.h>
#include <setupapi.h> #include <setupapi.h>
#include <devguid.h> #include <devguid.h>
#include <netcon.h> #include <netcon.h>
#include <netcfgx.h>
#include <netcfgn.h>
#include <wine/debug.h> #include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(shell); WINE_DEFAULT_DEBUG_CHANNEL(shell);
@ -60,7 +57,6 @@ extern HINSTANCE netshell_hInstance;
extern const GUID CLSID_NetworkConnections; extern const GUID CLSID_NetworkConnections;
extern const GUID CLSID_LANConnectUI; extern const GUID CLSID_LANConnectUI;
extern const GUID CLSID_LanConnectStatusUI; extern const GUID CLSID_LanConnectStatusUI;
extern const GUID GUID_DEVCLASS_NET;
/* shfldr_netconnect.c */ /* shfldr_netconnect.c */
HRESULT ShowNetConnectionProperties(INetConnection * pNetConnect, HWND hwnd); HRESULT ShowNetConnectionProperties(INetConnection * pNetConnect, HWND hwnd);
@ -91,4 +87,4 @@ HRESULT WINAPI LanConnectStatusUI_Constructor(IUnknown *pUnkOuter, REFIID riid,
#include "enumlist.h" #include "enumlist.h"
#endif #endif /* _PRECOMP_H__ */