Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windows/utils/fontspec.c')
-rw-r--r--windows/utils/fontspec.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/windows/utils/fontspec.c b/windows/utils/fontspec.c
new file mode 100644
index 00000000..7e8d5175
--- /dev/null
+++ b/windows/utils/fontspec.c
@@ -0,0 +1,43 @@
+/*
+ * Implementation of FontSpec for Windows.
+ */
+
+#include "putty.h"
+
+FontSpec *fontspec_new(const char *name, bool bold, int height, int charset)
+{
+ FontSpec *f = snew(FontSpec);
+ f->name = dupstr(name);
+ f->isbold = bold;
+ f->height = height;
+ f->charset = charset;
+ return f;
+}
+
+FontSpec *fontspec_copy(const FontSpec *f)
+{
+ return fontspec_new(f->name, f->isbold, f->height, f->charset);
+}
+
+void fontspec_free(FontSpec *f)
+{
+ sfree(f->name);
+ sfree(f);
+}
+
+void fontspec_serialise(BinarySink *bs, FontSpec *f)
+{
+ put_asciz(bs, f->name);
+ put_uint32(bs, f->isbold);
+ put_uint32(bs, f->height);
+ put_uint32(bs, f->charset);
+}
+
+FontSpec *fontspec_deserialise(BinarySource *src)
+{
+ const char *name = get_asciz(src);
+ unsigned isbold = get_uint32(src);
+ unsigned height = get_uint32(src);
+ unsigned charset = get_uint32(src);
+ return fontspec_new(name, isbold, height, charset);
+}