Remove extern "C" from internal headers
[lttng-tools.git] / src / common / filter.h
index 2cbdd14a96764f2ed64f7824ca316f82d6418e02..305434bf6e0d1a5de3e626d6e6ed114ec403ac69 100644 (file)
@@ -16,26 +16,21 @@ struct bytecode_symbol_iterator;
  * Create an iterator on a bytecode's symbols. The iterator points to the
  * first element after creation.
  */
-LTTNG_HIDDEN
 struct bytecode_symbol_iterator *bytecode_symbol_iterator_create(
-               struct lttng_filter_bytecode *bytecode);
+               struct lttng_bytecode *bytecode);
 
 /*
  * Advance iterator of one element.
  *
  * Returns 0 if a next element exists or a negative value at the end.
  */
-LTTNG_HIDDEN
 int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it);
 
-LTTNG_HIDDEN
 int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it);
 
-LTTNG_HIDDEN
 const char *bytecode_symbol_iterator_get_name(
                struct bytecode_symbol_iterator *it);
 
-LTTNG_HIDDEN
 void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it);
 
 #endif /* LTTNG_COMMON_FILTER_H */
This page took 0.023248 seconds and 4 git commands to generate.