mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
libs/vkd3d-utils: Get rid of unnecessary WINAPI.
This commit is contained in:
parent
53e0839698
commit
9d5e4daf84
@ -30,7 +30,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
typedef BOOL (WINAPI *vkd3d_signal_event_pfn)(HANDLE event);
|
typedef BOOL (*vkd3d_signal_event_pfn)(HANDLE event);
|
||||||
|
|
||||||
struct vkd3d_device_create_info
|
struct vkd3d_device_create_info
|
||||||
{
|
{
|
||||||
@ -38,7 +38,7 @@ struct vkd3d_device_create_info
|
|||||||
vkd3d_signal_event_pfn signal_event_pfn;
|
vkd3d_signal_event_pfn signal_event_pfn;
|
||||||
};
|
};
|
||||||
|
|
||||||
HRESULT WINAPI vkd3d_create_device(const struct vkd3d_device_create_info *create_info,
|
HRESULT vkd3d_create_device(const struct vkd3d_device_create_info *create_info,
|
||||||
REFIID riid, void **device);
|
REFIID riid, void **device);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -34,10 +34,10 @@ extern "C" {
|
|||||||
#define WAIT_FAILED (~0u)
|
#define WAIT_FAILED (~0u)
|
||||||
#define INFINITE (~0u)
|
#define INFINITE (~0u)
|
||||||
|
|
||||||
HANDLE WINAPI vkd3d_create_event(void);
|
HANDLE vkd3d_create_event(void);
|
||||||
BOOL WINAPI vkd3d_signal_event(HANDLE event);
|
BOOL vkd3d_signal_event(HANDLE event);
|
||||||
unsigned int WINAPI vkd3d_wait_event(HANDLE event, unsigned int milliseconds);
|
unsigned int vkd3d_wait_event(HANDLE event, unsigned int milliseconds);
|
||||||
void WINAPI vkd3d_destroy_event(HANDLE event);
|
void vkd3d_destroy_event(HANDLE event);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ HRESULT WINAPI D3D12CreateDevice(IUnknown *adapter,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Events */
|
/* Events */
|
||||||
HANDLE WINAPI vkd3d_create_event(void)
|
HANDLE vkd3d_create_event(void)
|
||||||
{
|
{
|
||||||
struct vkd3d_event *event;
|
struct vkd3d_event *event;
|
||||||
int rc;
|
int rc;
|
||||||
@ -78,7 +78,7 @@ HANDLE WINAPI vkd3d_create_event(void)
|
|||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int WINAPI vkd3d_wait_event(HANDLE event, unsigned int milliseconds)
|
unsigned int vkd3d_wait_event(HANDLE event, unsigned int milliseconds)
|
||||||
{
|
{
|
||||||
struct vkd3d_event *impl = event;
|
struct vkd3d_event *impl = event;
|
||||||
int rc;
|
int rc;
|
||||||
@ -121,7 +121,7 @@ unsigned int WINAPI vkd3d_wait_event(HANDLE event, unsigned int milliseconds)
|
|||||||
return WAIT_FAILED;
|
return WAIT_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI vkd3d_signal_event(HANDLE event)
|
BOOL vkd3d_signal_event(HANDLE event)
|
||||||
{
|
{
|
||||||
struct vkd3d_event *impl = event;
|
struct vkd3d_event *impl = event;
|
||||||
int rc;
|
int rc;
|
||||||
@ -140,7 +140,7 @@ BOOL WINAPI vkd3d_signal_event(HANDLE event)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WINAPI vkd3d_destroy_event(HANDLE event)
|
void vkd3d_destroy_event(HANDLE event)
|
||||||
{
|
{
|
||||||
struct vkd3d_event *impl = event;
|
struct vkd3d_event *impl = event;
|
||||||
int rc;
|
int rc;
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#define INITGUID
|
#define INITGUID
|
||||||
#include "vkd3d_private.h"
|
#include "vkd3d_private.h"
|
||||||
|
|
||||||
HRESULT WINAPI vkd3d_create_device(const struct vkd3d_device_create_info *create_info,
|
HRESULT vkd3d_create_device(const struct vkd3d_device_create_info *create_info,
|
||||||
REFIID riid, void **device)
|
REFIID riid, void **device)
|
||||||
{
|
{
|
||||||
struct d3d12_device *object;
|
struct d3d12_device *object;
|
||||||
|
Loading…
Reference in New Issue
Block a user