aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'function.h')
-rw-r--r--function.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/function.h b/function.h
index e130bcef..7ee12d61 100644
--- a/function.h
+++ b/function.h
@@ -69,8 +69,15 @@ int function_exists( const wchar_t *name );
void function_get_names( array_list_t *list,
int get_hidden );
+/**
+ Returns tha absolute path of the file where the specified function
+ was defined. Returns 0 if the file was defined on the commandline.
+*/
const wchar_t *function_get_definition_file( const wchar_t *name );
+/**
+ Returns the linenumber where the definition of the specified function started
+*/
int function_get_definition_offset( const wchar_t *name );
#endif