#include "usetup.h"
#include <debug.h>
Go to the source code of this file.
Data Structures |
| struct | GENERIC_LIST_ENTRY |
| struct | GENERIC_LIST |
Defines |
| #define | NDEBUG |
Functions |
| PGENERIC_LIST | CreateGenericList (VOID) |
| VOID | DestroyGenericList (PGENERIC_LIST List, BOOLEAN FreeUserData) |
| BOOLEAN | AppendGenericListEntry (PGENERIC_LIST List, PCHAR Text, PVOID UserData, BOOLEAN Current) |
| static VOID | DrawListFrame (PGENERIC_LIST GenericList) |
| static VOID | DrawListEntries (PGENERIC_LIST GenericList) |
| static VOID | DrawScrollBarGenericList (PGENERIC_LIST GenericList) |
| VOID | DrawGenericList (PGENERIC_LIST List, SHORT Left, SHORT Top, SHORT Right, SHORT Bottom) |
| VOID | ScrollPageDownGenericList (PGENERIC_LIST List) |
| VOID | ScrollPageUpGenericList (PGENERIC_LIST List) |
| VOID | ScrollDownGenericList (PGENERIC_LIST List) |
| VOID | ScrollToPositionGenericList (PGENERIC_LIST List, ULONG uIndex) |
| VOID | ScrollUpGenericList (PGENERIC_LIST List) |
| VOID | SetCurrentListEntry (PGENERIC_LIST List, PGENERIC_LIST_ENTRY Entry) |
| PGENERIC_LIST_ENTRY | GetCurrentListEntry (PGENERIC_LIST List) |
| PGENERIC_LIST_ENTRY | GetFirstListEntry (PGENERIC_LIST List) |
| PGENERIC_LIST_ENTRY | GetNextListEntry (PGENERIC_LIST_ENTRY Entry) |
| PVOID | GetListEntryUserData (PGENERIC_LIST_ENTRY List) |
| LPCSTR | GetListEntryText (PGENERIC_LIST_ENTRY List) |
| VOID | GenericListKeyPress (PGENERIC_LIST GenericList, CHAR AsciChar) |
| VOID | SaveGenericListState (PGENERIC_LIST List) |
| VOID | RestoreGenericListState (PGENERIC_LIST List) |