Commit 777c2f1d authored by Roy Shea's avatar Roy Shea Committed by Alexandre Julliard

mstask: Task stub with AddRef, QueryInterface, and Release.

parent 2a4429bf
......@@ -6,6 +6,7 @@ MODULE = mstask.dll
IMPORTS = uuid kernel32
C_SRCS = \
task.c \
factory.c \
mstask_main.c \
task_scheduler.c
......
......@@ -45,4 +45,13 @@ typedef struct
} TaskSchedulerImpl;
extern HRESULT TaskSchedulerConstructor(LPVOID *ppObj);
typedef struct
{
const ITaskVtbl *lpVtbl;
const IPersistFileVtbl *persistVtbl;
LONG ref;
LPWSTR taskName;
} TaskImpl;
extern HRESULT TaskConstructor(LPCWSTR pwszTaskName, LPVOID *ppObj);
#endif /* __MSTASK_PRIVATE_H__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment