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/format.h>
7
8
9typedef struct Formattable {
10 ObjIface* _implements;
11 ObjIface* _parent;
12 size_t _size;
13
14 bool (*format)(_In_ void* self, FMTVar* v, string* out);
15} Formattable;
16extern Formattable Formattable_tmpl;
17
CX Object System - Object-oriented programming in C.
Format variable descriptor for Formattable interface implementations.
Definition format.h:165