Merge pull request #12 from realitix/c_mangling
Fix name mangling for C
This commit is contained in:
commit
25c44a9320
1 changed files with 8 additions and 0 deletions
|
@ -23,6 +23,10 @@
|
|||
#ifndef AMD_VULKAN_MEMORY_ALLOCATOR_H
|
||||
#define AMD_VULKAN_MEMORY_ALLOCATOR_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/** \mainpage Vulkan Memory Allocator
|
||||
|
||||
\tableofcontents
|
||||
|
@ -1235,6 +1239,10 @@ void vmaDestroyImage(
|
|||
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // AMD_VULKAN_MEMORY_ALLOCATOR_H
|
||||
|
||||
// For Visual Studio IntelliSense.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue