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
402b79a1
Commit
402b79a1
authored
Nov 27, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Porting fixes.
parent
a97c7d2f
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
46 additions
and
8 deletions
+46
-8
computername.c
dlls/kernel/computername.c
+1
-0
fiber.c
dlls/kernel/fiber.c
+3
-0
heap.c
dlls/kernel/heap.c
+1
-0
instr.c
dlls/kernel/instr.c
+3
-0
module.c
dlls/kernel/module.c
+1
-0
process.c
dlls/kernel/process.c
+1
-0
resource16.c
dlls/kernel/resource16.c
+1
-0
string.c
dlls/kernel/string.c
+3
-0
thread.c
dlls/kernel/thread.c
+1
-0
loader.c
dlls/ntdll/loader.c
+3
-0
resource.c
dlls/ntdll/resource.c
+1
-0
rpc_server.c
dlls/rpcrt4/rpc_server.c
+3
-0
resource.c
dlls/version/resource.c
+1
-0
w32sys.c
dlls/win32s/w32sys.c
+1
-0
int25.c
dlls/winedos/int25.c
+1
-0
int26.c
dlls/winedos/int26.c
+1
-0
internet.c
dlls/wininet/internet.c
+1
-0
info.c
dlls/winspool/info.c
+2
-3
xvidmode.c
dlls/x11drv/xvidmode.c
+4
-1
dos_fs.c
files/dos_fs.c
+2
-0
server.h
include/wine/server.h
+0
-1
port.c
libs/wine/port.c
+2
-0
drive.c
programs/winecfg/drive.c
+2
-2
dbg.y
programs/winedbg/dbg.y
+1
-0
debugger.h
programs/winedbg/debugger.h
+0
-1
msc.c
programs/winedbg/msc.c
+2
-0
winedbg.c
programs/winedbg/winedbg.c
+4
-0
No files found.
dlls/kernel/computername.c
View file @
402b79a1
...
...
@@ -21,6 +21,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
...
...
dlls/kernel/fiber.c
View file @
402b79a1
...
...
@@ -21,6 +21,9 @@
* - proper handling of 16-bit stack and signal stack
*/
#include "config.h"
#include "wine/port.h"
#include <setjmp.h>
#include <stdarg.h>
...
...
dlls/kernel/heap.c
View file @
402b79a1
...
...
@@ -21,6 +21,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
...
...
dlls/kernel/instr.c
View file @
402b79a1
...
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "ntstatus.h"
...
...
dlls/kernel/module.c
View file @
402b79a1
...
...
@@ -22,6 +22,7 @@
#include "wine/port.h"
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_SYS_TYPES_H
...
...
dlls/kernel/process.c
View file @
402b79a1
...
...
@@ -37,6 +37,7 @@
#include "module.h"
#include "options.h"
#include "kernel_private.h"
#include "wine/exception.h"
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
dlls/kernel/resource16.c
View file @
402b79a1
...
...
@@ -25,6 +25,7 @@
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
...
...
dlls/kernel/string.c
View file @
402b79a1
...
...
@@ -20,6 +20,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <ctype.h>
#include <stdarg.h>
#include <string.h>
...
...
dlls/kernel/thread.c
View file @
402b79a1
...
...
@@ -41,6 +41,7 @@
#include "module.h"
#include "thread.h"
#include "wine/winbase16.h"
#include "wine/exception.h"
#include "wine/library.h"
#include "wine/pthread.h"
#include "wine/server.h"
...
...
dlls/ntdll/loader.c
View file @
402b79a1
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
...
...
dlls/ntdll/resource.c
View file @
402b79a1
...
...
@@ -26,6 +26,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdlib.h>
...
...
dlls/rpcrt4/rpc_server.c
View file @
402b79a1
...
...
@@ -21,6 +21,9 @@
* - a whole lot
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/version/resource.c
View file @
402b79a1
...
...
@@ -23,6 +23,7 @@
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
...
...
dlls/win32s/w32sys.c
View file @
402b79a1
...
...
@@ -22,6 +22,7 @@
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
...
...
dlls/winedos/int25.c
View file @
402b79a1
...
...
@@ -21,6 +21,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#ifdef HAVE_UNISTD_H
...
...
dlls/winedos/int26.c
View file @
402b79a1
...
...
@@ -21,6 +21,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
dlls/wininet/internet.c
View file @
402b79a1
...
...
@@ -26,6 +26,7 @@
*/
#include "config.h"
#include "wine/port.h"
#define MAXHOSTNAME 100
/* from http.c */
...
...
dlls/winspool/info.c
View file @
402b79a1
...
...
@@ -1073,12 +1073,11 @@ BOOL WINAPI AddJobW(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf,
/*****************************************************************************
* GetPrintProcessorDirectoryA [WINSPOOL.@]
*/
BOOL
WINAPI
GetPrintProcessorDirectoryA
(
LPSTR
server
,
LPSTR
env
iron
,
BOOL
WINAPI
GetPrintProcessorDirectoryA
(
LPSTR
server
,
LPSTR
env
,
DWORD
level
,
LPBYTE
Info
,
DWORD
cbBuf
,
LPDWORD
needed
)
{
FIXME
(
"(%s,%s,%ld,%p,0x%08lx): stub
\n
"
,
server
,
environ
,
level
,
Info
,
cbBuf
);
FIXME
(
"(%s,%s,%ld,%p,0x%08lx): stub
\n
"
,
server
,
env
,
level
,
Info
,
cbBuf
);
return
0
;
}
...
...
dlls/x11drv/xvidmode.c
View file @
402b79a1
...
...
@@ -28,8 +28,9 @@
#define XMD_H
#include "basetsd.h"
#include <X11/extensions/xf86vmode.h>
#
include "x11drv.h"
#
endif
/* HAVE_LIBXXF86VM */
#include "x11drv.h"
#include "x11ddraw.h"
#include "xvidmode.h"
...
...
@@ -40,6 +41,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
xvidmode
);
#ifdef HAVE_LIBXXF86VM
extern
int
usexvidmode
;
static
int
xf86vm_event
,
xf86vm_error
,
xf86vm_major
,
xf86vm_minor
;
...
...
files/dos_fs.c
View file @
402b79a1
...
...
@@ -20,6 +20,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <sys/types.h>
#include <ctype.h>
...
...
@@ -55,6 +56,7 @@
#include "file.h"
#include "winternl.h"
#include "wine/server.h"
#include "wine/exception.h"
#include "excpt.h"
#include "smb.h"
...
...
include/wine/server.h
View file @
402b79a1
...
...
@@ -26,7 +26,6 @@
#include <winbase.h>
#include <winreg.h>
#include <winternl.h>
#include <wine/exception.h>
#include <wine/server_protocol.h>
/* client communication functions */
...
...
libs/wine/port.c
View file @
402b79a1
...
...
@@ -169,7 +169,9 @@ void wine_set_pe_load_area( void *base, size_t size )
*/
void
wine_free_pe_load_area
(
void
)
{
#ifdef HAVE_MMAP
if
(
pe_area
)
munmap
(
pe_area
,
pe_area_size
);
#endif
pe_area
=
NULL
;
}
...
...
programs/winecfg/drive.c
View file @
402b79a1
...
...
@@ -88,7 +88,7 @@ void setDriveValue(char letter, const char *valueName, const char *newValue) {
/* copies a drive configuration branch */
void
copyDrive
(
char
srcLetter
,
char
destLetter
)
{
char
*
driveSection
=
alloca
(
strlen
(
"Drive X"
)
+
1
)
;
char
driveSection
[
sizeof
(
"Drive X"
)]
;
char
*
path
,
*
label
,
*
type
,
*
serial
,
*
fs
;
WINE_TRACE
(
"srcLetter=%c, destLetter=%c
\n
"
,
srcLetter
,
destLetter
);
...
...
@@ -115,7 +115,7 @@ void copyDrive(char srcLetter, char destLetter) {
}
void
removeDrive
(
char
letter
)
{
char
*
driveSection
=
alloca
(
strlen
(
"Drive X"
)
+
1
)
;
char
driveSection
[
sizeof
(
"Drive X"
)]
;
sprintf
(
driveSection
,
"Drive %c"
,
letter
);
addTransaction
(
driveSection
,
NULL
,
ACTION_REMOVE
,
NULL
);
}
...
...
programs/winedbg/dbg.y
View file @
402b79a1
...
...
@@ -22,6 +22,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
programs/winedbg/debugger.h
View file @
402b79a1
...
...
@@ -27,7 +27,6 @@
#include "windef.h"
#include "winbase.h"
#include "ntstatus.h"
#include "wine/exception.h"
#ifdef __i386__
#define STEP_FLAG 0x00000100
/* single step flag */
...
...
programs/winedbg/msc.c
View file @
402b79a1
...
...
@@ -30,6 +30,8 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
...
...
programs/winedbg/winedbg.c
View file @
402b79a1
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
...
...
@@ -31,6 +34,7 @@
#include "winuser.h"
#include "winternl.h"
#include "excpt.h"
#include "wine/exception.h"
#include "wine/library.h"
#include "winnls.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