C Specification
The VkOHSurfaceCreateInfoOHOS structure is defined as:
// Provided by VK_OHOS_surface
typedef struct VkOHSurfaceCreateInfoOHOS {
    VkStructureType             sType;
    const void*                 pNext;
    VkSurfaceCreateFlagsOHOS    flags;
    OHNativeWindow*             window;
} VkOHSurfaceCreateInfoOHOS;- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
flagsis reserved for future use.
- 
window: the pointer to a OHNativeWindow to associate the surface with.
or the equivalent
// Provided by VK_OHOS_surface
typedef VkOHSurfaceCreateInfoOHOS VkSurfaceCreateInfoOHOS;Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.