Author: akhaldi Date: Thu Dec 26 13:02:46 2013 New Revision: 61425
URL: http://svn.reactos.org/svn/reactos?rev=61425&view=rev Log: [NETSHELL] * Set the default debugging channel globally through the main header. CORE-7716
Modified: trunk/reactos/dll/win32/netshell/classfactory.cpp trunk/reactos/dll/win32/netshell/connectmanager.cpp trunk/reactos/dll/win32/netshell/enumlist.cpp trunk/reactos/dll/win32/netshell/lanconnectui.cpp trunk/reactos/dll/win32/netshell/lanstatusui.cpp trunk/reactos/dll/win32/netshell/netshell.cpp trunk/reactos/dll/win32/netshell/precomp.h trunk/reactos/dll/win32/netshell/shfldr_netconnect.cpp
Modified: trunk/reactos/dll/win32/netshell/classfactory.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/classfac... ============================================================================== --- trunk/reactos/dll/win32/netshell/classfactory.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/classfactory.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL (shell);
class CNetshellClassFactory : public IClassFactory
Modified: trunk/reactos/dll/win32/netshell/connectmanager.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/connectm... ============================================================================== --- trunk/reactos/dll/win32/netshell/connectmanager.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/connectmanager.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL (shell);
typedef struct tagINetConnectionItem {
Modified: trunk/reactos/dll/win32/netshell/enumlist.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/enumlist... ============================================================================== --- trunk/reactos/dll/win32/netshell/enumlist.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/enumlist.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL(shell);
/************************************************************************** * AddToEnumList()
Modified: trunk/reactos/dll/win32/netshell/lanconnectui.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/lanconne... ============================================================================== --- trunk/reactos/dll/win32/netshell/lanconnectui.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/lanconnectui.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL (shell);
/// CLASSID /// {7007ACC5-3202-11D1-AAD2-00805FC1270E}
Modified: trunk/reactos/dll/win32/netshell/lanstatusui.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/lanstatu... ============================================================================== --- trunk/reactos/dll/win32/netshell/lanstatusui.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/lanstatusui.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL (shell);
/// CLSID /// HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID{7007ACCF-3202-11D1-AAD2-00805FC1270E}
Modified: trunk/reactos/dll/win32/netshell/netshell.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/netshell... ============================================================================== --- trunk/reactos/dll/win32/netshell/netshell.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/netshell.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -1,6 +1,4 @@ #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}};
Modified: trunk/reactos/dll/win32/netshell/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/precomp.... ============================================================================== --- trunk/reactos/dll/win32/netshell/precomp.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/precomp.h [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -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"
Modified: trunk/reactos/dll/win32/netshell/shfldr_netconnect.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netshell/shfldr_n... ============================================================================== --- trunk/reactos/dll/win32/netshell/shfldr_netconnect.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/netshell/shfldr_netconnect.cpp [iso-8859-1] Thu Dec 26 13:02:46 2013 @@ -19,8 +19,6 @@ */
#include "precomp.h" - -WINE_DEFAULT_DEBUG_CHANNEL (shell);
#define MAX_PROPERTY_SHEET_PAGE (10)