From 3795b390e6923670d5510acc37315dc9e3668b09 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 12 Aug 2012 14:54:45 +0200 Subject: Basic structure for frames --- src/storycode.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'src/storycode.c') diff --git a/src/storycode.c b/src/storycode.c index f3c2e27..446d277 100644 --- a/src/storycode.c +++ b/src/storycode.c @@ -3,7 +3,7 @@ * * Colloquium - A tiny presentation program * - * Copyright (c) 2011 Thomas White + * Copyright (c) 2012 Thomas White * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -26,5 +26,20 @@ #endif #include +#include #include "storycode.h" +#include "presentation.h" + + +struct frame *unpack_storycode(const char *sc) +{ + struct frame *fr; + + fr = calloc(1, sizeof(struct frame)); + if ( fr == NULL ) return NULL; + + + + return fr; +} -- cgit v1.2.3