mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[SHELL32]
* Move clipboard.cpp to the wine folder. * Convert clipboard.cpp into clipboard.c. svn path=/branches/shell-experiments/; revision=65292
This commit is contained in:
parent
0f56f8c10c
commit
4a6b43ac42
2 changed files with 8 additions and 2 deletions
|
@ -17,7 +17,6 @@ include_directories(
|
|||
|
||||
list(APPEND SOURCE
|
||||
CAutoComplete.cpp
|
||||
clipboard.cpp
|
||||
CMenuBand.cpp
|
||||
CMenuDeskBar.cpp
|
||||
CIDLDataObj.cpp
|
||||
|
@ -67,6 +66,7 @@ add_library(shell32 SHARED
|
|||
wine/brsfolder.c
|
||||
wine/changenotify.c
|
||||
wine/classes.c
|
||||
wine/clipboard.c
|
||||
wine/control.c
|
||||
wine/pidl.c
|
||||
wine/shell32_main.c
|
||||
|
|
|
@ -35,7 +35,13 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <shlobj.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||
|
Loading…
Reference in a new issue