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
57d5db5d
Commit
57d5db5d
authored
Jun 27, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintab32: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cc00ffa3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
6 deletions
+4
-6
Makefile.in
dlls/wintab32/Makefile.in
+2
-0
context.c
dlls/wintab32/context.c
+0
-1
manager.c
dlls/wintab32/manager.c
+0
-2
wintab32.c
dlls/wintab32/wintab32.c
+2
-3
No files found.
dlls/wintab32/Makefile.in
View file @
57d5db5d
...
...
@@ -2,6 +2,8 @@ MODULE = wintab32.dll
IMPORTLIB
=
wintab32
IMPORTS
=
user32 advapi32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
context.c
\
manager.c
\
...
...
dlls/wintab32/context.c
View file @
57d5db5d
...
...
@@ -19,7 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
...
...
dlls/wintab32/manager.c
View file @
57d5db5d
...
...
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/wintab32/wintab32.c
View file @
57d5db5d
...
...
@@ -29,7 +29,6 @@
#define NOFIX32
#include "wintab.h"
#include "wintab_internal.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wintab32
);
...
...
@@ -94,8 +93,8 @@ static HMODULE load_graphics_driver(void)
if
(
!
guid_atom
)
return
0
;
memcpy
(
key
,
key_pathW
,
sizeof
(
key_pathW
)
);
if
(
!
GlobalGetAtomNameW
(
guid_atom
,
key
+
strlenW
(
key
),
40
))
return
0
;
strcatW
(
key
,
displayW
);
if
(
!
GlobalGetAtomNameW
(
guid_atom
,
key
+
l
strlenW
(
key
),
40
))
return
0
;
l
strcatW
(
key
,
displayW
);
if
(
RegOpenKeyW
(
HKEY_LOCAL_MACHINE
,
key
,
&
hkey
))
return
0
;
size
=
sizeof
(
path
);
if
(
!
RegQueryValueExW
(
hkey
,
driverW
,
NULL
,
NULL
,
(
BYTE
*
)
path
,
&
size
))
ret
=
LoadLibraryW
(
path
);
...
...
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