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
2f24859b
Commit
2f24859b
authored
May 22, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Beep() is still needed in ntdll, move it back to some random file.
parent
02d5e1f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
kernel_main.c
dlls/kernel/kernel_main.c
+0
-11
newfns.c
win32/newfns.c
+11
-0
No files found.
dlls/kernel/kernel_main.c
View file @
2f24859b
...
...
@@ -226,14 +226,3 @@ BOOL WINAPI SwitchToThread(void)
Sleep
(
0
);
return
1
;
}
/***********************************************************************
* Beep (KERNEL32.@)
*/
BOOL
WINAPI
Beep
(
DWORD
dwFreq
,
DWORD
dwDur
)
{
static
const
char
beep
=
'\a'
;
/* dwFreq and dwDur are ignored by Win95 */
if
(
isatty
(
2
))
write
(
2
,
&
beep
,
1
);
return
TRUE
;
}
win32/newfns.c
View file @
2f24859b
...
...
@@ -320,3 +320,14 @@ BOOL WINAPI GetDevicePowerState(HANDLE hDevice, BOOL* pfOn)
FIXME
(
"(hDevice %p pfOn %p): stub
\n
"
,
hDevice
,
pfOn
);
return
TRUE
;
/* no information */
}
/***********************************************************************
* Beep (KERNEL32.@)
*/
BOOL
WINAPI
Beep
(
DWORD
dwFreq
,
DWORD
dwDur
)
{
static
const
char
beep
=
'\a'
;
/* dwFreq and dwDur are ignored by Win95 */
if
(
isatty
(
2
))
write
(
2
,
&
beep
,
1
);
return
TRUE
;
}
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