mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[EXPLORER]
* Move some definitions in precomp.h svn path=/trunk/; revision=65510
This commit is contained in:
parent
5c6b27436a
commit
198dcf7d19
7 changed files with 13 additions and 16 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue