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
78d108b9
Commit
78d108b9
authored
May 21, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved misc/error.c to dlls/kernel/error16.c.
Get rid of misc/main.c.
parent
399967c1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
70 deletions
+21
-70
Makefile.in
dlls/kernel/Makefile.in
+1
-0
change.c
dlls/kernel/change.c
+9
-0
error16.c
dlls/kernel/error16.c
+0
-1
kernel_main.c
dlls/kernel/kernel_main.c
+11
-0
Makefile.in
dlls/ntdll/Makefile.in
+0
-2
main.c
misc/main.c
+0
-67
No files found.
dlls/kernel/Makefile.in
View file @
78d108b9
...
...
@@ -47,6 +47,7 @@ C_SRCS = \
wowthunk.c
C_SRCS16
=
\
error16.c
\
registry16.c
\
system.c
...
...
dlls/kernel/change.c
View file @
78d108b9
...
...
@@ -107,3 +107,12 @@ BOOL WINAPI FindCloseChangeNotification( HANDLE handle )
{
return
CloseHandle
(
handle
);
}
/***********************************************************************
* FileCDR (KERNEL.130)
*/
FARPROC16
WINAPI
FileCDR16
(
FARPROC16
x
)
{
FIXME
(
"(0x%8x): stub
\n
"
,
(
int
)
x
);
return
(
FARPROC16
)
TRUE
;
}
misc/error
.c
→
dlls/kernel/error16
.c
View file @
78d108b9
...
...
@@ -288,4 +288,3 @@ void WINAPI HandleParamError( CONTEXT86 *context )
context
->
SegEs
=
0
;
}
}
dlls/kernel/kernel_main.c
View file @
78d108b9
...
...
@@ -226,3 +226,14 @@ 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
;
}
dlls/ntdll/Makefile.in
View file @
78d108b9
...
...
@@ -33,8 +33,6 @@ C_SRCS = \
$(TOPOBJDIR)
/memory/string.c
\
$(TOPOBJDIR)
/memory/virtual.c
\
$(TOPOBJDIR)
/misc/cpu.c
\
$(TOPOBJDIR)
/misc/error.c
\
$(TOPOBJDIR)
/misc/main.c
\
$(TOPOBJDIR)
/misc/options.c
\
$(TOPOBJDIR)
/misc/registry.c
\
$(TOPOBJDIR)
/misc/version.c
\
...
...
misc/main.c
deleted
100644 → 0
View file @
399967c1
/*
* Main function.
*
* Copyright 1994 Alexandre Julliard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <locale.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "windef.h"
#include "winbase.h"
#include "wine/winbase16.h"
#include "winternl.h"
#include "winnls.h"
#include "winerror.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
file
);
/***********************************************************************
* Beep (KERNEL32.@)
*/
BOOL
WINAPI
Beep
(
DWORD
dwFreq
,
DWORD
dwDur
)
{
static
char
beep
=
'\a'
;
/* dwFreq and dwDur are ignored by Win95 */
if
(
isatty
(
2
))
write
(
2
,
&
beep
,
1
);
return
TRUE
;
}
/***********************************************************************
* FileCDR (KERNEL.130)
*/
FARPROC16
WINAPI
FileCDR16
(
FARPROC16
x
)
{
FIXME
(
"(0x%8x): stub
\n
"
,
(
int
)
x
);
return
(
FARPROC16
)
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