Commit 929de484 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

dinput/tests: Put the calling convention inside the function pointer parentheses.

parent 78e0caa5
......@@ -48,11 +48,11 @@
#include "windows.gaming.input.forcefeedback.h"
#undef Size
static HRESULT WINAPI (*pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT WINAPI (*pRoInitialize)( RO_INIT_TYPE );
static HRESULT WINAPI (*pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT WINAPI (*pWindowsDeleteString)( HSTRING str );
static const WCHAR* WINAPI (*pWindowsGetStringRawBuffer)( HSTRING, UINT32* );
static HRESULT (WINAPI *pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT (WINAPI *pRoInitialize)( RO_INIT_TYPE );
static HRESULT (WINAPI *pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT (WINAPI *pWindowsDeleteString)( HSTRING str );
static const WCHAR* (WINAPI *pWindowsGetStringRawBuffer)( HSTRING, UINT32* );
static BOOL load_combase_functions(void)
{
......
......@@ -50,10 +50,10 @@
#include "windows.gaming.input.custom.h"
#undef Size
static HRESULT WINAPI (*pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT WINAPI (*pRoInitialize)( RO_INIT_TYPE );
static HRESULT WINAPI (*pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT WINAPI (*pWindowsDeleteString)( HSTRING str );
static HRESULT (WINAPI *pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT (WINAPI *pRoInitialize)( RO_INIT_TYPE );
static HRESULT (WINAPI *pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT (WINAPI *pWindowsDeleteString)( HSTRING str );
static BOOL load_combase_functions(void)
{
......
......@@ -47,11 +47,11 @@
#include "windows.gaming.input.h"
#undef Size
static HRESULT WINAPI (*pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT WINAPI (*pRoInitialize)( RO_INIT_TYPE );
static HRESULT WINAPI (*pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT WINAPI (*pWindowsDeleteString)( HSTRING str );
static const WCHAR* WINAPI (*pWindowsGetStringRawBuffer)( HSTRING, UINT32* );
static HRESULT (WINAPI *pRoGetActivationFactory)( HSTRING, REFIID, void** );
static HRESULT (WINAPI *pRoInitialize)( RO_INIT_TYPE );
static HRESULT (WINAPI *pWindowsCreateString)( const WCHAR*, UINT32, HSTRING* );
static HRESULT (WINAPI *pWindowsDeleteString)( HSTRING str );
static const WCHAR* (WINAPI *pWindowsGetStringRawBuffer)( HSTRING, UINT32* );
static BOOL load_combase_functions(void)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment