CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
formattable.h
1#pragma once
2// This header file is auto-generated!
3// Do not make changes to this file or they will be overwritten.
4// clang-format off
5#include <cx/obj.h>
6#include <cx/struct.h>
7#include <cx/format.h>
8
9CX_C_BEGIN
10
11
12typedef struct Formattable {
13 ObjIface* _implements;
14 ObjIface* _parent;
15 size_t _size;
16
17 bool (*format)(_In_ void* self, FMTVar* v, string* out);
18} Formattable;
19extern Formattable Formattable_tmpl;
20
21CX_C_END
CX Struct System - Introspectable, serializable POD structures in C.
CX Object System - Object-oriented programming in C.
Format variable descriptor for Formattable interface implementations.
Definition format.h:226