mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
403c6eea73
Ruamoko currently doesn't support `const`, so that's not relevant, but recognizing `char *` (via a hack to work around what looks like a bug with type aliasing) allows strings to be handled without having to use a custom parser. Things are still a little clunky for custom parsers, but this seems to be a good start.
9 lines
181 B
Objective-C
9 lines
181 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkstring_h
|
|
#define __renderer_vulkan_vkgen_vkstring_h
|
|
|
|
#include "vktype.h"
|
|
|
|
@interface String: Type
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkstring_h
|