2026-05-03 13:11:22 +01:00
|
|
|
#include <fx/macros.h>
|
|
|
|
|
#include <fx/reflection/assembly.h>
|
|
|
|
|
|
2026-05-05 21:16:31 +01:00
|
|
|
FX_ASSEMBLY_BEGIN(fx_runtime)
|
2026-05-03 13:11:22 +01:00
|
|
|
FX_ASSEMBLY_NAME("fx.runtime");
|
|
|
|
|
FX_ASSEMBLY_VERSION(1, 0, 0, 0);
|
|
|
|
|
FX_ASSEMBLY_EXPORT_TYPE("fx", "stream", fx_stream);
|
|
|
|
|
FX_ASSEMBLY_EXPORT_TYPE("fx", "string", fx_string);
|
|
|
|
|
FX_ASSEMBLY_EXPORT_TYPE("fx", "stringstream", fx_stringstream);
|
|
|
|
|
FX_ASSEMBLY_EXPORT_TYPE("fx", "iterator", fx_iterator);
|
|
|
|
|
FX_ASSEMBLY_EXPORT_TYPE("fx.reflection", "assembly", fx_assembly);
|
2026-05-05 21:16:31 +01:00
|
|
|
FX_ASSEMBLY_END(fx_runtime)
|