mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
[HLINK]
* Move some inclusions to the main header. * Set the default debugging channel globally through the main header. * Remove inclusions and definitions that already exist in the main header. CORE-7716 svn path=/trunk/; revision=61367
This commit is contained in:
parent
570cbd0768
commit
b975b24103
5 changed files with 6 additions and 22 deletions
|
@ -20,11 +20,8 @@
|
|||
|
||||
#include "hlink_private.h"
|
||||
|
||||
#include <wine/debug.h>
|
||||
#include <wine/list.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(hlink);
|
||||
|
||||
struct link_entry
|
||||
{
|
||||
struct list entry;
|
||||
|
|
|
@ -18,11 +18,6 @@
|
|||
|
||||
#include "hlink_private.h"
|
||||
|
||||
#include <wine/debug.h>
|
||||
//#include "wine/unicode.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(hlink);
|
||||
|
||||
typedef struct {
|
||||
IUnknown IUnknown_inner;
|
||||
IAuthenticate IAuthenticate_iface;
|
||||
|
|
|
@ -22,11 +22,6 @@
|
|||
|
||||
#include <winreg.h>
|
||||
#include <rpcproxy.h>
|
||||
#include <hlguids.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(hlink);
|
||||
|
||||
static HINSTANCE instance;
|
||||
|
||||
|
|
|
@ -16,23 +16,25 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
//#include "winerror.h"
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winuser.h"
|
||||
#include <ole2.h>
|
||||
#include <hlink.h>
|
||||
#include <hlguids.h>
|
||||
|
||||
#include <wine/unicode.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(hlink);
|
||||
|
||||
extern HRESULT HLink_Constructor(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
|
||||
extern HRESULT HLinkBrowseContext_Constructor(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
|
||||
|
||||
|
|
|
@ -21,11 +21,6 @@
|
|||
#include "hlink_private.h"
|
||||
|
||||
#include <shellapi.h>
|
||||
#include <hlguids.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(hlink);
|
||||
|
||||
#define HLINK_SAVE_MAGIC 0x00000002
|
||||
#define HLINK_SAVE_MONIKER_PRESENT 0x01
|
||||
|
|
Loading…
Reference in a new issue