mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 15:12:23 +01:00
byuu says: Changelog: - synchronized tomoko, loki, icarus with extensive changes to nall (118KiB diff)
19 lines
281 B
C++
19 lines
281 B
C++
#if defined(Hiro_ComboEdit)
|
|
|
|
namespace hiro {
|
|
|
|
struct pComboEditItem : pObject {
|
|
Declare(ComboEditItem, Object)
|
|
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto _parent() -> maybe<pComboEdit&>;
|
|
|
|
GtkTreeIter gtkIter;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|