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
21a19fb4
Commit
21a19fb4
authored
Jun 25, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8355a201
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
9 additions
and
26 deletions
+9
-26
Makefile.in
dlls/uxtheme/Makefile.in
+2
-0
buffer.c
dlls/uxtheme/buffer.c
+0
-2
draw.c
dlls/uxtheme/draw.c
+0
-2
main.c
dlls/uxtheme/main.c
+0
-2
metric.c
dlls/uxtheme/metric.c
+0
-2
msstyles.c
dlls/uxtheme/msstyles.c
+7
-10
property.c
dlls/uxtheme/property.c
+0
-2
stylemap.c
dlls/uxtheme/stylemap.c
+0
-2
system.c
dlls/uxtheme/system.c
+0
-2
uxini.c
dlls/uxtheme/uxini.c
+0
-2
No files found.
dlls/uxtheme/Makefile.in
View file @
21a19fb4
...
...
@@ -3,6 +3,8 @@ IMPORTLIB = uxtheme
IMPORTS
=
user32 gdi32 advapi32
DELAYIMPORTS
=
msimg32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
buffer.c
\
draw.c
\
...
...
dlls/uxtheme/buffer.c
View file @
21a19fb4
...
...
@@ -19,8 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdarg.h>
...
...
dlls/uxtheme/draw.c
View file @
21a19fb4
...
...
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdarg.h>
...
...
dlls/uxtheme/main.c
View file @
21a19fb4
...
...
@@ -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/uxtheme/metric.c
View file @
21a19fb4
...
...
@@ -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/uxtheme/msstyles.c
View file @
21a19fb4
...
...
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <stdlib.h>
...
...
@@ -34,7 +32,6 @@
#include "msstyles.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/heap.h"
...
...
@@ -352,7 +349,7 @@ static BOOL MSSTYLES_ParseIniSectionName(LPCWSTR lpSection, DWORD dwLen, LPWSTR
*
iStateId
=
0
;
comp
=
sec
;
/* Get the application name */
tmp
=
strchrW
(
comp
,
':'
);
tmp
=
wcschr
(
comp
,
':'
);
if
(
tmp
)
{
*
tmp
++
=
0
;
tmp
++
;
...
...
@@ -360,19 +357,19 @@ static BOOL MSSTYLES_ParseIniSectionName(LPCWSTR lpSection, DWORD dwLen, LPWSTR
comp
=
tmp
;
}
tmp
=
strchrW
(
comp
,
'.'
);
tmp
=
wcschr
(
comp
,
'.'
);
if
(
tmp
)
{
*
tmp
++
=
0
;
lstrcpynW
(
szClassName
,
comp
,
MAX_THEME_CLASS_NAME
);
comp
=
tmp
;
/* now get the part & state */
tmp
=
strchrW
(
comp
,
'('
);
tmp
=
wcschr
(
comp
,
'('
);
if
(
tmp
)
{
*
tmp
++
=
0
;
lstrcpynW
(
part
,
comp
,
ARRAY_SIZE
(
part
));
comp
=
tmp
;
/* now get the state */
tmp
=
strchrW
(
comp
,
')'
);
tmp
=
wcschr
(
comp
,
')'
);
if
(
!
tmp
)
return
FALSE
;
*
tmp
=
0
;
...
...
@@ -383,13 +380,13 @@ static BOOL MSSTYLES_ParseIniSectionName(LPCWSTR lpSection, DWORD dwLen, LPWSTR
}
}
else
{
tmp
=
strchrW
(
comp
,
'('
);
tmp
=
wcschr
(
comp
,
'('
);
if
(
tmp
)
{
*
tmp
++
=
0
;
lstrcpynW
(
szClassName
,
comp
,
MAX_THEME_CLASS_NAME
);
comp
=
tmp
;
/* now get the state */
tmp
=
strchrW
(
comp
,
')'
);
tmp
=
wcschr
(
comp
,
')'
);
if
(
!
tmp
)
return
FALSE
;
*
tmp
=
0
;
...
...
@@ -1012,7 +1009,7 @@ PTHEME_CLASS MSSTYLES_OpenThemeClass(LPCWSTR pszAppName, LPCWSTR pszClassList)
}
start
=
pszClassList
;
while
((
end
=
strchrW
(
start
,
';'
)))
{
while
((
end
=
wcschr
(
start
,
';'
)))
{
len
=
end
-
start
;
lstrcpynW
(
szClassName
,
start
,
min
(
len
+
1
,
ARRAY_SIZE
(
szClassName
)));
start
=
end
+
1
;
...
...
dlls/uxtheme/property.c
View file @
21a19fb4
...
...
@@ -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/uxtheme/stylemap.c
View file @
21a19fb4
...
...
@@ -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/uxtheme/system.c
View file @
21a19fb4
...
...
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/uxtheme/uxini.c
View file @
21a19fb4
...
...
@@ -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"
...
...
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