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
691fe545
Commit
691fe545
authored
Jun 06, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infosoft: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7fa73a79
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/infosoft/Makefile.in
+2
-0
infosoft_main.c
dlls/infosoft/infosoft_main.c
+0
-1
wordbreaker.c
dlls/infosoft/wordbreaker.c
+2
-4
No files found.
dlls/infosoft/Makefile.in
View file @
691fe545
MODULE
=
infosoft.dll
IMPORTS
=
uuid advapi32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
infosoft_main.c
\
wordbreaker.c
...
...
dlls/infosoft/infosoft_main.c
View file @
691fe545
...
...
@@ -20,7 +20,6 @@
#define COBJMACROS
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/infosoft/wordbreaker.c
View file @
691fe545
...
...
@@ -20,7 +20,6 @@
#define COBJMACROS
#include "config.h"
#include <stdarg.h>
...
...
@@ -29,7 +28,6 @@
#include "winuser.h"
#include "ole2.h"
#include "indexsrv.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
infosoft
);
...
...
@@ -128,7 +126,7 @@ static HRESULT WINAPI wb_BreakText( IWordBreaker *iface,
{
case
0
:
/* skip spaces and punctuation */
if
(
!
ch
||
is
punctW
(
ch
)
||
isspaceW
(
ch
))
if
(
!
ch
||
is
wpunct
(
ch
)
||
iswspace
(
ch
))
ts
->
iCur
++
;
else
state
=
1
;
...
...
@@ -136,7 +134,7 @@ static HRESULT WINAPI wb_BreakText( IWordBreaker *iface,
case
1
:
/* find the end of the word */
if
(
ch
&&
!
is
punctW
(
ch
)
&&
!
isspaceW
(
ch
))
if
(
ch
&&
!
is
wpunct
(
ch
)
&&
!
iswspace
(
ch
))
len
++
;
else
{
...
...
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