Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- M E W E L - typedef struct listbox http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
typedef struct listbox
{
  int  nStrings;                /* number of strings in the listbox */
  int  iTopLine;                /* index of string currently at the top of the box */
  int  iCurrSel;    /* index of currently selected item */
  DWORD flags;              /* status info */
  int  (*pfSort)(); /* ptr to a sorting proc to be used for LB_SORT */
  LIST *strList;                /* linked list of strings */
  HWND hListBox;    /* back reference to listbox window handle */
  int  nColumns;
  int  iLeftCol;
  int  iColWidth;
  WORD *pTabStops;
} LISTBOX;

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson