mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
[BROWSEUI]
* Remove one time inclusions from the main header and put them back where they belong. * Set the default debugging channel globally through the main header. * Improve the main header. CORE-7716 svn path=/trunk/; revision=61743
This commit is contained in:
parent
5192d67c43
commit
63be6007bd
16 changed files with 20 additions and 18 deletions
|
@ -21,8 +21,6 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
||||
|
||||
void CACLMulti::release_obj(struct ACLMultiSublist *obj)
|
||||
{
|
||||
obj->punk->Release();
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
/*
|
||||
Implements the navigation band of the cabinet window
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -21,7 +21,9 @@
|
|||
/*
|
||||
This class handles the combo box of the address band.
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
TODO:
|
||||
Add auto completion support
|
||||
|
|
|
@ -24,6 +24,7 @@ Used by the address band to dispatch navigation changes to the main browser obje
|
|||
TODO:
|
||||
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
CBandProxy::CBandProxy()
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
||||
|
||||
#ifndef ASSERT
|
||||
#define ASSERT(cond) \
|
||||
if (!(cond)) \
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
||||
|
||||
CBandSiteMenu::CBandSiteMenu()
|
||||
{
|
||||
}
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
/*
|
||||
This class knows how to contain base bar site in a cabinet window.
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Base bar that contains a vertical or horizontal explorer band. It also
|
||||
provides resizing abilities.
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Implements the logo band of a cabinet window. Most remarkable feature is the
|
||||
animation.
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
||||
|
||||
class CBrowseUIModule : public CComModule
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Implements a class that knows how to hold and manage the menu band, brand band,
|
||||
toolbar, and address band for an explorer window
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
// navigation controls and menubar just send a message to parent window
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winreg.h>
|
||||
#include <wingdi.h>
|
||||
#include <winnls.h>
|
||||
#include <wincon.h>
|
||||
#include <shellapi.h>
|
||||
#include <shlobj.h>
|
||||
#include <tlogstg.h>
|
||||
#include <shlobj_undoc.h>
|
||||
|
@ -22,7 +20,6 @@
|
|||
#include <exdispid.h>
|
||||
#include <shlwapi.h>
|
||||
#include <shlwapi_undoc.h>
|
||||
#include <htiframe.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
#include "resource.h"
|
||||
|
@ -38,5 +35,5 @@
|
|||
#include "commonbrowser.h"
|
||||
#include "globalfoldersettings.h"
|
||||
#include "regtreeoptions.h"
|
||||
#include "newatlinterfaces.h"
|
||||
//#include "utility.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
||||
|
|
|
@ -20,6 +20,11 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
#include <shellapi.h>
|
||||
#include <htiframe.h>
|
||||
|
||||
#include "newatlinterfaces.h"
|
||||
|
||||
/*
|
||||
TODO:
|
||||
**Provide implementation of new and delete that use LocalAlloc
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
/*
|
||||
Implements the toolbar band of a cabinet window
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -40,6 +40,7 @@ TODO:
|
|||
Implement Revert
|
||||
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
class CTravelEntry :
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
void *operator new(size_t size)
|
||||
|
@ -10,4 +9,3 @@ void operator delete(void *p)
|
|||
{
|
||||
LocalFree(p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue