view saveload.h @ 147:f3686f60985d

Sort of working port of framework. Transaction bug seems to be getting in the way. Going to work around, but want the old version in the repo so I can test later.
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:15:02 -0500
parents 76568becd6d6
children
line wrap: on
line source

#ifndef	SAVELOAD_H__
#define	SAVELOAD_H__

#include "structs.h"

void save_program(program * prog, char * filename);
program * load_program(char * filename);
program * new_program(int def_storage, int comp_storage);

#endif //SAVELOAD_H__