[EXPLORER]

* Move some definitions in precomp.h

svn path=/trunk/; revision=65510
This commit is contained in:
Giannis Adamopoulos 2014-11-27 21:11:29 +00:00
parent 5c6b27436a
commit 198dcf7d19
7 changed files with 13 additions and 16 deletions

View file

@ -20,9 +20,6 @@
#include "precomp.h" #include "precomp.h"
HANDLE WINAPI _SHCreateDesktop(IShellDesktopTray *ShellDesk);
BOOL WINAPI _SHDesktopMessageLoop(HANDLE hDesktop);
class CDesktopThread class CDesktopThread
{ {
HANDLE hEvent; HANDLE hEvent;

View file

@ -21,9 +21,6 @@
#include "precomp.h" #include "precomp.h"
#include <browseui_undoc.h> #include <browseui_undoc.h>
DWORD WINAPI _WinList_Init(void);
void WINAPI _ShellDDEInit(BOOL bInit);
HINSTANCE hExplorerInstance; HINSTANCE hExplorerInstance;
HMODULE hUser32; HMODULE hUser32;
HANDLE hProcessHeap; HANDLE hProcessHeap;

View file

@ -148,8 +148,11 @@ IN LPCTSTR lpValue);
* rshell.c * rshell.c
*/ */
HRESULT WINAPI HRESULT WINAPI _CStartMenu_Constructor(REFIID riid, void **ppv);
_CStartMenu_Constructor(REFIID riid, void **ppv); HANDLE WINAPI _SHCreateDesktop(IShellDesktopTray *ShellDesk);
BOOL WINAPI _SHDesktopMessageLoop(HANDLE hDesktop);
DWORD WINAPI _WinList_Init(void);
void WINAPI _ShellDDEInit(BOOL bInit);
/* /*
* traywnd.c * traywnd.c
@ -231,6 +234,12 @@ SaveSettingDword(IN PCTSTR pszKeyName,
IN PCTSTR pszValueName, IN PCTSTR pszValueName,
IN DWORD dwValue); IN DWORD dwValue);
/*
* shellservice.cpp
*/
HRESULT InitShellServices(HDPA * phdpa);
HRESULT ShutdownShellServices(HDPA hdpa);
/* /*
* startup.cpp * startup.cpp
*/ */

View file

@ -20,9 +20,6 @@
#include "precomp.h" #include "precomp.h"
extern HRESULT InitShellServices(HDPA * phdpa);
extern HRESULT ShutdownShellServices(HDPA hdpa);
static int CALLBACK InitializeAllCallback(void* pItem, void* pData) static int CALLBACK InitializeAllCallback(void* pItem, void* pData)
{ {
IOleCommandTarget * pOct = reinterpret_cast<IOleCommandTarget *>(pItem); IOleCommandTarget * pOct = reinterpret_cast<IOleCommandTarget *>(pItem);

View file

@ -40,8 +40,6 @@
#include "precomp.h" #include "precomp.h"
EXTERN_C HRESULT WINAPI SHCreateSessionKey(REGSAM samDesired, PHKEY phKey);
#define INVALID_RUNCMD_RETURN -1 #define INVALID_RUNCMD_RETURN -1
/** /**
* This function runs the specified command in the specified dir. * This function runs the specified command in the specified dir.

View file

@ -21,9 +21,6 @@
#include "precomp.h" #include "precomp.h"
#include <commoncontrols.h> #include <commoncontrols.h>
extern HRESULT InitShellServices(HDPA * phdpa);
extern HRESULT ShutdownShellServices(HDPA hdpa);
HRESULT TrayWindowCtxMenuCreator(ITrayWindow * TrayWnd, IN HWND hWndOwner, IContextMenu ** ppCtxMenu); HRESULT TrayWindowCtxMenuCreator(ITrayWindow * TrayWnd, IN HWND hWndOwner, IContextMenu ** ppCtxMenu);
#define WM_APP_TRAYDESTROY (WM_APP + 0x100) #define WM_APP_TRAYDESTROY (WM_APP + 0x100)

View file

@ -649,6 +649,8 @@ DWORD WINAPI WinList_Init(void);
IStream* WINAPI SHGetViewStream(LPCITEMIDLIST, DWORD, LPCTSTR, LPCTSTR, LPCTSTR); IStream* WINAPI SHGetViewStream(LPCITEMIDLIST, DWORD, LPCTSTR, LPCTSTR, LPCTSTR);
EXTERN_C HRESULT WINAPI SHCreateSessionKey(REGSAM samDesired, PHKEY phKey);
/***************************************************************************** /*****************************************************************************
* Shell Link * Shell Link
*/ */