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
8c2f4b18
Commit
8c2f4b18
authored
Mar 03, 2001
by
Andreas Mohr
Committed by
Alexandre Julliard
Mar 03, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some more message cleanups.
parent
ddf82566
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
midi.c
dlls/winmm/wineoss/midi.c
+1
-1
config
documentation/samples/config
+1
-0
directory.c
files/directory.c
+1
-1
keyboard.c
windows/x11drv/keyboard.c
+1
-1
No files found.
dlls/winmm/wineoss/midi.c
View file @
8c2f4b18
...
@@ -215,7 +215,7 @@ BOOL OSS_MidiInit(void)
...
@@ -215,7 +215,7 @@ BOOL OSS_MidiInit(void)
midiOutDevices
[
i
]
=
tmplpCaps
;
midiOutDevices
[
i
]
=
tmplpCaps
;
if
(
sinfo
.
capabilities
&
SYNTH_CAP_INPUT
)
{
if
(
sinfo
.
capabilities
&
SYNTH_CAP_INPUT
)
{
FIXME
(
"Synthe
t
izer support MIDI in. Not supported yet (please report)
\n
"
);
FIXME
(
"Synthe
s
izer support MIDI in. Not supported yet (please report)
\n
"
);
}
}
TRACE
(
"name='%s', techn=%d voices=%d notes=%d support=%ld
\n
"
,
TRACE
(
"name='%s', techn=%d voices=%d notes=%d support=%ld
\n
"
,
...
...
documentation/samples/config
View file @
8c2f4b18
...
@@ -124,6 +124,7 @@ WINE REGISTRY Version 2
...
@@ -124,6 +124,7 @@ WINE REGISTRY Version 2
; Use a desktop window of 640x480 for Wine
; Use a desktop window of 640x480 for Wine
;"Desktop" = "640x480"
;"Desktop" = "640x480"
; Use XFree86 DGA extension if present
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "Y"
"UseDGA" = "Y"
; Use XShm extension if present
; Use XShm extension if present
"UseXShm" = "Y"
"UseXShm" = "Y"
...
...
files/directory.c
View file @
8c2f4b18
...
@@ -370,7 +370,7 @@ BOOL WINAPI CreateDirectoryA( LPCSTR path,
...
@@ -370,7 +370,7 @@ BOOL WINAPI CreateDirectoryA( LPCSTR path,
}
}
if
(
!
DOSFS_GetFullName
(
path
,
FALSE
,
&
full_name
))
return
0
;
if
(
!
DOSFS_GetFullName
(
path
,
FALSE
,
&
full_name
))
return
0
;
if
(
mkdir
(
full_name
.
long_name
,
0777
)
==
-
1
)
{
if
(
mkdir
(
full_name
.
long_name
,
0777
)
==
-
1
)
{
WARN_
(
file
)(
"Err
no %i trying to create directory '%s'
\n
"
,
errno
,
full_name
.
long_name
);
WARN_
(
file
)(
"Err
or '%s' trying to create directory '%s'
\n
"
,
strerror
(
errno
)
,
full_name
.
long_name
);
/* the FILE_SetDosError() generated error codes don't match the
/* the FILE_SetDosError() generated error codes don't match the
* CreateDirectory ones for some errnos */
* CreateDirectory ones for some errnos */
switch
(
errno
)
{
switch
(
errno
)
{
...
...
windows/x11drv/keyboard.c
View file @
8c2f4b18
...
@@ -909,7 +909,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
...
@@ -909,7 +909,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
if
(
!
ismatch
)
{
if
(
!
ismatch
)
{
FIXME
(
FIXME
(
"Your keyboard layout was not found!
\n
"
"Your keyboard layout was not found!
\n
"
"
Instead of using closest match
(%s) for scancode mapping.
\n
"
"
Using closest match instead
(%s) for scancode mapping.
\n
"
"Please define your layout in windows/x11drv/keyboard.c and submit them
\n
"
"Please define your layout in windows/x11drv/keyboard.c and submit them
\n
"
"to us for inclusion into future Wine releases.
\n
"
"to us for inclusion into future Wine releases.
\n
"
"See documentation/keyboard for more information.
\n
"
,
"See documentation/keyboard for more information.
\n
"
,
...
...
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