Author: gadamopoulos
Date: Wed Aug 19 13:55:15 2015
New Revision: 68770
URL:
http://svn.reactos.org/svn/reactos?rev=68770&view=rev
Log:
Add two files that I missed
Added:
trunk/reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt (with props)
trunk/reactos/dll/win32/shell32/shelldesktop/shelldesktop.h (with props)
Added: trunk/reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shelldes…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt (added)
+++ trunk/reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt [iso-8859-1] Wed Aug 19
13:55:15 2015
@@ -0,0 +1,13 @@
+PROJECT(SHELL)
+
+set_cpp(WITH_RUNTIME)
+
+add_definitions(-DUNICODE -D_UNICODE)
+
+include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
+
+list(APPEND SOURCE
+ CDesktopBrowser.cpp
+ dde.cpp)
+
+add_library(shelldesktop ${SOURCE})
Propchange: trunk/reactos/dll/win32/shell32/shelldesktop/CMakeLists.txt
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/reactos/dll/win32/shell32/shelldesktop/shelldesktop.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shelldes…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shelldesktop/shelldesktop.h (added)
+++ trunk/reactos/dll/win32/shell32/shelldesktop/shelldesktop.h [iso-8859-1] Wed Aug 19
13:55:15 2015
@@ -0,0 +1,36 @@
+
+#include <stdio.h>
+#include <tchar.h>
+
+#define WIN32_NO_STATUS
+#define _INC_WINDOWS
+#define COM_NO_WINDOWS_H
+
+#define COBJMACROS
+
+#include <windef.h>
+#include <winbase.h>
+#include <winreg.h>
+#include <wingdi.h>
+#include <winnls.h>
+#include <wincon.h>
+#include <shellapi.h>
+#include <shlobj.h>
+#include <shlobj_undoc.h>
+#include <shlwapi.h>
+#include <shlguid_undoc.h>
+#include <strsafe.h>
+#include <browseui_undoc.h>
+
+#include <atlbase.h>
+#include <atlcom.h>
+#include <atlwin.h>
+#include <undocshell.h>
+#include <undocuser.h>
+
+#include <shellutils.h>
+#include "../shresdef.h"
+
+#include <wine/debug.h>
+
+extern "C" HINSTANCE shell32_hInstance;
Propchange: trunk/reactos/dll/win32/shell32/shelldesktop/shelldesktop.h
------------------------------------------------------------------------------
svn:eol-style = native