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
9398c9f9
Commit
9398c9f9
authored
Nov 12, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Added DECLSPEC_HOTPATCHABLE to a few functions.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1130a11c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
oleaut.c
dlls/oleaut32/oleaut.c
+5
-3
No files found.
dlls/oleaut32/oleaut.c
View file @
9398c9f9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <string.h>
#include <limits.h>
...
...
@@ -499,7 +501,7 @@ static const WCHAR *pdelimiter = &_delimiter[0];
* Success: S_OK.
* Failure: HRESULT code.
*/
HRESULT
WINAPI
RegisterActiveObject
(
HRESULT
WINAPI
DECLSPEC_HOTPATCH
RegisterActiveObject
(
LPUNKNOWN
punk
,
REFCLSID
rcid
,
DWORD
dwFlags
,
LPDWORD
pdwRegister
)
{
WCHAR
guidbuf
[
80
];
...
...
@@ -538,7 +540,7 @@ HRESULT WINAPI RegisterActiveObject(
* Success: S_OK.
* Failure: HRESULT code.
*/
HRESULT
WINAPI
RevokeActiveObject
(
DWORD
xregister
,
LPVOID
reserved
)
HRESULT
WINAPI
DECLSPEC_HOTPATCH
RevokeActiveObject
(
DWORD
xregister
,
LPVOID
reserved
)
{
LPRUNNINGOBJECTTABLE
runobtable
;
HRESULT
ret
;
...
...
@@ -565,7 +567,7 @@ HRESULT WINAPI RevokeActiveObject(DWORD xregister,LPVOID reserved)
* Success: S_OK.
* Failure: HRESULT code.
*/
HRESULT
WINAPI
GetActiveObject
(
REFCLSID
rcid
,
LPVOID
preserved
,
LPUNKNOWN
*
ppunk
)
HRESULT
WINAPI
DECLSPEC_HOTPATCH
GetActiveObject
(
REFCLSID
rcid
,
LPVOID
preserved
,
LPUNKNOWN
*
ppunk
)
{
WCHAR
guidbuf
[
80
];
HRESULT
ret
;
...
...
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