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
dd6515c9
Commit
dd6515c9
authored
Aug 23, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schedsvc: Remove DECLSPEC_HIDDEN usage.
parent
6b492152
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
schedsvc_private.h
dlls/schedsvc/schedsvc_private.h
+10
-10
atsvcapi.c
dlls/schedsvc/tests/atsvcapi.c
+2
-2
No files found.
dlls/schedsvc/schedsvc_private.h
View file @
dd6515c9
...
...
@@ -19,15 +19,15 @@
#ifndef __WINE_SCHEDSVC_PRIVATE_H__
#define __WINE_SCHEDSVC_PRIVATE_H__
void
schedsvc_auto_start
(
void
)
DECLSPEC_HIDDEN
;
void
add_job
(
const
WCHAR
*
name
)
DECLSPEC_HIDDEN
;
void
remove_job
(
const
WCHAR
*
name
)
DECLSPEC_HIDDEN
;
void
check_task_state
(
void
)
DECLSPEC_HIDDEN
;
void
add_process_to_queue
(
HANDLE
hproc
)
DECLSPEC_HIDDEN
;
void
update_process_status
(
DWORD
pid
)
DECLSPEC_HIDDEN
;
BOOL
get_next_runtime
(
LARGE_INTEGER
*
rt
)
DECLSPEC_HIDDEN
;
void
check_task_time
(
void
)
DECLSPEC_HIDDEN
;
void
load_at_tasks
(
void
)
DECLSPEC_HIDDEN
;
void
check_missed_task_time
(
void
)
DECLSPEC_HIDDEN
;
void
schedsvc_auto_start
(
void
);
void
add_job
(
const
WCHAR
*
name
);
void
remove_job
(
const
WCHAR
*
name
);
void
check_task_state
(
void
);
void
add_process_to_queue
(
HANDLE
hproc
);
void
update_process_status
(
DWORD
pid
);
BOOL
get_next_runtime
(
LARGE_INTEGER
*
rt
);
void
check_task_time
(
void
);
void
load_at_tasks
(
void
);
void
check_missed_task_time
(
void
);
#endif
/* __WINE_SCHEDSVC_PRIVATE_H__ */
dlls/schedsvc/tests/atsvcapi.c
View file @
dd6515c9
...
...
@@ -177,7 +177,7 @@ skip_tests:
ok
(
hr
==
RPC_S_OK
,
"RpcBindingFree error %#lx
\n
"
,
hr
);
}
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
;
...
...
@@ -194,7 +194,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
);
}
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