#include <caml/memory.h>
#include <caml/custom.h>
#include <caml/callback.h>
+#include <assert.h>
#include "mlgdomevalue.h"
#include "c_mathml_editor.h"
+#undef assert
+#define assert(x) {}
+
typedef struct
{
Editor* c_editor;
ml_Editor*
Editor_val(value v)
{
- ml_Editor* editor = (ml_Editor*) Data_custom_val(v);
+ ml_Editor* editor = *((ml_Editor**) Data_custom_val(v));
assert(editor != NULL);
return editor;
}
remove_global_root(&editor->callback);
c_mathml_editor_destroy(editor->c_editor);
+ free(editor);
}
void
custom_deserialize_default
};
- value v = alloc_custom(&ops, sizeof(ml_Editor), 0, 1);
- ml_Editor* ml_editor = (ml_Editor*) Data_custom_val(v);
+ value v = alloc_custom(&ops, sizeof(ml_Editor*), 0, 1);
+ ml_Editor** ml_editor_ref = (ml_Editor**) Data_custom_val(v);
+ ml_Editor* ml_editor = *ml_editor_ref = malloc(sizeof(ml_Editor));
ml_editor->c_editor = c_mathml_editor_new(Document_val(dictionary),
Document_val(tml_mml),
Document_val(tml_tex),