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
c9eee734
Commit
c9eee734
authored
Jan 23, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Define __WINESRC__ when building programs.
parent
c0f65cc9
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
41 additions
and
18 deletions
+41
-18
Makeprog.rules.in
programs/Makeprog.rules.in
+1
-1
main.c
programs/clock/main.c
+1
-0
wcmdmain.c
programs/cmd/wcmdmain.c
+2
-0
appbar.c
programs/explorer/appbar.c
+3
-3
desktop.c
programs/explorer/desktop.c
+1
-0
explorer.c
programs/explorer/explorer.c
+1
-0
systray.c
programs/explorer/systray.c
+1
-0
main.c
programs/iexplore/main.c
+1
-0
msiexec.c
programs/msiexec/msiexec.c
+1
-0
service.c
programs/msiexec/service.c
+2
-1
dialog.c
programs/notepad/dialog.c
+1
-0
main.c
programs/notepad/main.c
+3
-1
oleview.c
programs/oleview/oleview.c
+2
-0
typelib.c
programs/oleview/typelib.c
+1
-0
main.c
programs/plugplay/main.c
+1
-0
main.c
programs/presentationfontcache/main.c
+1
-0
main.c
programs/progman/main.c
+1
-0
sc.c
programs/sc/sc.c
+1
-0
utils.c
programs/services/utils.c
+1
-0
main.c
programs/spoolsv/main.c
+1
-0
start.c
programs/start/start.c
+2
-2
taskkill.c
programs/taskkill/taskkill.c
+1
-0
main.c
programs/termsv/main.c
+1
-0
main.c
programs/winebrowser/main.c
+1
-0
theme.c
programs/winecfg/theme.c
+2
-0
curses.c
programs/wineconsole/curses.c
+2
-0
dbg.y
programs/winedbg/dbg.y
+0
-3
debug.l
programs/winedbg/debug.l
+0
-3
send.c
programs/winetest/send.c
+1
-1
macro.lex.l
programs/winhlp32/macro.lex.l
+0
-3
winver.c
programs/winver/winver.c
+1
-0
print.c
programs/wordpad/print.c
+1
-0
main.c
programs/wscript/main.c
+1
-0
xcopy.c
programs/xcopy/xcopy.c
+1
-0
No files found.
programs/Makeprog.rules.in
View file @
c9eee734
...
...
@@ -10,7 +10,7 @@
#
DLLFLAGS = @DLLFLAGS@
DEFS = -D
WINE_STRICT_PROTOTYPES -DWINE_NO_UNICODE_MACROS
$(EXTRADEFS)
DEFS = -D
__WINESRC__
$(EXTRADEFS)
ALL_LIBS = $(DELAYIMPORTS:%=-l%) $(IMPORTS:%=-l%) $(EXTRALIBS) -lwine $(LIBPORT) $(LDFLAGS) $(LIBS)
INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(dlldir) $(DESTDIR)$(fakedlldir) $(DESTDIR)$(mandir)/man$(prog_manext)
...
...
programs/clock/main.c
View file @
c9eee734
...
...
@@ -27,6 +27,7 @@
#include "windows.h"
#include "commdlg.h"
#include "shellapi.h"
#include "main.h"
#include "winclock.h"
...
...
programs/cmd/wcmdmain.c
View file @
c9eee734
...
...
@@ -26,7 +26,9 @@
*/
#include "config.h"
#include <time.h>
#include "wcmd.h"
#include "shellapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
cmd
);
...
...
programs/explorer/appbar.c
View file @
c9eee734
...
...
@@ -27,10 +27,10 @@
* TODO: multiple monitor support
*/
#include "windows.h"
#include "shellapi.h"
#include "wine/unicode.h"
#include <windows.h>
#include <wine/debug.h>
#include "wine/debug.h"
#include "explorer_private.h"
#include "wine/list.h"
...
...
programs/explorer/desktop.c
View file @
c9eee734
...
...
@@ -26,6 +26,7 @@
#define OEMRESOURCE
#include <windows.h>
#include <rpc.h>
#include <wine/debug.h>
#include "explorer_private.h"
...
...
programs/explorer/explorer.c
View file @
c9eee734
...
...
@@ -30,6 +30,7 @@
#include <initguid.h>
#include <windows.h>
#include <shellapi.h>
#include <shobjidl.h>
#include <shlobj.h>
#include <shlwapi.h>
...
...
programs/explorer/systray.c
View file @
c9eee734
...
...
@@ -24,6 +24,7 @@
#define _WIN32_IE 0x500
#include <windows.h>
#include <commctrl.h>
#include <shellapi.h>
#include <wine/debug.h>
#include <wine/list.h>
...
...
programs/iexplore/main.c
View file @
c9eee734
...
...
@@ -20,6 +20,7 @@
#include <windows.h>
#include <advpub.h>
#include <ole2.h>
#include <rpcproxy.h>
#include "wine/unicode.h"
...
...
programs/msiexec/msiexec.c
View file @
c9eee734
...
...
@@ -23,6 +23,7 @@
#include <windows.h>
#include <msi.h>
#include <winsvc.h>
#include <objbase.h>
#include <stdio.h>
...
...
programs/msiexec/service.c
View file @
c9eee734
...
...
@@ -20,8 +20,9 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <windows.h>
#include <winsvc.h>
#include "wine/debug.h"
...
...
programs/notepad/dialog.c
View file @
c9eee734
...
...
@@ -25,6 +25,7 @@
#include <assert.h>
#include <stdio.h>
#include <windows.h>
#include <shellapi.h>
#include <commdlg.h>
#include <shlwapi.h>
#include <winternl.h>
...
...
programs/notepad/main.c
View file @
c9eee734
...
...
@@ -22,9 +22,11 @@
*
*/
#include <stdio.h>
#include <windows.h>
#include <commdlg.h>
#include <shellapi.h>
#include <shlwapi.h>
#include <stdio.h>
#include "main.h"
#include "dialog.h"
...
...
programs/oleview/oleview.c
View file @
c9eee734
...
...
@@ -19,6 +19,8 @@
*/
#include "main.h"
#include "commdlg.h"
#include "shellapi.h"
#include "wine/unicode.h"
GLOBALS
globals
;
...
...
programs/oleview/typelib.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
*/
#include "main.h"
#include "commdlg.h"
#include "wine/debug.h"
#include "wine/unicode.h"
...
...
programs/plugplay/main.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "winsvc.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
plugplay
);
...
...
programs/presentationfontcache/main.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "winsvc.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
fontcache
);
...
...
programs/progman/main.c
View file @
c9eee734
...
...
@@ -25,6 +25,7 @@
#define OEMRESOURCE
#include "windows.h"
#include "shellapi.h"
#include "progman.h"
GLOBALS
Globals
;
...
...
programs/sc/sc.c
View file @
c9eee734
...
...
@@ -25,6 +25,7 @@
#include <string.h>
#include <stdlib.h>
#include <windows.h>
#include <winsvc.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
sc
);
...
...
programs/services/utils.c
View file @
c9eee734
...
...
@@ -22,6 +22,7 @@
#include <stdarg.h>
#include <windows.h>
#include <winsvc.h>
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
programs/spoolsv/main.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsvc.h>
#include "wine/debug.h"
...
...
programs/start/start.c
View file @
c9eee734
...
...
@@ -20,11 +20,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#include <winuser.h>
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <shlobj.h>
#include <shellapi.h>
#include <wine/unicode.h>
#include <wine/debug.h>
...
...
programs/taskkill/taskkill.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdlib.h>
#include <windows.h>
#include <psapi.h>
#include <wine/unicode.h>
...
...
programs/termsv/main.c
View file @
c9eee734
...
...
@@ -19,6 +19,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsvc.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
termsv
);
...
...
programs/winebrowser/main.c
View file @
c9eee734
...
...
@@ -45,6 +45,7 @@
#include <windows.h>
#include <shlwapi.h>
#include <urlmon.h>
#include <ddeml.h>
#include <stdio.h>
#include <stdlib.h>
...
...
programs/winecfg/theme.c
View file @
c9eee734
...
...
@@ -41,6 +41,8 @@
#define COBJMACROS
#include <windows.h>
#include <commdlg.h>
#include <shellapi.h>
#include <uxtheme.h>
#include <tmschema.h>
#include <shlobj.h>
...
...
programs/wineconsole/curses.c
View file @
c9eee734
...
...
@@ -55,6 +55,8 @@
#include "wine/library.h"
#include "wine/debug.h"
#undef ERR
#define ERR (-1)
WINE_DEFAULT_DEBUG_CHANNEL
(
curses
);
...
...
programs/winedbg/dbg.y
View file @
c9eee734
...
...
@@ -27,9 +27,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "debugger.h"
#include "wine/exception.h"
...
...
programs/winedbg/debug.l
View file @
c9eee734
...
...
@@ -27,10 +27,7 @@
#include <string.h>
#include <stdarg.h>
#ifndef HAVE_UNISTD_H
#define YY_NO_UNISTD_H
#endif
#include "debugger.h"
#include "dbg.tab.h"
...
...
programs/winetest/send.c
View file @
c9eee734
...
...
@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <winsock.h>
#include <winsock
2
.h>
#include <wininet.h>
#include <stdio.h>
#include <errno.h>
...
...
programs/winhlp32/macro.lex.l
View file @
c9eee734
...
...
@@ -27,10 +27,7 @@
#include <assert.h>
#include <stdarg.h>
#ifndef HAVE_UNISTD_H
#define YY_NO_UNISTD_H
#endif
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
programs/winver/winver.c
View file @
c9eee734
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "windows.h"
#include "shellapi.h"
int
PASCAL
WinMain
(
HINSTANCE
inst
,
HINSTANCE
prev
,
LPSTR
cmdline
,
int
show
)
{
...
...
programs/wordpad/print.c
View file @
c9eee734
...
...
@@ -21,6 +21,7 @@
#include <windows.h>
#include <richedit.h>
#include <commctrl.h>
#include <commdlg.h>
#include "wordpad.h"
...
...
programs/wscript/main.c
View file @
c9eee734
...
...
@@ -24,6 +24,7 @@
#include <winbase.h>
#include <winreg.h>
#include <ole2.h>
#include <shellapi.h>
#include <activscp.h>
#include <initguid.h>
...
...
programs/xcopy/xcopy.c
View file @
c9eee734
...
...
@@ -41,6 +41,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <wine/debug.h>
#include <wine/unicode.h>
...
...
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