commit | 77ed6142daed1e068fbda64405d0de9845e40e1a | [log] [tgz] |
---|---|---|
author | Shih-wei Liao <sliao@google.com> | Wed Apr 07 12:21:42 2010 -0700 |
committer | Shih-wei Liao <sliao@google.com> | Wed Apr 07 12:21:42 2010 -0700 |
tree | 41a727ea2a646840efc748858f5d94f80bbbcb56 |
libbcc Change-Id: Ieaa3ebd5a38f370752495549f8870b534eeedfc5
diff --git a/bcc_runtime.h b/bcc_runtime.h new file mode 100644 index 0000000..8ab9b79 --- /dev/null +++ b/bcc_runtime.h
@@ -0,0 +1,15 @@ +#ifndef _BCC_RUNTIME_H_ +# define _BCC_RUNTIME_H_ + +#ifdef __cplusplus +extern "C" { +#endif + + void ListRuntimeFunction(); +void* FindRuntimeFunction(const char* Name); + +#ifdef __cplusplus +}; +#endif + +#endif /* _BCC_RUNTIME_H_ */