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
eb408f2d
Commit
eb408f2d
authored
Mar 13, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Make each source file self-contained.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2157afff
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
42 additions
and
19 deletions
+42
-19
Makefile.in
dlls/mstask/Makefile.in
+1
-1
factory.c
dlls/mstask/factory.c
+8
-0
mstask_local.idl
dlls/mstask/mstask_local.idl
+0
-1
mstask_main.c
dlls/mstask/mstask_main.c
+7
-4
mstask_private.h
dlls/mstask/mstask_private.h
+0
-10
task.c
dlls/mstask/task.c
+8
-0
task_scheduler.c
dlls/mstask/task_scheduler.c
+11
-3
task_trigger.c
dlls/mstask/task_trigger.c
+7
-0
No files found.
dlls/mstask/Makefile.in
View file @
eb408f2d
MODULE
=
mstask.dll
MODULE
=
mstask.dll
IMPORTS
=
uuid
ole32
IMPORTS
=
ole32
C_SRCS
=
\
C_SRCS
=
\
factory.c
\
factory.c
\
...
...
dlls/mstask/factory.c
View file @
eb408f2d
...
@@ -16,6 +16,14 @@
...
@@ -16,6 +16,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "mstask.h"
#include "mstask_private.h"
#include "mstask_private.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
dlls/mstask/mstask_local.idl
View file @
eb408f2d
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
*/
#
pragma
makedep
ident
#
pragma
makedep
register
#
pragma
makedep
register
#
include
"mstask.idl"
#
include
"mstask.idl"
dlls/mstask/mstask_main.c
View file @
eb408f2d
...
@@ -16,15 +16,18 @@
...
@@ -16,15 +16,18 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <std
io
.h>
#include <std
arg
.h>
#include "mstask_private.h"
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "objbase.h"
#include "rpcproxy.h"
#include "rpcproxy.h"
#include "mstask.h"
#include "mstask_private.h"
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mstask
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mstask
);
static
HINSTANCE
hInst
;
static
HINSTANCE
hInst
;
...
...
dlls/mstask/mstask_private.h
View file @
eb408f2d
...
@@ -19,16 +19,6 @@
...
@@ -19,16 +19,6 @@
#ifndef __MSTASK_PRIVATE_H__
#ifndef __MSTASK_PRIVATE_H__
#define __MSTASK_PRIVATE_H__
#define __MSTASK_PRIVATE_H__
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "mstask.h"
extern
LONG
dll_ref
DECLSPEC_HIDDEN
;
extern
LONG
dll_ref
DECLSPEC_HIDDEN
;
typedef
struct
ClassFactoryImpl
ClassFactoryImpl
;
typedef
struct
ClassFactoryImpl
ClassFactoryImpl
;
...
...
dlls/mstask/task.c
View file @
eb408f2d
...
@@ -16,6 +16,14 @@
...
@@ -16,6 +16,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "mstask.h"
#include "mstask_private.h"
#include "mstask_private.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
dlls/mstask/task_scheduler.c
View file @
eb408f2d
...
@@ -16,7 +16,15 @@
...
@@ -16,7 +16,15 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include "corerror.h"
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "initguid.h"
#include "objbase.h"
#include "mstask.h"
#include "mstask_private.h"
#include "mstask_private.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
@@ -268,8 +276,8 @@ static HRESULT WINAPI MSTASK_ITaskScheduler_Activate(
...
@@ -268,8 +276,8 @@ static HRESULT WINAPI MSTASK_ITaskScheduler_Activate(
{
{
TRACE
(
"%p, %s, %s, %p: stub
\n
"
,
iface
,
debugstr_w
(
pwszName
),
TRACE
(
"%p, %s, %s, %p: stub
\n
"
,
iface
,
debugstr_w
(
pwszName
),
debugstr_guid
(
riid
),
ppunk
);
debugstr_guid
(
riid
),
ppunk
);
FIXME
(
"Partial stub always returning
COR_E_FILENOT
FOUND
\n
"
);
FIXME
(
"Partial stub always returning
ERROR_FILE_NOT_
FOUND
\n
"
);
return
COR_E_FILENOTFOUND
;
return
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
)
;
}
}
static
HRESULT
WINAPI
MSTASK_ITaskScheduler_Delete
(
static
HRESULT
WINAPI
MSTASK_ITaskScheduler_Delete
(
...
...
dlls/mstask/task_trigger.c
View file @
eb408f2d
...
@@ -17,7 +17,14 @@
...
@@ -17,7 +17,14 @@
*/
*/
#include <stdarg.h>
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "winternl.h"
#include "winternl.h"
#include "mstask.h"
#include "mstask_private.h"
#include "mstask_private.h"
#include "wine/debug.h"
#include "wine/debug.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