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
777c2f1d
Commit
777c2f1d
authored
Aug 04, 2008
by
Roy Shea
Committed by
Alexandre Julliard
Aug 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Task stub with AddRef, QueryInterface, and Release.
parent
2a4429bf
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
Makefile.in
dlls/mstask/Makefile.in
+1
-0
mstask_private.h
dlls/mstask/mstask_private.h
+9
-0
task.c
dlls/mstask/task.c
+0
-0
No files found.
dlls/mstask/Makefile.in
View file @
777c2f1d
...
...
@@ -6,6 +6,7 @@ MODULE = mstask.dll
IMPORTS
=
uuid kernel32
C_SRCS
=
\
task.c
\
factory.c
\
mstask_main.c
\
task_scheduler.c
...
...
dlls/mstask/mstask_private.h
View file @
777c2f1d
...
...
@@ -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__ */
dlls/mstask/task.c
0 → 100644
View file @
777c2f1d
This diff is collapsed.
Click to expand it.
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