oleaut32: Added DECLSPEC_HOTPATCHABLE to a few functions.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1130a11cce
commit
9398c9f98f
|
@ -18,6 +18,8 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
@ -499,7 +501,7 @@ static const WCHAR *pdelimiter = &_delimiter[0];
|
||||||
* Success: S_OK.
|
* Success: S_OK.
|
||||||
* Failure: HRESULT code.
|
* Failure: HRESULT code.
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI RegisterActiveObject(
|
HRESULT WINAPI DECLSPEC_HOTPATCH RegisterActiveObject(
|
||||||
LPUNKNOWN punk,REFCLSID rcid,DWORD dwFlags,LPDWORD pdwRegister
|
LPUNKNOWN punk,REFCLSID rcid,DWORD dwFlags,LPDWORD pdwRegister
|
||||||
) {
|
) {
|
||||||
WCHAR guidbuf[80];
|
WCHAR guidbuf[80];
|
||||||
|
@ -538,7 +540,7 @@ HRESULT WINAPI RegisterActiveObject(
|
||||||
* Success: S_OK.
|
* Success: S_OK.
|
||||||
* Failure: HRESULT code.
|
* Failure: HRESULT code.
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI RevokeActiveObject(DWORD xregister,LPVOID reserved)
|
HRESULT WINAPI DECLSPEC_HOTPATCH RevokeActiveObject(DWORD xregister,LPVOID reserved)
|
||||||
{
|
{
|
||||||
LPRUNNINGOBJECTTABLE runobtable;
|
LPRUNNINGOBJECTTABLE runobtable;
|
||||||
HRESULT ret;
|
HRESULT ret;
|
||||||
|
@ -565,7 +567,7 @@ HRESULT WINAPI RevokeActiveObject(DWORD xregister,LPVOID reserved)
|
||||||
* Success: S_OK.
|
* Success: S_OK.
|
||||||
* Failure: HRESULT code.
|
* 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];
|
WCHAR guidbuf[80];
|
||||||
HRESULT ret;
|
HRESULT ret;
|
||||||
|
|
Loading…
Reference in New Issue