source: trunk/include/core/scew_extras.h @ 77

Last change on this file since 77 was 77, checked in by dkearney, 19 years ago
  1. initial checkin of RpLibrary? code, includes c++/c/fortran bindings
  2. minor modifications to makefiles to accommodate new code
  3. updated README in src to tell how to compile code in src and test
File size: 473 bytes
Line 
1#ifdef __cplusplus
2extern "C" {
3#endif
4
5extern scew_element*
6scew_element_parent(scew_element const* element);
7
8/**
9 * Returns a list of elements that matches the name specified. The
10 * number of elements is returned in count. The returned pointer must be
11 * freed after using it, calling the <code>scew_element_list_free</code>
12 * function.
13 */
14extern scew_element**
15scew_element_list_all(scew_element const* parent, unsigned int* count);
16
17#ifdef __cplusplus
18}
19#endif
20
Note: See TracBrowser for help on using the repository browser.