mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-15 01:11:27 +00:00
e4f75791ce
Dependencies on vkparse.hinc were spreading through the code which I didn't want as that removes a lot of the automation from the automake files. This keeps all parser code internal to vkparse.c's scope, and any accesses required for enum and struct (not yet) definitions can be fetched by name.
17 lines
293 B
Objective-C
17 lines
293 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkenum_h
|
|
#define __renderer_vulkan_vkgen_vkenum_h
|
|
|
|
#include "vktype.h"
|
|
|
|
@class PLItem;
|
|
|
|
@interface Enum: Type
|
|
{
|
|
int prefix_length;
|
|
}
|
|
-(void) writeTable;
|
|
-(void) writeSymtabInit;
|
|
-(void) writeSymtabEntry;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkenum_h
|