Commit 49b43e8f authored by David Hedberg's avatar David Hedberg Committed by Alexandre Julliard

explorerframe: Add a stub of NamespaceTreeControl.

parent ddfab6bb
......@@ -4,9 +4,11 @@ TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = explorerframe.dll
IMPORTS = uuid
C_SRCS = \
explorerframe_main.c
explorerframe_main.c \
nstc.c
RC_SRCS = \
version.rc
......
......@@ -21,10 +21,14 @@
#ifndef __WINE_EXPLORERFRAME_H
#define __WINE_EXPLORERFRAME_H
#include "shlobj.h"
extern HINSTANCE explorerframe_hinstance;
extern LONG EFRAME_refCount;
static inline void EFRAME_LockModule(void) { InterlockedIncrement( &EFRAME_refCount ); }
static inline void EFRAME_UnlockModule(void) { InterlockedDecrement( &EFRAME_refCount ); }
HRESULT NamespaceTreeControl_Constructor(IUnknown *pUnkOuter, REFIID riid, void **ppv);
#endif /* __WINE_EXPLORERFRAME_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment