ReactOS 0.4.16-dev-716-g2b2bdab
|
Go to the source code of this file.
Classes | |
struct | list< _Tp, > |
Macros | |
#define | __WINE_SERVER_LIST_INLINE static |
#define | LIST_FOR_EACH(cursor, list) for ((cursor) = (list)->next; (cursor) != (list); (cursor) = (cursor)->next) |
#define | LIST_FOR_EACH_SAFE(cursor, cursor2, list) |
#define | LIST_FOR_EACH_ENTRY(elem, list, type, field) |
#define | LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, list, type, field) |
#define | LIST_FOR_EACH_REV(cursor, list) for ((cursor) = (list)->prev; (cursor) != (list); (cursor) = (cursor)->prev) |
#define | LIST_FOR_EACH_SAFE_REV(cursor, cursor2, list) |
#define | LIST_FOR_EACH_ENTRY_REV(elem, list, type, field) |
#define | LIST_FOR_EACH_ENTRY_SAFE_REV(cursor, cursor2, list, type, field) |
#define | LIST_INIT(list) { &(list), &(list) } |
#define | LIST_ENTRY(elem, type, field) ((type *)((char *)(elem) - (unsigned long)(&((type *)0)->field))) |
Definition at line 78 of file list.h.
Referenced by add_source_to_list(), add_wildcard(), list_add_head(), ME_InsertOLEFromCursor(), and SYSLINK_AppendDocItem().
Definition at line 87 of file list.h.
Referenced by add_component_by_priority(), add_files_to_folder(), add_resource_data_entry(), add_resource_dir_entry(), add_source_to_list(), add_wildcard(), CertAddStoreToCollection(), get_cookie_container(), insert_assembly(), list_add_tail(), queue_add_timer(), timerqueue_thread_proc(), and TpSetTimer().
Definition at line 155 of file list.h.
Referenced by ACTION_FinishCustomActions(), add_func_desc(), add_interface_typeinfo(), add_structure_typeinfo(), check_hook_thread(), compare_function_decl_rb(), dequeue_task(), enum_copy_job_create(), EnumBackgroundCopyFilesConstructor(), enumerate_processes(), ICreateTypeLib2_fnSaveAllChanges(), IRichEditOle_fnGetObjectCount(), is_netmeeting_running(), MimeBody_GetParameters(), OutputQueue_ReceiveMultiple(), OutputQueueImpl_ThreadProc(), process_enum_GetCount(), SLTG_DoRefs(), TLB_copy_all_custdata(), type_new_function(), WMSFT_compile_custdata(), WMSFT_compile_guids(), WMSFT_compile_impinfo(), write_client_call_routine(), write_clientinterfacedecl(), write_rundown_routines(), write_serverinterfacedecl(), and write_union_tfs().
__WINE_SERVER_LIST_INLINE int list_empty | ( | const struct list * | list | ) |
__WINE_SERVER_LIST_INLINE void list_init | ( | struct list * | list | ) |
Definition at line 176 of file list.h.
Referenced by dialog_set_tab_order(), shader_sm4_free(), and shader_sm4_read_instruction().
__WINE_SERVER_LIST_INLINE struct list * list_next | ( | const struct list * | list, |
const struct list * | elem | ||
) |
Definition at line 115 of file list.h.
Referenced by compare_function_decl_rb(), compare_hlsl_types(), compare_param_hlsl_types(), CompartmentEnumGuid_Next(), CompartmentEnumGuid_Skip(), ComponentEnum_Next(), ComponentEnum_Skip(), context_get_entry(), CRYPT_CollectionAdvanceEnum(), d3d_device3_NextViewport(), d3d_viewport_NextLight(), D3DXLoadMeshFromXInMemory(), D3DXLoadSkinMeshFromXof(), dict_enum_Next(), dict_enum_Skip(), enum_components_Next(), enum_groups_Next(), EnumTfDocumentMgr_Next(), EnumTfDocumentMgr_Skip(), find_next(), get_body(), get_keyitem_pair(), get_struct_fc(), heap_pool_clear(), IAssemblyEnumImpl_GetNextAssembly(), inf_next_section(), inf_section_next_value(), list_head(), MemStore_enumContext(), notify_remove_pair(), Resync(), ScanDiff(), shader_glsl_load_constants_i(), shader_glsl_load_constantsB(), ShowDiff(), SkipIdentical(), SkipIdenticalN(), TextCompare(), vbnamespacemanager_popContext(), write_enums(), write_range_tfs(), write_remoting_arg(), and xmlreader_MoveToNextAttribute().
__WINE_SERVER_LIST_INLINE struct list * list_prev | ( | const struct list * | list, |
const struct list * | elem | ||
) |
Definition at line 123 of file list.h.
Referenced by context_get_entry(), get_body(), list_tail(), and ShowDiff().
__WINE_SERVER_LIST_INLINE void list_remove | ( | struct list * | elem | ) |
Definition at line 137 of file list.h.
Referenced by context_find_fbo_entry(), context_get_entry(), d3d_device3_NextViewport(), d3d_viewport_NextLight(), find_array_or_string_in_struct(), get_body(), process_timer(), release_children(), SYSLINK_GetPrevLink(), test_AppendListToTail(), type_union_get_cases(), write_output_buffer(), and write_user_quad_list().