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
84f39259
Commit
84f39259
authored
Jun 25, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user.exe: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
503d5ef5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
18 deletions
+4
-18
Makefile.in
dlls/user.exe16/Makefile.in
+1
-1
comm.c
dlls/user.exe16/comm.c
+3
-6
dialog.c
dlls/user.exe16/dialog.c
+0
-3
message.c
dlls/user.exe16/message.c
+0
-3
network.c
dlls/user.exe16/network.c
+0
-5
No files found.
dlls/user.exe16/Makefile.in
View file @
84f39259
MODULE
=
user.exe16
IMPORTS
=
mpr user32 gdi32
EXTRADLLFLAGS
=
-m16
-Wb
,--main-module,user32.dll,--heap,65520
EXTRADLLFLAGS
=
-m16
-
mno-cygwin
-
Wb
,--main-module,user32.dll,--heap,65520
C_SRCS
=
\
bidi.c
\
...
...
dlls/user.exe16/comm.c
View file @
84f39259
...
...
@@ -50,9 +50,6 @@
*
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
...
...
@@ -416,7 +413,7 @@ INT16 WINAPI BuildCommDCB16(LPCSTR device, LPDCB16 lpdcb)
TRACE
(
"(%s), ptr %p
\n
"
,
device
,
lpdcb
);
if
(
_
strnicmp
(
device
,
"COM"
,
3
))
if
(
strnicmp
(
device
,
"COM"
,
3
))
return
-
1
;
port
=
device
[
3
]
-
'0'
;
...
...
@@ -457,7 +454,7 @@ INT16 WINAPI OpenComm16(LPCSTR device,UINT16 cbInQueue,UINT16 cbOutQueue)
if
(
port
--
==
0
)
ERR
(
"BUG ! COM0 or LPT0 don't exist !
\n
"
);
if
(
!
_
strnicmp
(
device
,
"COM"
,
3
))
if
(
!
strnicmp
(
device
,
"COM"
,
3
))
{
if
(
COM
[
port
].
handle
)
return
IE_OPEN
;
...
...
@@ -508,7 +505,7 @@ INT16 WINAPI OpenComm16(LPCSTR device,UINT16 cbInQueue,UINT16 cbOutQueue)
}
}
else
if
(
!
_
strnicmp
(
device
,
"LPT"
,
3
))
{
if
(
!
strnicmp
(
device
,
"LPT"
,
3
))
{
if
(
LPT
[
port
].
handle
)
return
IE_OPEN
;
...
...
dlls/user.exe16/dialog.c
View file @
84f39259
...
...
@@ -18,9 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/user.exe16/message.c
View file @
84f39259
...
...
@@ -18,9 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
#include <string.h>
...
...
dlls/user.exe16/network.c
View file @
84f39259
...
...
@@ -18,15 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <ctype.h>
#include <stdarg.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "windef.h"
#include "winbase.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