mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NETSHELL]
* Set the default debugging channel globally through the main header. CORE-7716 svn path=/trunk/; revision=61425
This commit is contained in:
parent
13ceeb7415
commit
01e4efc7b4
8 changed files with 2 additions and 14 deletions
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
class CNetshellClassFactory :
|
||||
public IClassFactory
|
||||
{
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
typedef struct tagINetConnectionItem
|
||||
{
|
||||
struct tagINetConnectionItem * Next;
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||
|
||||
/**************************************************************************
|
||||
* AddToEnumList()
|
||||
*/
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
/// CLASSID
|
||||
/// {7007ACC5-3202-11D1-AAD2-00805FC1270E}
|
||||
/// open network properties and wlan properties
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
/// CLSID
|
||||
/// HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{7007ACCF-3202-11D1-AAD2-00805FC1270E}
|
||||
// IID B722BCCB-4E68-101B-A2BC-00AA00404770
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
HINSTANCE netshell_hInstance;
|
||||
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}};
|
||||
|
|
|
@ -21,7 +21,9 @@
|
|||
#include <netcon.h>
|
||||
#include <netcfgx.h>
|
||||
#include <netcfgn.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
||||
|
||||
#define MAX_PROPERTY_SHEET_PAGE (10)
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in a new issue