Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
197f4059
Commit
197f4059
authored
Aug 07, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: winres.h no longer exists in PSDK, fix winresrc.h includes.
parent
a15b9fb8
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
58 additions
and
50 deletions
+58
-50
Makefile.in
include/Makefile.in
+0
-1
winres.h
include/winres.h
+0
-25
winresrc.h
include/winresrc.h
+4
-4
rsrc.rc
programs/clock/rsrc.rc
+2
-1
wcmdrc.rc
programs/cmd/wcmdrc.rc
+3
-0
cmdlgr.rc
programs/cmdlgtst/cmdlgr.rc
+4
-1
rsrc.rc
programs/net/rsrc.rc
+2
-1
rsrc.rc
programs/oleview/rsrc.rc
+3
-1
rsrc.rc
programs/progman/rsrc.rc
+3
-1
rsrc.rc
programs/regedit/rsrc.rc
+3
-1
rsrc.rc
programs/start/rsrc.rc
+2
-1
taskmgr.rc
programs/taskmgr/taskmgr.rc
+4
-1
rsrc.rc
programs/uninstaller/rsrc.rc
+3
-1
viewrc.rc
programs/view/viewrc.rc
+2
-1
winecfg.rc
programs/winecfg/winecfg.rc
+2
-2
rsrc.rc
programs/winefile/rsrc.rc
+3
-1
rsrc.rc
programs/winemine/rsrc.rc
+3
-1
resource.h
programs/winetest/resource.h
+2
-0
winetest.rc
programs/winetest/winetest.rc
+4
-2
rsrc.rc
programs/winhelp/rsrc.rc
+2
-1
rsrc.rc
programs/wordpad/rsrc.rc
+3
-1
rsrc.rc
programs/write/rsrc.rc
+2
-1
rsrc.rc
programs/xcopy/rsrc.rc
+2
-1
No files found.
include/Makefile.in
View file @
197f4059
...
@@ -378,7 +378,6 @@ SRCDIR_INCLUDES = \
...
@@ -378,7 +378,6 @@ SRCDIR_INCLUDES = \
winnt.h
\
winnt.h
\
winperf.h
\
winperf.h
\
winreg.h
\
winreg.h
\
winres.h
\
winresrc.h
\
winresrc.h
\
winscard.h
\
winscard.h
\
winsmcrd.h
\
winsmcrd.h
\
...
...
include/winres.h
deleted
100644 → 0
View file @
a15b9fb8
/*
* Copyright (C) 2000 Francois Gouget
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <winresrc.h>
#ifdef IDC_STATIC
#undef IDC_STATIC
#endif
#define IDC_STATIC (-1)
include/winresrc.h
View file @
197f4059
...
@@ -35,10 +35,10 @@
...
@@ -35,10 +35,10 @@
#define _WIN32_WINNT 0x0500
#define _WIN32_WINNT 0x0500
#endif
#endif
#include <winuser.h>
/* FIXME: #include <winuser.rh> */
#include <commctrl.h>
/* FIXME: #include <commctrl.rh> */
#include <dde.h>
/* FIXME: #include <dde.rh> */
#include <winnt.h>
/* FIXME: #include <winnt.rh> */
#include <dlgs.h>
#include <dlgs.h>
#include <winver.h>
#include <winver.h>
...
...
programs/clock/rsrc.rc
View file @
197f4059
...
@@ -18,7 +18,8 @@
...
@@ -18,7 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "clock_res.h"
#include "clock_res.h"
...
...
programs/cmd/wcmdrc.rc
View file @
197f4059
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windef.h>
#include <winuser.h>
#include "wcmd.h"
#include "wcmd.h"
#include "Cs.rc"
#include "Cs.rc"
...
...
programs/cmdlgtst/cmdlgr.rc
View file @
197f4059
...
@@ -18,7 +18,10 @@
...
@@ -18,7 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include <dlgs.h>
#include "cmdlgtst.h"
#include "cmdlgtst.h"
#include "Cs.rc"
#include "Cs.rc"
...
...
programs/net/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "resources.h"
#include "resources.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
...
...
programs/oleview/rsrc.rc
View file @
197f4059
...
@@ -18,7 +18,9 @@
...
@@ -18,7 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
#include "De.rc"
#include "De.rc"
...
...
programs/progman/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,9 @@
...
@@ -16,7 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "progman.h"
#include "progman.h"
#include "accel.rc"
#include "accel.rc"
...
...
programs/regedit/rsrc.rc
View file @
197f4059
...
@@ -18,7 +18,9 @@
...
@@ -18,7 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include "windows.h"
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
/* define language neutral resources */
/* define language neutral resources */
...
...
programs/start/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "resources.h"
#include "resources.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
...
...
programs/taskmgr/taskmgr.rc
View file @
197f4059
...
@@ -19,7 +19,10 @@
...
@@ -19,7 +19,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include <commctrl.h>
#include "resource.h"
#include "resource.h"
/* Language resources */
/* Language resources */
...
...
programs/uninstaller/rsrc.rc
View file @
197f4059
...
@@ -22,7 +22,9 @@
...
@@ -22,7 +22,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
#include "Bg.rc"
#include "Bg.rc"
#include "Cs.rc"
#include "Cs.rc"
...
...
programs/view/viewrc.rc
View file @
197f4059
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "resource.h"
#include "resource.h"
#include "Cs.rc"
#include "Cs.rc"
...
...
programs/winecfg/winecfg.rc
View file @
197f4059
...
@@ -20,12 +20,12 @@
...
@@ -20,12 +20,12 @@
*
*
*/
*/
#include "config.h"
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "wingdi.h"
#include "wingdi.h"
#include "winnls.h"
#include "winnls.h"
#include "winresrc.h"
#include "winuser.h"
#include "commctrl.h"
#include "resource.h"
#include "resource.h"
#include "Bg.rc"
#include "Bg.rc"
...
...
programs/winefile/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,9 @@
...
@@ -16,7 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
/* define language neutral resources */
/* define language neutral resources */
...
...
programs/winemine/rsrc.rc
View file @
197f4059
...
@@ -19,7 +19,9 @@
...
@@ -19,7 +19,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
#include "Cs.rc"
#include "Cs.rc"
...
...
programs/winetest/resource.h
View file @
197f4059
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#define IDD_ABOUT 101
#define IDD_ABOUT 101
#define IDD_TAG 102
#define IDD_TAG 102
#define IDC_STATIC -1
#define IDC_ST0 1000
#define IDC_ST0 1000
#define IDC_PB0 1001
#define IDC_PB0 1001
#define IDC_ST1 1002
#define IDC_ST1 1002
...
...
programs/winetest/winetest.rc
View file @
197f4059
...
@@ -18,8 +18,10 @@
...
@@ -18,8 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winres.h>
#include <winuser.h>
#include <commctrl.h>
#include "resource.h"
#include "resource.h"
IDD_TAG DIALOG 0, 0, 150, 65
IDD_TAG DIALOG 0, 0, 150, 65
...
...
programs/winhelp/rsrc.rc
View file @
197f4059
...
@@ -19,7 +19,8 @@
...
@@ -19,7 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "winhelp.h"
#include "winhelp.h"
#include "winhelp_res.h"
#include "winhelp_res.h"
...
...
programs/wordpad/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,9 @@
...
@@ -16,7 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#include "resource.h"
MAINACCELTABLE ACCELERATORS
MAINACCELTABLE ACCELERATORS
...
...
programs/write/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "resources.h"
#include "resources.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
...
...
programs/xcopy/rsrc.rc
View file @
197f4059
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <windows.h>
#include <windef.h>
#include "xcopy.h"
#include "xcopy.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment