summaryrefslogtreecommitdiff
path: root/test/lib/testobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/testobject.h')
-rw-r--r--test/lib/testobject.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/lib/testobject.h b/test/lib/testobject.h
new file mode 100644
index 0000000..c72b39f
--- /dev/null
+++ b/test/lib/testobject.h
@@ -0,0 +1,22 @@
+/*
+ * This file is part of libdom test suite.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef testobject_h_
+#define testobject_h_
+
+#include <stdbool.h>
+
+struct TestObject;
+typedef struct TestObject TestObject;
+
+TestObject *test_object_create(int argc, char **argv,
+ const char *uri, bool will_be_modified);
+struct dom_document *test_object_get_doc(TestObject *obj);
+const char *test_object_get_mimetype(TestObject *obj);
+
+#endif
+