python avoid double def

This commit is contained in:
nick black 2020-03-10 03:58:10 -04:00
parent be089747a7
commit de520f3aa0
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -322,7 +322,7 @@ typedef struct multiselector_options {
uint64_t bgchannels; // background channels, used only in body
} multiselector_options;
struct ncmultiselector* ncmultiselector_create(struct ncplane* n, int y, int x, const multiselector_options* opts);
int ncselector_selected(bool* selected, unsigned n);
int ncmultiselector_selected(struct ncmultiselector* n, bool* selected, unsigned n);
struct ncplane* ncmultiselector_plane(struct ncmultiselector* n);
bool ncmultiselector_offer_input(struct ncmultiselector* n, const struct ncinput* nc);
void ncmultiselector_destroy(struct ncmultiselector* n, char** item);