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
86faa3d2
Commit
86faa3d2
authored
Jun 24, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskschd: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4dd9f585
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
20 deletions
+17
-20
Makefile.in
dlls/taskschd/Makefile.in
+2
-0
folder.c
dlls/taskschd/folder.c
+10
-11
folder_collection.c
dlls/taskschd/folder_collection.c
+0
-1
regtask.c
dlls/taskschd/regtask.c
+1
-2
task.c
dlls/taskschd/task.c
+3
-4
taskschd_private.h
dlls/taskschd/taskschd_private.h
+1
-2
No files found.
dlls/taskschd/Makefile.in
View file @
86faa3d2
MODULE
=
taskschd.dll
IMPORTS
=
oleaut32 ole32 advapi32 xmllite rpcrt4
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
folder.c
\
folder_collection.c
\
...
...
dlls/taskschd/folder.c
View file @
86faa3d2
...
...
@@ -28,7 +28,6 @@
#include "schrpc.h"
#include "taskschd_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
taskschd
);
...
...
@@ -122,7 +121,7 @@ static HRESULT WINAPI TaskFolder_get_Name(ITaskFolder *iface, BSTR *name)
if
(
!
name
)
return
E_POINTER
;
p_name
=
strrchrW
(
folder
->
path
,
'\\'
);
p_name
=
wcsrchr
(
folder
->
path
,
'\\'
);
if
(
!
p_name
)
p_name
=
folder
->
path
;
else
...
...
@@ -208,9 +207,9 @@ WCHAR *get_full_path(const WCHAR *parent, const WCHAR *path)
WCHAR
*
folder_path
;
int
len
=
0
;
if
(
path
)
len
=
strlenW
(
path
);
if
(
path
)
len
=
l
strlenW
(
path
);
if
(
parent
)
len
+=
strlenW
(
parent
);
if
(
parent
)
len
+=
l
strlenW
(
parent
);
/* +1 if parent is not '\' terminated */
folder_path
=
heap_alloc
((
len
+
2
)
*
sizeof
(
WCHAR
));
...
...
@@ -219,21 +218,21 @@ WCHAR *get_full_path(const WCHAR *parent, const WCHAR *path)
folder_path
[
0
]
=
0
;
if
(
parent
)
strcpyW
(
folder_path
,
parent
);
l
strcpyW
(
folder_path
,
parent
);
if
(
path
&&
*
path
)
{
len
=
strlenW
(
folder_path
);
len
=
l
strlenW
(
folder_path
);
if
(
!
len
||
folder_path
[
len
-
1
]
!=
'\\'
)
strcatW
(
folder_path
,
bslash
);
l
strcatW
(
folder_path
,
bslash
);
while
(
*
path
==
'\\'
)
path
++
;
strcatW
(
folder_path
,
path
);
l
strcatW
(
folder_path
,
path
);
}
len
=
strlenW
(
folder_path
);
len
=
l
strlenW
(
folder_path
);
if
(
!
len
)
strcatW
(
folder_path
,
bslash
);
l
strcatW
(
folder_path
,
bslash
);
return
folder_path
;
}
...
...
@@ -416,7 +415,7 @@ HRESULT TaskFolder_create(const WCHAR *parent, const WCHAR *path, ITaskFolder **
if
(
path
)
{
int
len
=
strlenW
(
path
);
int
len
=
l
strlenW
(
path
);
if
(
len
&&
path
[
len
-
1
]
==
'\\'
)
return
HRESULT_FROM_WIN32
(
ERROR_INVALID_NAME
);
}
...
...
dlls/taskschd/folder_collection.c
View file @
86faa3d2
...
...
@@ -27,7 +27,6 @@
#include "schrpc.h"
#include "taskschd_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
taskschd
);
...
...
dlls/taskschd/regtask.c
View file @
86faa3d2
...
...
@@ -28,7 +28,6 @@
#include "schrpc.h"
#include "taskschd_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
taskschd
);
...
...
@@ -124,7 +123,7 @@ static HRESULT WINAPI regtask_get_Name(IRegisteredTask *iface, BSTR *name)
if
(
!
name
)
return
E_POINTER
;
p_name
=
strrchrW
(
regtask
->
path
,
'\\'
);
p_name
=
wcsrchr
(
regtask
->
path
,
'\\'
);
if
(
!
p_name
)
p_name
=
regtask
->
path
;
else
...
...
dlls/taskschd/task.c
View file @
86faa3d2
...
...
@@ -30,7 +30,6 @@
#include "schrpc.h"
#include "taskschd_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
taskschd
);
...
...
@@ -2919,7 +2918,7 @@ static HRESULT read_int_value(IXmlReader *reader, int *int_val)
hr
=
read_text_value
(
reader
,
&
value
);
if
(
hr
!=
S_OK
)
return
hr
;
*
int_val
=
strtolW
(
value
,
NULL
,
10
);
*
int_val
=
wcstol
(
value
,
NULL
,
10
);
return
S_OK
;
}
...
...
@@ -3871,7 +3870,7 @@ static HRESULT WINAPI TaskService_Connect(ITaskService *iface, VARIANT server, V
if
(
server_name
[
0
]
==
'\\'
&&
server_name
[
1
]
==
'\\'
)
server_name
+=
2
;
if
(
strcmpiW
(
server_name
,
comp_name
))
if
(
wcsicmp
(
server_name
,
comp_name
))
{
FIXME
(
"connection to remote server %s is not supported
\n
"
,
debugstr_w
(
V_BSTR
(
&
server
)));
return
HRESULT_FROM_WIN32
(
ERROR_BAD_NETPATH
);
...
...
@@ -3893,7 +3892,7 @@ static HRESULT WINAPI TaskService_Connect(ITaskService *iface, VARIANT server, V
TRACE
(
"server version %#x
\n
"
,
task_svc
->
version
);
strcpyW
(
task_svc
->
comp_name
,
comp_name
);
l
strcpyW
(
task_svc
->
comp_name
,
comp_name
);
task_svc
->
connected
=
TRUE
;
return
S_OK
;
...
...
dlls/taskschd/taskschd_private.h
View file @
86faa3d2
...
...
@@ -19,7 +19,6 @@
#ifndef __WINE_TASKSCHD_PRIVATE_H__
#define __WINE_TASKSCHD_PRIVATE_H__
#include "wine/unicode.h"
#include "wine/heap.h"
HRESULT
TaskService_create
(
void
**
obj
)
DECLSPEC_HIDDEN
;
...
...
@@ -37,7 +36,7 @@ static inline WCHAR *heap_strdupW(const WCHAR *src)
WCHAR
*
dst
;
unsigned
len
;
if
(
!
src
)
return
NULL
;
len
=
(
strlenW
(
src
)
+
1
)
*
sizeof
(
WCHAR
);
len
=
(
l
strlenW
(
src
)
+
1
)
*
sizeof
(
WCHAR
);
if
((
dst
=
heap_alloc
(
len
)))
memcpy
(
dst
,
src
,
len
);
return
dst
;
}
...
...
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