Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f359895d
Commit
f359895d
authored
Oct 02, 2001
by
Andreas Mohr
Committed by
Alexandre Julliard
Oct 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Yet another documentation/message text patch.
parent
e145bde6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
8 deletions
+24
-8
configure
configure
+0
-0
configure.in
configure.in
+1
-0
drive.c
files/drive.c
+1
-1
profile.c
files/profile.c
+1
-1
module.c
loader/module.c
+1
-1
pe_image.c
loader/pe_image.c
+2
-2
environ.c
memory/environ.c
+15
-0
winelauncher.in
tools/winelauncher.in
+2
-2
device.c
win32/device.c
+1
-1
No files found.
configure
View file @
f359895d
This diff is collapsed.
Click to expand it.
configure.in
View file @
f359895d
...
...
@@ -159,6 +159,7 @@ then
dnl NOTE: autoconf does not allow commas inside the third
dnl parameter to AC_CHECK_HEADERS, due to some quoting
dnl magic it does.
echo "Install the following packages:"
echo "Red Hat < 7.1 : xpm xpm-devel"
echo "Red Hat >= 7.1 : XFree86-devel"
echo "Caldera OpenLinux : xpm xpm-devel xpm-devel-static"
...
...
files/drive.c
View file @
f359895d
...
...
@@ -948,7 +948,7 @@ static UINT DRIVE_GetCurrentDirectory( UINT buflen, LPSTR buf )
/***********************************************************************
* DRIVE_BuildEnv
*
* Build the environment array containing the drives current directories.
* Build the environment array containing the drives
'
current directories.
* Resulting pointer must be freed with HeapFree.
*/
char
*
DRIVE_BuildEnv
(
void
)
...
...
files/profile.c
View file @
f359895d
...
...
@@ -1478,7 +1478,7 @@ BOOL WINAPI WritePrivateProfileStringA( LPCSTR section, LPCSTR entry,
if
(
PROFILE_Open
(
filename
))
{
if
(
!
section
&&
!
entry
&&
!
string
)
if
(
!
section
&&
!
entry
&&
!
string
)
/* documented "file flush" case */
PROFILE_ReleaseFile
();
/* always return FALSE in this case */
else
ret
=
PROFILE_SetString
(
section
,
entry
,
string
);
...
...
loader/module.c
View file @
f359895d
...
...
@@ -1084,7 +1084,7 @@ BOOL WINAPI CreateProcessA( LPCSTR lpApplicationName, LPSTR lpCommandLine,
FIXME
(
"(%s,...): PROFILE_SERVER ignored
\n
"
,
name
);
if
(
lpStartupInfo
->
lpDesktop
)
FIXME
(
"(%s,...): lpStartupInfo->lpDesktop %s ignored
\n
"
,
name
,
lpStartupInfo
->
lpDesktop
);
name
,
debugstr_a
(
lpStartupInfo
->
lpDesktop
)
);
if
(
lpStartupInfo
->
lpTitle
)
FIXME
(
"(%s,...): lpStartupInfo->lpTitle %s ignored
\n
"
,
name
,
lpStartupInfo
->
lpTitle
);
...
...
loader/pe_image.c
View file @
f359895d
...
...
@@ -291,7 +291,7 @@ DWORD PE_fixup_imports( WINE_MODREF *wm )
wmImp
=
MODULE_LoadLibraryExA
(
name
,
0
,
0
);
if
(
!
wmImp
)
{
ERR_
(
module
)(
"Module (file) %s
needed by %s
not found
\n
"
,
name
,
wm
->
filename
);
ERR_
(
module
)(
"Module (file) %s
(which is needed by %s)
not found
\n
"
,
name
,
wm
->
filename
);
return
1
;
}
wm
->
deps
[
i
++
]
=
wmImp
;
...
...
@@ -386,7 +386,7 @@ static int do_relocations( char *base, const IMAGE_NT_HEADERS *nt, const char *f
if
(
!
dir
->
VirtualAddress
||
!
dir
->
Size
)
{
if
(
nt
->
OptionalHeader
.
ImageBase
==
0x400000
)
ERR
(
"Standard load address for a Win32 program (0x00400000) not available - patched kernel ?
\n
"
);
ERR
(
"Standard load address for a Win32 program (0x00400000) not available -
security-
patched kernel ?
\n
"
);
ERR
(
"FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !
\n
"
,
filename
,
(
nt
->
FileHeader
.
Characteristics
&
IMAGE_FILE_RELOCS_STRIPPED
)
?
...
...
memory/environ.c
View file @
f359895d
...
...
@@ -300,6 +300,21 @@ BOOL ENV_BuildCommandLine( char **argv )
/***********************************************************************
* GetCommandLineA (KERNEL32.@)
*
* WARNING: there's a Windows incompatibility lurking here !
* Win32s always includes the full path of the program file,
* whereas Windows NT only returns the full file path plus arguments
* in case the program has been started with a full path.
* Win9x seems to have inherited NT behaviour.
*
* Note that both Start Menu Execute and Explorer start programs with
* fully specified quoted app file paths, which is why probably the only case
* where you'll see single file names is in case of direct launch
* via CreateProcess or WinExec.
*
* Perhaps we should take care of Win3.1 programs here (Win32s "feature").
*
* References: MS KB article q102762.txt (special Win32s handling)
*/
LPSTR
WINAPI
GetCommandLineA
(
void
)
{
...
...
tools/winelauncher.in
View file @
f359895d
...
...
@@ -60,7 +60,7 @@ Warning:
Most Linux distributions have one or the other of these
tools.
We strongly recommend that you use your distributions
We strongly recommend that you use your distribution
'
s
software methods to locate xmessage."
else
...
...
@@ -70,7 +70,7 @@ fi
#------------------------------------------------------------------------------
# We're going to do a lot of fancy footwork below.
# Before we get started, it would be nice to know the argv0
,
# Before we get started, it would be nice to know the argv0
# of the actual script we're running (and lets remove at least
# one level of symlinking).
#------------------------------------------------------------------------------
...
...
win32/device.c
View file @
f359895d
...
...
@@ -327,7 +327,7 @@ HANDLE DEVICE_Open( LPCSTR filename, DWORD access,
if
(
!
strncasecmp
(
info
->
name
,
filename
,
strlen
(
info
->
name
)
))
return
FILE_CreateDevice
(
info
->
id
|
0x10000
,
access
,
sa
);
FIXME
(
"Unknown VxD %s. Try --winver nt40 or win31 !
\n
"
,
filename
);
FIXME
(
"Unknown
/unsupported
VxD %s. Try --winver nt40 or win31 !
\n
"
,
filename
);
SetLastError
(
ERROR_FILE_NOT_FOUND
);
return
0
;
}
...
...
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