summaryrefslogtreecommitdiff
path: root/core/pmapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/pmapi.c')
-rw-r--r--core/pmapi.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/pmapi.c b/core/pmapi.c
new file mode 100644
index 00000000..f45a7fc6
--- /dev/null
+++ b/core/pmapi.c
@@ -0,0 +1,23 @@
+/* -----------------------------------------------------------------------
+ *
+ * Copyright 1994-2009 H. Peter Anvin - All Rights Reserved
+ * Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
+ *
+ * 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
+ * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
+ * Boston MA 02111-1307, USA; either version 2 of the License, or
+ * (at your option) any later version; incorporated herein by reference.
+ *
+ * ----------------------------------------------------------------------- */
+
+#include <inttypes.h>
+#include <com32.h>
+#include <syslinux/pmapi.h>
+#include "core.h"
+#include "fs.h"
+
+const struct com32_pmapi pm_api_vector =
+{
+ .read_file = pmapi_read_file,
+};