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
00300d73
Commit
00300d73
authored
Nov 08, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mstask: Remove DECLSPEC_HIDDEN usage.
parent
d8ce4f61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
mstask_main.c
dlls/mstask/mstask_main.c
+4
-4
mstask_private.h
dlls/mstask/mstask_private.h
+7
-7
No files found.
dlls/mstask/mstask_main.c
View file @
00300d73
...
...
@@ -72,17 +72,17 @@ DWORD WINAPI NetrJobGetInfo_wrapper(ATSVC_HANDLE server_name, DWORD jobid, LPAT_
return
NetrJobGetInfo
(
server_name
,
jobid
,
info
);
}
DECLSPEC_HIDDEN
void
__RPC_FAR
*
__RPC_USER
MIDL_user_allocate
(
SIZE_T
n
)
void
__RPC_FAR
*
__RPC_USER
MIDL_user_allocate
(
SIZE_T
n
)
{
return
malloc
(
n
);
}
DECLSPEC_HIDDEN
void
__RPC_USER
MIDL_user_free
(
void
__RPC_FAR
*
p
)
void
__RPC_USER
MIDL_user_free
(
void
__RPC_FAR
*
p
)
{
free
(
p
);
}
DECLSPEC_HIDDEN
handle_t
__RPC_USER
ATSVC_HANDLE_bind
(
ATSVC_HANDLE
str
)
handle_t
__RPC_USER
ATSVC_HANDLE_bind
(
ATSVC_HANDLE
str
)
{
static
unsigned
char
ncalrpc
[]
=
"ncalrpc"
;
unsigned
char
*
binding_str
;
...
...
@@ -96,7 +96,7 @@ DECLSPEC_HIDDEN handle_t __RPC_USER ATSVC_HANDLE_bind(ATSVC_HANDLE str)
return
rpc_handle
;
}
DECLSPEC_HIDDEN
void
__RPC_USER
ATSVC_HANDLE_unbind
(
ATSVC_HANDLE
ServerName
,
handle_t
rpc_handle
)
void
__RPC_USER
ATSVC_HANDLE_unbind
(
ATSVC_HANDLE
ServerName
,
handle_t
rpc_handle
)
{
RpcBindingFree
(
&
rpc_handle
);
}
dlls/mstask/mstask_private.h
View file @
00300d73
...
...
@@ -19,15 +19,15 @@
#ifndef __MSTASK_PRIVATE_H__
#define __MSTASK_PRIVATE_H__
extern
LONG
dll_ref
DECLSPEC_HIDDEN
;
extern
LONG
dll_ref
;
typedef
struct
ClassFactoryImpl
ClassFactoryImpl
;
extern
ClassFactoryImpl
MSTASK_ClassFactory
DECLSPEC_HIDDEN
;
extern
ClassFactoryImpl
MSTASK_ClassFactory
;
extern
HRESULT
TaskTriggerConstructor
(
ITask
*
task
,
WORD
idx
,
ITaskTrigger
**
trigger
)
DECLSPEC_HIDDEN
;
extern
HRESULT
TaskSchedulerConstructor
(
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
TaskConstructor
(
ITaskService
*
service
,
const
WCHAR
*
task_name
,
ITask
**
task
)
DECLSPEC_HIDDEN
;
extern
HRESULT
task_set_trigger
(
ITask
*
task
,
WORD
idx
,
const
TASK_TRIGGER
*
trigger
)
DECLSPEC_HIDDEN
;
extern
HRESULT
task_get_trigger
(
ITask
*
task
,
WORD
idx
,
TASK_TRIGGER
*
trigger
)
DECLSPEC_HIDDEN
;
extern
HRESULT
TaskTriggerConstructor
(
ITask
*
task
,
WORD
idx
,
ITaskTrigger
**
trigger
);
extern
HRESULT
TaskSchedulerConstructor
(
LPVOID
*
ppObj
);
extern
HRESULT
TaskConstructor
(
ITaskService
*
service
,
const
WCHAR
*
task_name
,
ITask
**
task
);
extern
HRESULT
task_set_trigger
(
ITask
*
task
,
WORD
idx
,
const
TASK_TRIGGER
*
trigger
);
extern
HRESULT
task_get_trigger
(
ITask
*
task
,
WORD
idx
,
TASK_TRIGGER
*
trigger
);
#endif
/* __MSTASK_PRIVATE_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