X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fsave.h;h=5b1cdcdd77f86752038cb91011107fb8e333030e;hb=704fd58ea0d87f6cbc6d6689698381a6654c6d7c;hp=93b6afa4a321b46ed8fc8ee06b774bf3b76aea30;hpb=18dbfbb4e0b4e8531e7dd882f3c55d51a8f38985;p=sbcl.git diff --git a/src/runtime/save.h b/src/runtime/save.h index 93b6afa..5b1cdcd 100644 --- a/src/runtime/save.h +++ b/src/runtime/save.h @@ -15,7 +15,10 @@ #include "core.h" extern FILE* open_core_for_saving(char *filename); -extern boolean save_to_filehandle(FILE *file, char *filename, lispobj initfun); -extern boolean save(char *filename, lispobj initfun); +extern void *load_runtime(char *runtime_path, size_t *size_out); +extern FILE *prepare_to_save(char *filename, boolean prepend_runtime, void **runtime_bytes, size_t *runtime_size); +extern boolean save_runtime_to_filehandle(FILE *output, void *runtime_bytes, size_t runtime_size); +extern boolean save_to_filehandle(FILE *file, char *filename, lispobj initfun, boolean make_executable, boolean keep_runtime_options); +extern boolean save(char *filename, lispobj initfun, boolean prepend_runtime, boolean keep_runtime_options); #endif