1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 10:04:21 +03:00
inform7/inbuild/inbuild-module/Chapter 5/Template Services.w
2020-02-21 23:16:23 +00:00

18 lines
400 B
OpenEdge ABL

[Templates::] Template Services.
An Inform 7 website template.
@ =
typedef struct inform_template {
struct inbuild_copy *as_copy;
struct semantic_version_number version;
MEMORY_MANAGEMENT
} inform_template;
inform_template *Templates::new_it(text_stream *name, pathname *P) {
inform_template *T = CREATE(inform_template);
T->as_copy = NULL;
T->version = VersionNumbers::null();
return T;
}