Take char* instead of char**

This commit is contained in:
Alex Lindsay 2018-05-07 14:41:51 -06:00
parent 411fd288ea
commit 5a863215f3

View file

@ -32,7 +32,7 @@ extern "C" {
int openmc_extend_sources(int32_t n, int32_t* index_start, int32_t* index_end);
int openmc_extend_tallies(int32_t n, int32_t* index_start, int32_t* index_end);
int openmc_filter_get_id(int32_t index, int32_t* id);
int openmc_filter_get_type(int32_t index, const char** type);
int openmc_filter_get_type(int32_t index, const char* type);
int openmc_filter_set_id(int32_t index, int32_t id);
int openmc_filter_set_type(int32_t index, const char* type);
int openmc_finalize();