123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef IMAGEMETER_IMLABEL_H
- #define IMAGEMETER_IMLABEL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdint.h>
- #include <stdbool.h>
- struct IM_Label;
-
- void IM_Label_release(struct IM_Label*);
- bool IM_Label_set_value_from_string(struct IM_Label*, const char* value_string);
- const char* IM_Label_get_value_as_string(const struct IM_Label*);
-
- #ifdef __cplusplus
- }
- #endif
- #endif
|