made code C89 compliant (changed unnamed union in attributes)
[libfirm] / ir / be / be.h
index 02a4e1e..17fe081 100644 (file)
@@ -3,9 +3,29 @@
 #define _BE_MAIN_H
 
 void be_init(void);
+
+/**
+ * Main interface to the frontend.
+ */
 void be_main(FILE *file_handle);
 
+/** The type of the debug info retriever function. */
+typedef const char *(*retrieve_dbg_func)(const dbg_info *dbg, unsigned *line);
+
+/**
+ * Sets a debug info retriever.
+ *
+ * @param func   the debug retriever function.
+ */
+void be_set_debug_retrieve(retrieve_dbg_func func);
+
+/**
+ * Retrieve the debug info.
+ */
+const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line);
+
 typedef struct _be_main_env_t be_main_env_t;
+typedef struct _be_irg_t be_irg_t;
 typedef struct _be_options_t be_options_t;
 
-#endif
+#endif /* _BE_MAIN_H */