/**************/ /* listbox.h */ /**************/ #ifndef LISTBOX_H #define LISTBOX_H #include "incwin.h" #ifdef __cplusplus extern "C" { #endif int get_items(HWND hWnd,int id, int all,int **items); char *listbox_to_text(HWND hWnd,int id,int all,char *buf,int n); int count_listbox_selsize(HWND hWnd,int id,int all); int delete_from_listbox(HWND hWnd,int id,int all); int select_all_from_listbox(HWND hWnd,int id); typedef enum { SELECTED, ALL }; #ifdef __cplusplus } #endif #endif /* LISTBOX_H */