2023-09-29 11:28:17 +02:00
|
|
|
#ifndef __VRCLIENT_UNIX_PRIVATE_H
|
|
|
|
#define __VRCLIENT_UNIX_PRIVATE_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
|
2023-09-30 10:48:58 +02:00
|
|
|
#include "unixlib.h"
|
2023-09-29 11:28:17 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/list.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2023-10-02 20:49:03 +02:00
|
|
|
extern VkDevice_T *(WINAPI *p_get_native_VkDevice)( VkDevice_T * );
|
|
|
|
extern VkInstance_T *(WINAPI *p_get_native_VkInstance)( VkInstance_T * );
|
|
|
|
extern VkPhysicalDevice_T *(WINAPI *p_get_native_VkPhysicalDevice)( VkPhysicalDevice_T * );
|
|
|
|
extern VkPhysicalDevice_T *(WINAPI *p_get_wrapped_VkPhysicalDevice)( VkInstance_T *, VkPhysicalDevice_T * );
|
|
|
|
extern VkQueue_T *(WINAPI *p_get_native_VkQueue)( VkQueue_T * );
|
|
|
|
|
2023-09-29 11:28:17 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2023-09-30 14:15:29 +02:00
|
|
|
#include "unix_private_generated.h"
|
|
|
|
|
2023-09-29 11:28:17 +02:00
|
|
|
#endif /* __VRCLIENT_UNIX_PRIVATE_H */
|