Mercurial
changeset 161:87d8d3eb3491
[PostDog] WIP to make it more mordern looking
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 15 Jan 2026 08:29:26 -0800 |
| parents | 948de3f54cea |
| children | 8ceb5d3c6bdd |
| files | MODULE.bazel postdog/BUILD postdog/logo_bigger.png postdog/main.c tags third_party/raylib/BUILD third_party/raylib/custom.c third_party/raylib/custom.h third_party/raylib/include/raygui.h |
| diffstat | 9 files changed, 5128 insertions(+), 194 deletions(-) [+] |
line wrap: on
line diff
--- a/MODULE.bazel Wed Jan 14 19:39:52 2026 -0800 +++ b/MODULE.bazel Thu Jan 15 08:29:26 2026 -0800 @@ -5,7 +5,6 @@ bazel_dep(name = "openssl", version = "3.3.1.bcr.7") bazel_dep(name = "emsdk", version = "4.0.17") - http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") # Android stuff
--- a/postdog/BUILD Wed Jan 14 19:39:52 2026 -0800 +++ b/postdog/BUILD Thu Jan 15 08:29:26 2026 -0800 @@ -19,26 +19,12 @@ "main.c", ], deps = [ - "//third_party/raylib:raylib", + "//third_party/raylib:raylib_custom_ui", "//dowa:dowa", "//seobeo:seobeo_client", + "//third_party/libuv:libuv", ], data = [":all_static_assets",], - linkopts_macos = [ - "-framework CoreVideo", - "-framework IOKit", - "-framework Cocoa", - "-framework GLUT", - "-framework OpenGL", - ], - linkopts_linux = [ - "-lGL", - "-lm", - "-lpthread", - "-ldl", - "-lrt", - "-lX11", - ], static = True )
--- a/postdog/main.c Wed Jan 14 19:39:52 2026 -0800 +++ b/postdog/main.c Thu Jan 15 08:29:26 2026 -0800 @@ -3,7 +3,7 @@ #include <string.h> #include <time.h> #include <sys/stat.h> -#include <pthread.h> +#include <uv.h> #ifdef _WIN32 #include <direct.h> @@ -18,12 +18,11 @@ #endif -#include "third_party/raylib/include/raylib.h" -#define RAYGUI_IMPLEMENTATION -#include "third_party/raylib/include/raygui.h" - #include "dowa/dowa.h" #include "seobeo/seobeo.h" +#include "third_party/raylib/include/raylib.h" +#include "third_party/raylib/include/raygui.h" +#include "third_party/raylib/custom.h" #ifndef POSTDOG_PATHS #define POSTDOG_PATHS "/Users/mrjunejune/zenbu/postdog/history" @@ -39,14 +38,18 @@ #define BODY_BUFFER_LENGTH 1024 * 1024 * 5 #define RESULT_BUFFER_LENGTH 1024 * 1024 * 5 +#define URL_TEXT_DEFAULT "https://httpbin.org/get" +#define HEADER_TEXT_DEFAULT "Content-Type: application/json" +#define BODY_TEXT_DEFAULT "" +#define GET_PARAM_TEXT_DEFAULT "foo bar" + // ============================================================================ // TextArea Component // ============================================================================ #define TEXT_SIZE_DEFAULT 10 // used to calcualte spacing -#define TEXT_AREA_FONT_SIZE 16 #define TEXT_AREA_LINE_HEIGHT 20 -#define TEXT_AREA_PADDING 8 +#define TEXT_AREA_PADDING 30 #define TEXT_AREA_CURSOR_WIDTH 2 #define TEXT_AREA_MAX_UNDO_STATES 64 #define TEXT_AREA_MAX_INSTANCES 8 @@ -184,7 +187,7 @@ strncpy(temp, text + start, len); temp[len] = '\0'; - return MeasureTextEx(GuiGetFont(), temp, font_size, TEXT_SIZE_DEFAULT/TEXT_AREA_FONT_SIZE).x; + return MeasureTextEx(GuiGetFont(), temp, font_size, TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE)).x; } static int GetCharIndexFromPos(const char *text, Rectangle bounds, Vector2 pos, @@ -477,7 +480,7 @@ // Content area float content_height = GetContentHeight(text, bounds, should_text_wrap, - TEXT_AREA_FONT_SIZE, TEXT_AREA_LINE_HEIGHT); + GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); float visible_height = bounds.height - TEXT_AREA_PADDING * 2; float max_scroll = TA_Max_Float(0, content_height - visible_height); @@ -503,7 +506,7 @@ // Mouse Selection if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT) && mouse_in_bounds) { int click_pos = GetCharIndexFromPos(text, bounds, mouse_pos, should_text_wrap, - state->scroll_offset_y, TEXT_AREA_FONT_SIZE, + state->scroll_offset_y, GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); state->cursor_pos = click_pos; state->selection_start = -1; @@ -515,7 +518,7 @@ if (state->is_selecting && IsMouseButtonDown(MOUSE_BUTTON_LEFT)) { int drag_pos = GetCharIndexFromPos(text, bounds, mouse_pos, should_text_wrap, - state->scroll_offset_y, TEXT_AREA_FONT_SIZE, + state->scroll_offset_y, GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); if (drag_pos != state->cursor_pos) { if (state->selection_start < 0) { @@ -848,7 +851,7 @@ // Auto-scroll to keep cursor visible Vector2 cursor_screen = GetCursorScreenPos(text, state->cursor_pos, bounds, should_text_wrap, state->scroll_offset_y, - TEXT_AREA_FONT_SIZE, TEXT_AREA_LINE_HEIGHT); + GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); float visible_top = bounds.y + TEXT_AREA_PADDING; float visible_bottom = bounds.y + bounds.height - TEXT_AREA_PADDING - TEXT_AREA_LINE_HEIGHT; @@ -863,8 +866,10 @@ } // Drawing - DrawRectangleRec(bounds, is_edit_mode ? DARKGRAY : (Color){40, 40, 40, 255}); - DrawRectangleLinesEx(bounds, 1, is_edit_mode ? WHITE : GRAY); + DrawRectangleRounded(bounds, 0.2, 1, is_edit_mode ? DARKGRAY : (Color){40, 40, 40, 255}); + // DrawRectangleRec(bounds, is_edit_mode ? DARKGRAY : (Color){40, 40, 40, 255}); + // DrawRectangleLinesEx(bounds, 1, is_edit_mode ? WHITE : GRAY); + DrawRectangleRoundedLines(bounds, 0.2, 1, is_edit_mode ? WHITE : GRAY); BeginScissorMode((int)bounds.x, (int)bounds.y, (int)bounds.width, (int)bounds.height); @@ -889,7 +894,7 @@ boolean should_draw_line = is_end || is_newline; if (should_text_wrap && !is_end && !is_newline) { - int line_width = MeasureTextRange(text, line_char_start, i + 1, TEXT_AREA_FONT_SIZE); + int line_width = MeasureTextRange(text, line_char_start, i + 1, GuiGetStyle(DEFAULT, TEXT_SIZE)); if (line_width > content_width && i > line_char_start) { should_draw_line = TRUE; } @@ -902,8 +907,8 @@ int highlight_start = TA_Max_Int(sel_min, line_char_start); int highlight_end = TA_Min_Int(sel_max, line_end); - float x1 = content_x + MeasureTextRange(text, line_char_start, highlight_start, TEXT_AREA_FONT_SIZE); - float x2 = content_x + MeasureTextRange(text, line_char_start, highlight_end, TEXT_AREA_FONT_SIZE); + float x1 = content_x + MeasureTextRange(text, line_char_start, highlight_start, GuiGetStyle(DEFAULT, TEXT_SIZE)); + float x2 = content_x + MeasureTextRange(text, line_char_start, highlight_end, GuiGetStyle(DEFAULT, TEXT_SIZE)); float y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT; DrawRectangle((int)x1, (int)y, (int)(x2 - x1), TEXT_AREA_LINE_HEIGHT, @@ -927,7 +932,7 @@ boolean should_draw_line = is_end || is_newline; if (!is_end && !is_newline) { - int line_width = MeasureTextRange(text, line_char_start, i + 1, TEXT_AREA_FONT_SIZE); + int line_width = MeasureTextRange(text, line_char_start, i + 1, GuiGetStyle(DEFAULT, TEXT_SIZE)); if (line_width > content_width && i > line_char_start) { should_draw_line = TRUE; } @@ -944,7 +949,7 @@ .y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT }; DrawTextEx(GuiGetFont(), line_buffer, draw_text_vector, - TEXT_AREA_FONT_SIZE, TEXT_SIZE_DEFAULT/TEXT_AREA_FONT_SIZE, WHITE); + GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE), WHITE); visual_line++; line_char_start = is_newline ? i + 1 : i; @@ -970,7 +975,7 @@ .y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT }; DrawTextEx(GuiGetFont(), line_buffer, draw_text_vector , - TEXT_AREA_FONT_SIZE, TEXT_SIZE_DEFAULT/TEXT_AREA_FONT_SIZE, WHITE); + GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE), WHITE); } visual_line++; line_start = i + 1; @@ -982,7 +987,7 @@ if (is_edit_mode && state->cursor_visible) { Vector2 cursor_pos = GetCursorScreenPos(text, state->cursor_pos, bounds, should_text_wrap, state->scroll_offset_y, - TEXT_AREA_FONT_SIZE, TEXT_AREA_LINE_HEIGHT); + GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); DrawRectangle((int)cursor_pos.x, (int)cursor_pos.y, TEXT_AREA_CURSOR_WIDTH, TEXT_AREA_LINE_HEIGHT, WHITE); @@ -1066,6 +1071,8 @@ #define TEXT_AREA_ID_RESULT 5 static uint32 counter = 0; +static uv_mutex_t history_mutex; +static uv_loop_t *main_loop = NULL; HistoryItem *history_items = NULL; HistoryItem *new_history_items = NULL; @@ -1077,7 +1084,7 @@ int active_input_tab = 0; Seobeo_WebSocket *ws = NULL; boolean WS_BREAK = FALSE; -pthread_t websocket_thread_id; +uv_thread_t websocket_thread_id; Color TEXT_COLOR = BLACK; boolean LOADING = FALSE; @@ -1098,8 +1105,13 @@ char *title = malloc(sizeof(char) * 512); if (!fgets(title, 512, file)) { fclose(file); + free(title); return strdup(filename); } + fclose(file); + + // Strip trailing newline + title[strcspn(title, "\n")] = '\0'; return title; } @@ -1151,6 +1163,10 @@ } closedir(dp); #endif + + // Update the caller's pointer in case array was reallocated + *p_file_arr = file_arr; + int count = Dowa_Array_Length(file_arr); if (count > 1) { qsort(file_arr, count, sizeof(HistoryItem), CompareHistoryItemsByDate); @@ -1200,25 +1216,25 @@ return 0; } -char *PostDog_Construct_URL(char *filename) +char *PostDog_Construct_URL(char *filename, char *out_buffer, size_t buffer_size) { - char full_file_path[512] = {0}; - snprintf(full_file_path, 512, "%s/%s", POSTDOG_PATHS, filename); - return &full_file_path; + snprintf(out_buffer, buffer_size, "%s/%s", POSTDOG_PATHS, filename); + return out_buffer; } -void PostDog_History_CreateFile(char *filename, char* values) +boolean PostDog_History_CreateFile(char *filename, char* values) { char full_file_path[512] = {0}; snprintf(full_file_path, 512, "%s/%s", POSTDOG_PATHS, filename); FILE *file = fopen(full_file_path, "w"); if (!file) { - printf("Failed to create a file: %s\n", full_file_path); - return; + fprintf(stderr, "Failed to create a file: %s\n", full_file_path); + return FALSE; } fwrite(values, 1, strlen(values), file); fclose(file); + return TRUE; } void PostDog_Request_SaveFile(void) @@ -1269,17 +1285,23 @@ exit(EXIT_FAILURE); } + uv_mutex_lock(&history_mutex); + int32 seed = (uint32)time(NULL) ^ counter++; Dowa_String_UUID(seed, uuid4); snprintf(filename, 1024, "%s.txt", uuid4); - PostDog_History_CreateFile(filename, new_file); - HistoryItem item = {0}; - item.filename = strdup(filename); - item.title = strdup(title); - item.deleted = FALSE; + if (PostDog_History_CreateFile(filename, new_file)) + { + HistoryItem item = {0}; + item.filename = strdup(filename); + item.title = strdup(title); + item.deleted = FALSE; - Dowa_Array_Push(new_history_items, item); + Dowa_Array_Push(new_history_items, item); + } + + uv_mutex_unlock(&history_mutex); Dowa_Arena_Free(arena); } @@ -1315,37 +1337,40 @@ int PostDog_Websocket_Send(void) { if (Seobeo_WebSocket_Send_Text(ws, input_body_array[active_input_tab]) < 0) + { snprintf(result_text + strlen(result_text), RESULT_BUFFER_LENGTH - strlen(result_text), "Failed to send message\n"); - else - snprintf(result_text + strlen(result_text), RESULT_BUFFER_LENGTH - strlen(result_text), - "\n%s", input_body_array[active_input_tab]); + return -1; + } + snprintf(result_text + strlen(result_text), RESULT_BUFFER_LENGTH - strlen(result_text), + "\n%s", input_body_array[active_input_tab]); + return 0; } -void PostDog_Websocket_Destroy(pthread_t thread_id) +void PostDog_Websocket_Destroy(uv_thread_t thread_id) { Seobeo_WebSocket_Destroy(ws); - pthread_detach(thread_id); + uv_thread_join(&thread_id); } -void *PostDog_Websocket_Start(void *arg) +void PostDog_Websocket_Start(void *arg) { PostDog_Websocket_Connect(); PostDog_Websocket_Listen(); - return NULL; } -pthread_t PostDog_Websocket_Start_Thread() +uv_thread_t PostDog_Websocket_Start_Thread() { - pthread_t thread_id; + uv_thread_t thread_id; - if (pthread_create(&thread_id, NULL, PostDog_Websocket_Start, NULL) != 0) + if (uv_thread_create(&thread_id, PostDog_Websocket_Start, NULL) != 0) { perror("Failed to create thread"); - return 0; + memset(&thread_id, 0, sizeof(thread_id)); + return thread_id; } - return thread_id; + return thread_id; } int PostDog_Http_Request(void) @@ -1405,24 +1430,33 @@ return 0; } -void *PostDog_Http_Thread(void *arg) +void PostDog_Http_Work(uv_work_t *req) { PostDog_Http_Request(); printf("HTTP request finished.\n"); +} + +void PostDog_Http_Work_Done(uv_work_t *req, int status) +{ LOADING = FALSE; - return NULL; + free(req); } void PostDog_Http_Thread_Request() { - pthread_t thread_id; - LOADING = TRUE; - if (pthread_create(&thread_id, NULL, PostDog_Http_Thread, NULL) != 0) + uv_work_t *work_req = malloc(sizeof(uv_work_t)); + if (!work_req) { - perror("Failed to create thread"); + perror("Failed to allocate work request"); return; } - pthread_detach(thread_id); + LOADING = TRUE; + if (uv_queue_work(main_loop, work_req, PostDog_Http_Work, PostDog_Http_Work_Done) != 0) + { + perror("Failed to queue work"); + free(work_req); + LOADING = FALSE; + } } void PostDog_Update_URL(void) @@ -1557,101 +1591,12 @@ Dowa_Arena_Free(split_arena); } -Rectangle AddPadding(Rectangle rect, float padding) -{ - return (Rectangle){ - rect.x + padding, - rect.y + padding, - rect.width - (2 * padding), - rect.height - (2 * padding) - }; -} - -Rectangle AddPaddingAll(Rectangle rect, float top, float right,float down, float left) -{ - return (Rectangle){ - rect.x + left, - rect.y + top, - rect.width - (right + left), - rect.height - (top + down), - }; -} - - - -Rectangle AddPaddingHorizontal(Rectangle rect, float padding) -{ - return (Rectangle){ - rect.x + padding, - rect.y, - rect.width - (2 * padding), - rect.height - }; -} - -Rectangle AddPaddingVertical(Rectangle rect, float padding) -{ - return (Rectangle){ - rect.x, - rect.y + padding, - rect.width, - rect.height - (2 * padding) - }; -} - -// Layout helper functions -Rectangle RightOf(Rectangle ref, float padding) -{ - return (Rectangle){ - .x = ref.x + ref.width + padding, - .y = ref.y, - .width = 0, - .height = ref.height - }; -} - -Rectangle Below(Rectangle ref, float padding) -{ - return (Rectangle){ - .x = ref.x, - .y = ref.y + ref.height + padding, - .width = ref.width, - .height = 0 - }; -} - -Rectangle LeftColumn(Rectangle container, float ratio, float padding) -{ - return (Rectangle){ - .x = container.x + padding, - .y = container.y + padding, - .width = (container.width * ratio) - padding, - .height = container.height - (2 * padding) - }; -} - -Rectangle RightColumn(Rectangle container, Rectangle leftCol, float padding) -{ - return (Rectangle){ - .x = leftCol.x + leftCol.width + padding, - .y = container.y + padding, - .width = container.width - leftCol.width - (3 * padding), - .height = container.height - (2 * padding) - }; -} - -Rectangle HorizontalSplit(Rectangle container, float ratio) -{ - return (Rectangle){ - .x = container.x, - .y = container.y, - .width = container.width * ratio, - .height = container.height - }; -} - int main() { + // -- initialize libuv --// + main_loop = uv_default_loop(); + uv_mutex_init(&history_mutex); + // -- initizlied --// InitWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "PostDog"); SetWindowState(FLAG_WINDOW_RESIZABLE); @@ -1660,16 +1605,17 @@ Font customFont = LoadFontEx("postdog/Roboto-Regular.ttf", 20, 0, 0); GuiSetFont(customFont); GuiSetStyle(DEFAULT, TEXT_SIZE, 15); - Image logo_original = LoadImage("postdog/epi_all_colors.png"); - ImageResize(&logo_original, 60, 60); + Image logo_original = LoadImage("postdog/logo_bigger.png"); + ImageResize(&logo_original, 200, 600); SetWindowIcon(logo_original); Texture2D logo_texture = LoadTextureFromImage(logo_original); UnloadImage(logo_original); // Arena for text area undo states - g_text_area_arena = Dowa_Arena_Create(1024 * 1024 * 8); // 8MB for undo states + g_text_area_arena = Dowa_Arena_Create(1024 * 1024 * 4); // -- Starting pos ---// + Rectangle full_screen = { 0 }; Rectangle history_sidebar_rect = { 0 }; Dowa_Array_Reserve(history_items, 10); Dowa_Array_Reserve(new_history_items, 10); @@ -1686,15 +1632,16 @@ // Initialize global UI state url_input_text = (char *)malloc(sizeof(char) * URL_TEXT_BUFFER_LENGTH); - snprintf(url_input_text, URL_TEXT_BUFFER_LENGTH, "wss://mrjunejune.com/echo"); + snprintf(url_input_text, URL_TEXT_BUFFER_LENGTH, URL_TEXT_DEFAULT); Dowa_Array_Push(input_body_array, (char *)malloc(sizeof(char) * HEADER_BUFFER_LENGTH)); Dowa_Array_Push(input_body_array, (char *)malloc(sizeof(char) * BODY_BUFFER_LENGTH)); Dowa_Array_Push(input_body_array, (char *)malloc(sizeof(char) * DEFAULT_TEXT_BUFFER_LENGTH)); Dowa_Array_Push(input_body_array, (char *)malloc(sizeof(char) * DEFAULT_TEXT_BUFFER_LENGTH)); - snprintf(input_body_array[TAB_HEADER], HEADER_BUFFER_LENGTH, "Content-Type: application/json"); - snprintf(input_body_array[TAB_BODY], HEADER_BUFFER_LENGTH, ""); + snprintf(input_body_array[TAB_HEADER], HEADER_BUFFER_LENGTH, HEADER_TEXT_DEFAULT); + snprintf(input_body_array[TAB_BODY], HEADER_BUFFER_LENGTH, BODY_TEXT_DEFAULT); + snprintf(input_body_array[TAB_GET_PARAMS], HEADER_BUFFER_LENGTH, GET_PARAM_TEXT_DEFAULT); result_text = (char *)malloc(sizeof(char) * RESULT_BUFFER_LENGTH); result_text[0] = '\0'; @@ -1724,6 +1671,9 @@ while (!WindowShouldClose()) { + // Process libuv events (non-blocking) + uv_run(main_loop, UV_RUN_NOWAIT); + int screen_width = GetScreenWidth(); int screen_height = GetScreenHeight(); @@ -1736,15 +1686,19 @@ Rectangle screen_rect = { 0, 0, screen_width, screen_height }; // -- Side bar --// - history_sidebar_rect = LeftColumn(screen_rect, 0.15, padding); + history_sidebar_rect = LeftColumn(screen_rect, 0.20, padding); Rectangle content_area_rect = RightColumn(screen_rect, history_sidebar_rect, padding); Rectangle logo_area_rect = (Rectangle){ .x = history_sidebar_rect.x, .y = history_sidebar_rect.y, .width = history_sidebar_rect.width, - .height = 80 + .height = 300 }; + + DrawRectangleSelectiveRounded(history_sidebar_rect, 10, 10, ORANGE, TRUE, FALSE, FALSE, TRUE); + DrawRectangleSelectiveRounded(content_area_rect, 10, 10, WHITE, FALSE, TRUE, TRUE, FALSE); + Rectangle history_list_area_rect = Below(logo_area_rect, padding); history_list_area_rect.x += padding; history_list_area_rect.width = history_sidebar_rect.width - (2 * padding); @@ -1788,13 +1742,13 @@ url_text_bounds_rect = (Rectangle){ .x = url_area_rect.x + padding, .y = url_control_y, - .width = 7 * (TEXT_SIZE / 2), + .width = 10 * (TEXT_SIZE / 2), .height = TEXT_SIZE * 2 }; url_input_bounds_rect = RightOf(url_text_bounds_rect, padding); url_input_bounds_rect.width = url_area_rect.width * 0.7; - url_input_bounds_rect.height = TEXT_SIZE * 2; + url_input_bounds_rect.height = TEXT_SIZE * 2.5; url_enter_button_rect = RightOf(url_input_bounds_rect, padding); url_enter_button_rect.width = url_area_rect.width * 0.1; @@ -1868,6 +1822,8 @@ if (Clicked(mouse_position, logo_area_rect)) PostDog_Params_Reset(); + + // --- Begin Drawing --- // BeginDrawing(); ClearBackground(GetColor(GuiGetStyle(DEFAULT, BACKGROUND_COLOR))); @@ -1912,8 +1868,10 @@ Rectangle icon_area_left_column = LeftColumn(icon_area, 0.5, 0); Rectangle icon_area_right_column = RightColumn(icon_area, icon_area_left_column, 0); - filename_area_rect.y += 2*padding; - GuiDrawText(curr_history_items->title, AddPadding(filename_area_rect, padding), TEXT_ALIGN_CENTER, BLACK); + Rectangle temp = AddPadding(filename_area_rect, padding); + + // ADD this back + // GuiDrawText(curr_history_items->title, temp, TEXT_ALIGN_CENTER, BLACK); if ( InArea(mouse_position, icon_area_left_column) || InArea(mouse_position, icon_area_right_column) @@ -1924,7 +1882,8 @@ PostDog_Load_File(curr_history_items->filename); if (GuiButton(AddPadding(icon_area_right_column, padding), "delete")) { - if (!remove(PostDog_Construct_URL(curr_history_items->filename))) + char delete_path[512]; + if (!remove(PostDog_Construct_URL(curr_history_items->filename, delete_path, sizeof(delete_path)))) curr_history_items->deleted = TRUE; else fprintf(stderr, "Wasn't able to delete file: %s \n", curr_history_items->filename); @@ -1950,10 +1909,9 @@ } // URL area Rect - GuiDrawText("URL: ", url_text_bounds_rect, TEXT_ALIGN_CENTER, BLACK); DrawRectangleRec(url_area_rect, Fade(BLACK, 0.1f)); - if (GuiTextBox(url_input_bounds_rect, url_input_text, DEFAULT_TEXT_BUFFER_LENGTH, url_input_edit)) + if (GuiTextArea(21, url_input_bounds_rect, url_input_text, DEFAULT_TEXT_BUFFER_LENGTH, url_input_edit, FALSE, g_text_area_arena)) url_input_edit = !url_input_edit; if (url_input_edit) @@ -1965,12 +1923,11 @@ } } - sendRequest = GuiButton(url_enter_button_rect, "ENTER"); - if (sendRequest) + if (GuiButtonRounded(url_enter_button_rect, "New Request", 0.2, 1)) PostDog_Http_Thread_Request(); - if (GuiDropdownBox(method_dropdown_rect, "GET;POST;PUT;DELETE", &active_method_dropdown, method_edit)) - method_edit = !method_edit; + DrawRectangleSelectiveRounded(body_area_rect, 10, 10, ORANGE, TRUE, FALSE, FALSE, TRUE); + DrawRectangleSelectiveRounded(result_area_rect, 10, 10, WHITE, FALSE, TRUE, TRUE, FALSE); // Input Tabs Rect DrawRectangleRec(input_area_rect, Fade(BLUE, 0.1f)); @@ -2015,15 +1972,21 @@ boolean result_toggle = GuiTextArea(TEXT_AREA_ID_RESULT, result_body_rect, result_text, RESULT_BUFFER_LENGTH, result_body_edit_mode, TRUE, g_text_area_arena); - GuiToggleGroup(input_tab_item_rect, "Header;Body;Get Param;Websocket", &active_input_tab); if (result_toggle) result_body_edit_mode = !result_body_edit_mode; + if (GuiDropdownBoxRounded(url_text_bounds_rect, "GET;POST;PUT;DELETE", &active_method_dropdown, method_edit, 0.2, 1)) + method_edit = !method_edit; EndDrawing(); } GuiTextAreaResetAllStates(); Dowa_Arena_Free(g_text_area_arena); + + // Cleanup libuv + uv_mutex_destroy(&history_mutex); + uv_loop_close(main_loop); + CloseWindow(); return 0; }
--- a/tags Wed Jan 14 19:39:52 2026 -0800 +++ b/tags Thu Jan 15 08:29:26 2026 -0800 @@ -39,6 +39,42 @@ !_TAG_ROLE_DESCRIPTION!C!header system /system header/ !_TAG_ROLE_DESCRIPTION!C!macro undef /undefined/ !_TAG_ROLE_DESCRIPTION!C!struct foreigndecl /declared in foreign languages/ +../uv-common.h third_party/libuv/src/win/internal.h /^#include "..\/uv-common.h"/;" h +ACCESS_ONCE third_party/libuv/src/unix/internal.h /^#define ACCESS_ONCE(/;" d +AFD_IMMEDIATE third_party/libuv/src/win/winsock.h /^#define AFD_IMMEDIATE /;" d +AFD_NO_FAST_IO third_party/libuv/src/win/winsock.h /^#define AFD_NO_FAST_IO /;" d +AFD_NUM_POLL_EVENTS third_party/libuv/src/win/winsock.h /^#define AFD_NUM_POLL_EVENTS /;" d +AFD_OVERLAPPED third_party/libuv/src/win/winsock.h /^#define AFD_OVERLAPPED /;" d +AFD_POLL third_party/libuv/src/win/winsock.h /^#define AFD_POLL /;" d +AFD_POLL_ABORT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_ABORT (1 << AFD_POLL_ABORT_/;" d +AFD_POLL_ABORT_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_ABORT_BIT /;" d +AFD_POLL_ACCEPT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_ACCEPT (1 << AFD_POLL_ACCEPT_/;" d +AFD_POLL_ACCEPT_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_ACCEPT_BIT /;" d +AFD_POLL_ALL third_party/libuv/src/win/winsock.h /^#define AFD_POLL_ALL /;" d +AFD_POLL_CONNECT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_CONNECT (1 << AFD_POLL_CONNECT_/;" d +AFD_POLL_CONNECT_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_CONNECT_BIT /;" d +AFD_POLL_CONNECT_FAIL third_party/libuv/src/win/winsock.h /^#define AFD_POLL_CONNECT_FAIL (1 << AFD_POLL_CONNECT_FAIL_/;" d +AFD_POLL_CONNECT_FAIL_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_CONNECT_FAIL_BIT /;" d +AFD_POLL_DISCONNECT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_DISCONNECT (1 << AFD_POLL_DISCONNECT_/;" d +AFD_POLL_DISCONNECT_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_DISCONNECT_BIT /;" d +AFD_POLL_GROUP_QOS third_party/libuv/src/win/winsock.h /^#define AFD_POLL_GROUP_QOS (1 << AFD_POLL_GROUP_QOS_/;" d +AFD_POLL_GROUP_QOS_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_GROUP_QOS_BIT /;" d +AFD_POLL_HANDLE_INFO third_party/libuv/include/uv/win.h /^} AFD_POLL_HANDLE_INFO, *PAFD_POLL_HANDLE_INFO;$/;" t typeref:struct:_AFD_POLL_HANDLE_INFO +AFD_POLL_INFO third_party/libuv/include/uv/win.h /^} AFD_POLL_INFO, *PAFD_POLL_INFO;$/;" t typeref:struct:_AFD_POLL_INFO +AFD_POLL_LOCAL_CLOSE third_party/libuv/src/win/winsock.h /^#define AFD_POLL_LOCAL_CLOSE (1 << AFD_POLL_LOCAL_CLOSE_/;" d +AFD_POLL_LOCAL_CLOSE_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_LOCAL_CLOSE_BIT /;" d +AFD_POLL_QOS third_party/libuv/src/win/winsock.h /^#define AFD_POLL_QOS (1 << AFD_POLL_QOS_/;" d +AFD_POLL_QOS_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_QOS_BIT /;" d +AFD_POLL_RECEIVE third_party/libuv/src/win/winsock.h /^#define AFD_POLL_RECEIVE (1 << AFD_POLL_RECEIVE_/;" d +AFD_POLL_RECEIVE_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_RECEIVE_BIT /;" d +AFD_POLL_RECEIVE_EXPEDITED third_party/libuv/src/win/winsock.h /^#define AFD_POLL_RECEIVE_EXPEDITED (1 << AFD_POLL_RECEIVE_EXPEDITED_/;" d +AFD_POLL_RECEIVE_EXPEDITED_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_RECEIVE_EXPEDITED_BIT /;" d +AFD_POLL_SEND third_party/libuv/src/win/winsock.h /^#define AFD_POLL_SEND (1 << AFD_POLL_SEND_/;" d +AFD_POLL_SEND_BIT third_party/libuv/src/win/winsock.h /^#define AFD_POLL_SEND_BIT /;" d +AFD_RECEIVE third_party/libuv/src/win/winsock.h /^#define AFD_RECEIVE /;" d +AFD_RECEIVE_DATAGRAM third_party/libuv/src/win/winsock.h /^#define AFD_RECEIVE_DATAGRAM /;" d +AFD_RECV_DATAGRAM_INFO third_party/libuv/src/win/winsock.h /^} AFD_RECV_DATAGRAM_INFO, *PAFD_RECV_DATAGRAM_INFO;$/;" t typeref:struct:_AFD_RECV_DATAGRAM_INFO +AFD_RECV_INFO third_party/libuv/src/win/winsock.h /^} AFD_RECV_INFO, *PAFD_RECV_INFO;$/;" t typeref:struct:_AFD_RECV_INFO APIENTRY third_party/raylib/include/rlgl.h /^ #define APIENTRY /;" d APIENTRY third_party/raylib/include/rlgl.h /^ #define APIENTRY$/;" d APIENTRY third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #define APIENTRY /;" d @@ -47,9 +83,62 @@ APIENTRY third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #define APIENTRY$/;" d APIENTRY third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ #define APIENTRY /;" d APIENTRY third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ #define APIENTRY$/;" d +ARRAY_END third_party/libuv/src/uv-common.h /^#define ARRAY_END(/;" d +ARRAY_SIZE third_party/libuv/src/uv-common.h /^#define ARRAY_SIZE(/;" d +ARRAY_SIZE third_party/libuv/test/task.h /^#define ARRAY_SIZE(/;" d ARROWS_SIZE third_party/raylib/include/raygui.h /^ ARROWS_SIZE = 16, \/\/ ScrollBar arrows size$/;" e enum:__anonbfe71a2a0c03 ARROWS_VISIBLE third_party/raylib/include/raygui.h /^ ARROWS_VISIBLE, \/\/ ScrollBar arrows visible$/;" e enum:__anonbfe71a2a0c03 ARROW_PADDING third_party/raylib/include/raygui.h /^ ARROW_PADDING = 16, \/\/ DropdownBox arrow separation from border and items$/;" e enum:__anonbfe71a2a0f03 +ASSERT third_party/libuv/test/task.h /^#define ASSERT(/;" d +ASSERT_BASE third_party/libuv/test/task.h /^#define ASSERT_BASE(/;" d +ASSERT_BASE_HEX third_party/libuv/test/task.h /^#define ASSERT_BASE_HEX(/;" d +ASSERT_BASE_LEN third_party/libuv/test/task.h /^#define ASSERT_BASE_LEN(/;" d +ASSERT_BASE_STR third_party/libuv/test/task.h /^#define ASSERT_BASE_STR(/;" d +ASSERT_DOUBLE_EQ third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_EQ(/;" d +ASSERT_DOUBLE_GE third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_GE(/;" d +ASSERT_DOUBLE_GT third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_GT(/;" d +ASSERT_DOUBLE_LE third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_LE(/;" d +ASSERT_DOUBLE_LT third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_LT(/;" d +ASSERT_DOUBLE_NE third_party/libuv/test/task.h /^#define ASSERT_DOUBLE_NE(/;" d +ASSERT_EQ third_party/libuv/test/task.h /^#define ASSERT_EQ(/;" d +ASSERT_GE third_party/libuv/test/task.h /^#define ASSERT_GE(/;" d +ASSERT_GT third_party/libuv/test/task.h /^#define ASSERT_GT(/;" d +ASSERT_LE third_party/libuv/test/task.h /^#define ASSERT_LE(/;" d +ASSERT_LT third_party/libuv/test/task.h /^#define ASSERT_LT(/;" d +ASSERT_MEM_EQ third_party/libuv/test/task.h /^#define ASSERT_MEM_EQ(/;" d +ASSERT_MEM_HEX_EQ third_party/libuv/test/task.h /^#define ASSERT_MEM_HEX_EQ(/;" d +ASSERT_MEM_HEX_NE third_party/libuv/test/task.h /^#define ASSERT_MEM_HEX_NE(/;" d +ASSERT_MEM_NE third_party/libuv/test/task.h /^#define ASSERT_MEM_NE(/;" d +ASSERT_NE third_party/libuv/test/task.h /^#define ASSERT_NE(/;" d +ASSERT_NOT_NULL third_party/libuv/test/task.h /^#define ASSERT_NOT_NULL(/;" d +ASSERT_NULL third_party/libuv/test/task.h /^#define ASSERT_NULL(/;" d +ASSERT_OK third_party/libuv/test/task.h /^#define ASSERT_OK(/;" d +ASSERT_PTR_EQ third_party/libuv/test/task.h /^#define ASSERT_PTR_EQ(/;" d +ASSERT_PTR_LT third_party/libuv/test/task.h /^#define ASSERT_PTR_LT(/;" d +ASSERT_PTR_NE third_party/libuv/test/task.h /^#define ASSERT_PTR_NE(/;" d +ASSERT_STR_EQ third_party/libuv/test/task.h /^#define ASSERT_STR_EQ(/;" d +ASSERT_STR_NE third_party/libuv/test/task.h /^#define ASSERT_STR_NE(/;" d +ASSERT_UINT64_EQ third_party/libuv/test/task.h /^#define ASSERT_UINT64_EQ(/;" d +ASSERT_UINT64_GE third_party/libuv/test/task.h /^#define ASSERT_UINT64_GE(/;" d +ASSERT_UINT64_GT third_party/libuv/test/task.h /^#define ASSERT_UINT64_GT(/;" d +ASSERT_UINT64_LE third_party/libuv/test/task.h /^#define ASSERT_UINT64_LE(/;" d +ASSERT_UINT64_LT third_party/libuv/test/task.h /^#define ASSERT_UINT64_LT(/;" d +ASSERT_UINT64_NE third_party/libuv/test/task.h /^#define ASSERT_UINT64_NE(/;" d +AccessFlags third_party/libuv/src/win/winapi.h /^ ACCESS_MASK AccessFlags;$/;" m struct:_FILE_ACCESS_INFORMATION typeref:typename:ACCESS_MASK +AccessInformation third_party/libuv/src/win/winapi.h /^ FILE_ACCESS_INFORMATION AccessInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_ACCESS_INFORMATION +ActualAvailableAllocationUnits third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ActualAvailableAllocationUnits;$/;" m struct:_FILE_FS_FULL_SIZE_INFORMATION typeref:typename:LARGE_INTEGER +Address third_party/libuv/src/win/winsock.h /^ struct sockaddr* Address;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:struct:sockaddr * +AddressLength third_party/libuv/src/win/winsock.h /^ int* AddressLength;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:typename:int * +AfdFlags third_party/libuv/src/win/winsock.h /^ ULONG AfdFlags;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:typename:ULONG +AfdFlags third_party/libuv/src/win/winsock.h /^ ULONG AfdFlags;$/;" m struct:_AFD_RECV_INFO typeref:typename:ULONG +AlignmentInformation third_party/libuv/src/win/winapi.h /^ FILE_ALIGNMENT_INFORMATION AlignmentInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_ALIGNMENT_INFORMATION +AlignmentRequirement third_party/libuv/src/win/winapi.h /^ ULONG AlignmentRequirement;$/;" m struct:_FILE_ALIGNMENT_INFORMATION typeref:typename:ULONG +AllocationSize third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +AllocationSize third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +AllocationSize third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +AllocationSize third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_STANDARD_INFORMATION typeref:typename:LARGE_INTEGER +AllocationSize third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +AppExecLinkReparseBuffer third_party/libuv/src/win/winapi.h /^ } AppExecLinkReparseBuffer;$/;" m union:_REPARSE_DATA_BUFFER::__anon941c3301010a typeref:struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010508 AttachAudioMixedProcessor third_party/raylib/include/raylib.h /^RLAPI void AttachAudioMixedProcessor(AudioCallback processor); \/\/ Attach audio stream processo/;" p typeref:typename:RLAPI void AttachAudioMixedProcessor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void AttachAudioMixedProcessor(AudioCallback processor); \/\/ Attach audio stream processo/;" p typeref:typename:RLAPI void AttachAudioMixedProcessor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void AttachAudioMixedProcessor(AudioCallback processor); \/\/ Attach audio stream processo/;" p typeref:typename:RLAPI void @@ -86,6 +175,8 @@ AutomationEventList third_party/raylib/raylib-5.5_macos/include/raylib.h /^} AutomationEventList;$/;" t typeref:struct:AutomationEventList AutomationEventList third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct AutomationEventList {$/;" s AutomationEventList third_party/raylib/raylib-5.5_win64/include/raylib.h /^} AutomationEventList;$/;" t typeref:struct:AutomationEventList +AvailabilityMacros.h third_party/libuv/src/unix/internal.h /^# include <AvailabilityMacros.h>/;" h +AvailableAllocationUnits third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER AvailableAllocationUnits;$/;" m struct:_FILE_FS_SIZE_INFORMATION typeref:typename:LARGE_INTEGER BACKGROUND_COLOR third_party/raylib/include/raygui.h /^ BACKGROUND_COLOR, \/\/ Background color$/;" e enum:__anonbfe71a2a0803 BASE third_party/raylib/include/raygui.h /^typedef enum { BORDER = 0, BASE, TEXT, OTHER } GuiPropertyElement;$/;" e enum:__anonbfe71a2a1503 BASE_COLOR_DISABLED third_party/raylib/include/raygui.h /^ BASE_COLOR_DISABLED, \/\/ Control base color in STATE_DISABLED$/;" e enum:__anonbfe71a2a0703 @@ -96,6 +187,10 @@ BEIGE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define BEIGE /;" d BEIGE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define BEIGE /;" d BEIGE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define BEIGE /;" d +BENCHMARK_DECLARE third_party/libuv/test/runner.h /^#define BENCHMARK_DECLARE(/;" d +BENCHMARK_ENTRY third_party/libuv/test/runner.h /^#define BENCHMARK_ENTRY(/;" d +BENCHMARK_HELPER third_party/libuv/test/runner.h /^#define BENCHMARK_HELPER /;" d +BENCHMARK_IMPL third_party/libuv/test/task.h /^#define BENCHMARK_IMPL(/;" d BIT_CHECK third_party/raylib/include/raygui.h /^ #define BIT_CHECK(/;" d BLACK third_party/raylib/include/raylib.h /^#define BLACK /;" d BLACK third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define BLACK /;" d @@ -152,6 +247,7 @@ BROWN third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define BROWN /;" d BROWN third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define BROWN /;" d BUTTON third_party/raylib/include/raygui.h /^ BUTTON,$/;" e enum:__anonbfe71a2a0603 +BasicInformation third_party/libuv/src/win/winapi.h /^ FILE_BASIC_INFORMATION BasicInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_BASIC_INFORMATION BeginBlendMode third_party/raylib/include/raylib.h /^RLAPI void BeginBlendMode(int mode); \/\/ Begin blending mode (alph/;" p typeref:typename:RLAPI void BeginBlendMode third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void BeginBlendMode(int mode); \/\/ Begin blending mode (alph/;" p typeref:typename:RLAPI void BeginBlendMode third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void BeginBlendMode(int mode); \/\/ Begin blending mode (alph/;" p typeref:typename:RLAPI void @@ -184,6 +280,7 @@ BeginVrStereoMode third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void BeginVrStereoMode(VrStereoConfig config); \/\/ Begin stereo rendering (r/;" p typeref:typename:RLAPI void BeginVrStereoMode third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void BeginVrStereoMode(VrStereoConfig config); \/\/ Begin stereo rendering (r/;" p typeref:typename:RLAPI void BeginVrStereoMode third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void BeginVrStereoMode(VrStereoConfig config); \/\/ Begin stereo rendering (r/;" p typeref:typename:RLAPI void +Below third_party/raylib/custom.h /^Rectangle Below(Rectangle ref, float padding);$/;" p typeref:typename:Rectangle BlendMode third_party/raylib/include/raylib.h /^} BlendMode;$/;" t typeref:enum:__anonc03ae25c1203 BlendMode third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} BlendMode;$/;" t typeref:enum:__anon9d42b9dd1203 BlendMode third_party/raylib/raylib-5.5_macos/include/raylib.h /^} BlendMode;$/;" t typeref:enum:__anon255619051203 @@ -204,6 +301,15 @@ BoundingBox third_party/raylib/raylib-5.5_macos/include/raylib.h /^} BoundingBox;$/;" t typeref:struct:BoundingBox BoundingBox third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct BoundingBox {$/;" s BoundingBox third_party/raylib/raylib-5.5_win64/include/raylib.h /^} BoundingBox;$/;" t typeref:struct:BoundingBox +Buffer third_party/libuv/src/win/winapi.h /^ PWSTR Buffer;$/;" m struct:_UNICODE_STRING typeref:typename:PWSTR +BufferArray third_party/libuv/src/win/winsock.h /^ LPWSABUF BufferArray;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:typename:LPWSABUF +BufferArray third_party/libuv/src/win/winsock.h /^ LPWSABUF BufferArray;$/;" m struct:_AFD_RECV_INFO typeref:typename:LPWSABUF +BufferCount third_party/libuv/src/win/winsock.h /^ ULONG BufferCount;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:typename:ULONG +BufferCount third_party/libuv/src/win/winsock.h /^ ULONG BufferCount;$/;" m struct:_AFD_RECV_INFO typeref:typename:ULONG +ByteOffsetForPartitionAlignment third_party/libuv/src/win/winapi.h /^ ULONG ByteOffsetForPartitionAlignment;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG +ByteOffsetForSectorAlignment third_party/libuv/src/win/winapi.h /^ ULONG ByteOffsetForSectorAlignment;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG +BytesPerSector third_party/libuv/src/win/winapi.h /^ ULONG BytesPerSector;$/;" m struct:_FILE_FS_FULL_SIZE_INFORMATION typeref:typename:ULONG +BytesPerSector third_party/libuv/src/win/winapi.h /^ ULONG BytesPerSector;$/;" m struct:_FILE_FS_SIZE_INFORMATION typeref:typename:ULONG CAMERA_CUSTOM third_party/raylib/include/raylib.h /^ CAMERA_CUSTOM = 0, \/\/ Camera custom, controlled by user (UpdateCamera() does /;" e enum:__anonc03ae25c1403 CAMERA_CUSTOM third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ CAMERA_CUSTOM = 0, \/\/ Camera custom, controlled by user (UpdateCamera() does /;" e enum:__anon9d42b9dd1403 CAMERA_CUSTOM third_party/raylib/raylib-5.5_macos/include/raylib.h /^ CAMERA_CUSTOM = 0, \/\/ Camera custom, controlled by user (UpdateCamera() does /;" e enum:__anon255619051403 @@ -232,6 +338,21 @@ CAMERA_THIRD_PERSON third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ CAMERA_THIRD_PERSON \/\/ Camera third person$/;" e enum:__anon9d42b9dd1403 CAMERA_THIRD_PERSON third_party/raylib/raylib-5.5_macos/include/raylib.h /^ CAMERA_THIRD_PERSON \/\/ Camera third person$/;" e enum:__anon255619051403 CAMERA_THIRD_PERSON third_party/raylib/raylib-5.5_win64/include/raylib.h /^ CAMERA_THIRD_PERSON \/\/ Camera third person$/;" e enum:__anonf614aaea1403 +CFAbsoluteTime third_party/libuv/src/unix/darwin-stub.h /^typedef double CFAbsoluteTime;$/;" t typeref:typename:double +CFAllocatorRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFAllocatorRef;$/;" t typeref:typename:void * +CFArrayCallBacks third_party/libuv/src/unix/darwin-stub.h /^typedef struct CFArrayCallBacks CFArrayCallBacks;$/;" t typeref:struct:CFArrayCallBacks +CFArrayRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFArrayRef;$/;" t typeref:typename:void * +CFBundleRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFBundleRef;$/;" t typeref:typename:void * +CFDictionaryRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFDictionaryRef;$/;" t typeref:typename:void * +CFIndex third_party/libuv/src/unix/darwin-stub.h /^typedef long CFIndex;$/;" t typeref:typename:long +CFRunLoopRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFRunLoopRef;$/;" t typeref:typename:void * +CFRunLoopSourceContext third_party/libuv/src/unix/darwin-stub.h /^struct CFRunLoopSourceContext {$/;" s +CFRunLoopSourceContext third_party/libuv/src/unix/darwin-stub.h /^typedef struct CFRunLoopSourceContext CFRunLoopSourceContext;$/;" t typeref:struct:CFRunLoopSourceContext +CFRunLoopSourceRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFRunLoopSourceRef;$/;" t typeref:typename:void * +CFStringEncoding third_party/libuv/src/unix/darwin-stub.h /^typedef unsigned CFStringEncoding;$/;" t typeref:typename:unsigned +CFStringRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFStringRef;$/;" t typeref:typename:void * +CFTimeInterval third_party/libuv/src/unix/darwin-stub.h /^typedef double CFTimeInterval;$/;" t typeref:typename:double +CFTypeRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* CFTypeRef;$/;" t typeref:typename:void * CHECKBOX third_party/raylib/include/raygui.h /^ CHECKBOX,$/;" e enum:__anonbfe71a2a0603 CHECK_BOUNDS_ID third_party/raylib/include/raygui.h /^ #define CHECK_BOUNDS_ID(/;" d CHECK_PADDING third_party/raylib/include/raygui.h /^ CHECK_PADDING = 16 \/\/ CheckBox internal check padding$/;" e enum:__anonbfe71a2a0d03 @@ -244,8 +365,10 @@ COMBOBOX third_party/raylib/include/raygui.h /^ COMBOBOX,$/;" e enum:__anonbfe71a2a0603 COMBO_BUTTON_SPACING third_party/raylib/include/raygui.h /^ COMBO_BUTTON_SPACING \/\/ ComboBox button separation$/;" e enum:__anonbfe71a2a0e03 COMBO_BUTTON_WIDTH third_party/raylib/include/raygui.h /^ COMBO_BUTTON_WIDTH = 16, \/\/ ComboBox right button width$/;" e enum:__anonbfe71a2a0e03 +CONDITION_VARIABLE third_party/libuv/include/uv/win.h /^ typedef PVOID CONDITION_VARIABLE, *PCONDITION_VARIABLE;$/;" t typeref:typename:PVOID CONTROL11 third_party/raylib/include/raygui.h /^ CONTROL11,$/;" e enum:__anonbfe71a2a0603 CREATE_REDIRECT_HANDLER seobeo/seobeo.h /^#define CREATE_REDIRECT_HANDLER(/;" d +CTL_CODE third_party/libuv/src/win/winapi.h /^# define CTL_CODE(/;" d CUBEMAP_LAYOUT_AUTO_DETECT third_party/raylib/include/raylib.h /^ CUBEMAP_LAYOUT_AUTO_DETECT = 0, \/\/ Automatically detect layout type$/;" e enum:__anonc03ae25c1003 CUBEMAP_LAYOUT_AUTO_DETECT third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ CUBEMAP_LAYOUT_AUTO_DETECT = 0, \/\/ Automatically detect layout type$/;" e enum:__anon9d42b9dd1003 CUBEMAP_LAYOUT_AUTO_DETECT third_party/raylib/raylib-5.5_macos/include/raylib.h /^ CUBEMAP_LAYOUT_AUTO_DETECT = 0, \/\/ Automatically detect layout type$/;" e enum:__anon255619051003 @@ -266,6 +389,9 @@ CUBEMAP_LAYOUT_LINE_VERTICAL third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ CUBEMAP_LAYOUT_LINE_VERTICAL, \/\/ Layout is defined by a vertical line with faces$/;" e enum:__anon9d42b9dd1003 CUBEMAP_LAYOUT_LINE_VERTICAL third_party/raylib/raylib-5.5_macos/include/raylib.h /^ CUBEMAP_LAYOUT_LINE_VERTICAL, \/\/ Layout is defined by a vertical line with faces$/;" e enum:__anon255619051003 CUBEMAP_LAYOUT_LINE_VERTICAL third_party/raylib/raylib-5.5_win64/include/raylib.h /^ CUBEMAP_LAYOUT_LINE_VERTICAL, \/\/ Layout is defined by a vertical line with faces$/;" e enum:__anonf614aaea1003 +CUSTOM_UI third_party/raylib/custom.h /^#define CUSTOM_UI$/;" d +Callback third_party/libuv/src/win/winapi.h /^ _PDEVICE_NOTIFY_CALLBACK_ROUTINE Callback;$/;" m struct:_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS typeref:typename:_PDEVICE_NOTIFY_CALLBACK_ROUTINE +CallerAvailableAllocationUnits third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CallerAvailableAllocationUnits;$/;" m struct:_FILE_FS_FULL_SIZE_INFORMATION typeref:typename:LARGE_INTEGER Camera third_party/raylib/include/raylib.h /^typedef Camera3D Camera; \/\/ Camera type fallback, defaults to Camera3D$/;" t typeref:typename:Camera3D Camera third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef Camera3D Camera; \/\/ Camera type fallback, defaults to Camera3D$/;" t typeref:typename:Camera3D Camera third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef Camera3D Camera; \/\/ Camera type fallback, defaults to Camera3D$/;" t typeref:typename:Camera3D @@ -299,6 +425,12 @@ ChangeDirectory third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool ChangeDirectory(const char *dir); \/\/ Change working directory,/;" p typeref:typename:RLAPI bool ChangeDirectory third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool ChangeDirectory(const char *dir); \/\/ Change working directory,/;" p typeref:typename:RLAPI bool ChangeDirectory third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI bool ChangeDirectory(const char *dir); \/\/ Change working directory,/;" p typeref:typename:RLAPI bool +ChangeTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +ChangeTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +ChangeTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +ChangeTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +ChangeTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +Characteristics third_party/libuv/src/win/winapi.h /^ ULONG Characteristics;$/;" m struct:_FILE_FS_DEVICE_INFORMATION typeref:typename:ULONG CheckCollisionBoxSphere third_party/raylib/include/raylib.h /^RLAPI bool CheckCollisionBoxSphere(BoundingBox box, Vector3 center, float radius); /;" p typeref:typename:RLAPI bool CheckCollisionBoxSphere third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool CheckCollisionBoxSphere(BoundingBox box, Vector3 center, float radius); /;" p typeref:typename:RLAPI bool CheckCollisionBoxSphere third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool CheckCollisionBoxSphere(BoundingBox box, Vector3 center, float radius); /;" p typeref:typename:RLAPI bool @@ -459,14 +591,22 @@ ConfigFlags third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} ConfigFlags;$/;" t typeref:enum:__anon9d42b9dd0203 ConfigFlags third_party/raylib/raylib-5.5_macos/include/raylib.h /^} ConfigFlags;$/;" t typeref:enum:__anon255619050203 ConfigFlags third_party/raylib/raylib-5.5_win64/include/raylib.h /^} ConfigFlags;$/;" t typeref:enum:__anonf614aaea0203 +Context third_party/libuv/src/win/winapi.h /^ PVOID Context;$/;" m struct:_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS typeref:typename:PVOID ConvertHSVtoRGB third_party/raylib/include/raygui.h /^static Vector3 ConvertHSVtoRGB(Vector3 hsv)$/;" f typeref:typename:Vector3 ConvertHSVtoRGB third_party/raylib/include/raygui.h /^static Vector3 ConvertHSVtoRGB(Vector3 hsv); \/\/ Convert color data from HSV/;" p typeref:typename:Vector3 ConvertRGBtoHSV third_party/raylib/include/raygui.h /^static Vector3 ConvertRGBtoHSV(Vector3 rgb)$/;" f typeref:typename:Vector3 ConvertRGBtoHSV third_party/raylib/include/raygui.h /^static Vector3 ConvertRGBtoHSV(Vector3 rgb); \/\/ Convert color data from RGB/;" p typeref:typename:Vector3 +CreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +CreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +CreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +CreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +CreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER CubemapLayout third_party/raylib/include/raylib.h /^} CubemapLayout;$/;" t typeref:enum:__anonc03ae25c1003 CubemapLayout third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} CubemapLayout;$/;" t typeref:enum:__anon9d42b9dd1003 CubemapLayout third_party/raylib/raylib-5.5_macos/include/raylib.h /^} CubemapLayout;$/;" t typeref:enum:__anon255619051003 CubemapLayout third_party/raylib/raylib-5.5_win64/include/raylib.h /^} CubemapLayout;$/;" t typeref:enum:__anonf614aaea1003 +CurrentByteOffset third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER CurrentByteOffset;$/;" m struct:_FILE_POSITION_INFORMATION typeref:typename:LARGE_INTEGER +CurrentInstances third_party/libuv/src/win/winapi.h /^ ULONG CurrentInstances;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG DARKBLUE third_party/raylib/include/raylib.h /^#define DARKBLUE /;" d DARKBLUE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define DARKBLUE /;" d DARKBLUE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define DARKBLUE /;" d @@ -487,6 +627,8 @@ DARKPURPLE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define DARKPURPLE /;" d DARKPURPLE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define DARKPURPLE /;" d DARKPURPLE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define DARKPURPLE /;" d +DECREASE_ACTIVE_COUNT third_party/libuv/src/win/handle-inl.h /^#define DECREASE_ACTIVE_COUNT(/;" d +DECREASE_PENDING_REQ_COUNT third_party/libuv/src/win/handle-inl.h /^#define DECREASE_PENDING_REQ_COUNT(/;" d DEFAULT third_party/raylib/include/raygui.h /^ DEFAULT = 0,$/;" e enum:__anonbfe71a2a0603 DEG2RAD third_party/raylib/include/raylib.h /^ #define DEG2RAD /;" d DEG2RAD third_party/raylib/include/raymath.h /^ #define DEG2RAD /;" d @@ -508,6 +650,9 @@ DEITA_COLUMN_TYPE_TEXT deita/deita.h /^ DEITA_COLUMN_TYPE_TEXT,$/;" e enum:__anonce31f2d80203 DEITA_DATABASE_TYPE_SQLITE3 deita/deita.h /^ DEITA_DATABASE_TYPE_SQLITE3 = 0$/;" e enum:__anonce31f2d80103 DEITA_INTERNAL deita/deita_internal.h /^#define DEITA_INTERNAL$/;" d +DELEGATE_STREAM_REQ third_party/libuv/src/win/req-inl.h /^#define DELEGATE_STREAM_REQ(/;" d +DEVICE_NOTIFY_CALLBACK third_party/libuv/src/win/winapi.h /^# define DEVICE_NOTIFY_CALLBACK /;" d +DEVICE_TYPE third_party/libuv/src/win/winapi.h /^# define DEVICE_TYPE /;" d DLAPI dowa/dowa.h /^ #define DLAPI /;" d DLAPI dowa/dowa.h /^ #define DLAPI /;" d DOWA dowa/dowa.h /^#define DOWA$/;" d @@ -519,6 +664,7 @@ DROPDOWN_ARROW_HIDDEN third_party/raylib/include/raygui.h /^ DROPDOWN_ARROW_HIDDEN, \/\/ DropdownBox arrow hidden$/;" e enum:__anonbfe71a2a0f03 DROPDOWN_ITEMS_SPACING third_party/raylib/include/raygui.h /^ DROPDOWN_ITEMS_SPACING, \/\/ DropdownBox items separation$/;" e enum:__anonbfe71a2a0f03 DROPDOWN_ROLL_UP third_party/raylib/include/raygui.h /^ DROPDOWN_ROLL_UP \/\/ DropdownBox roll up flag (default rolls down)$/;" e enum:__anonbfe71a2a0f03 +DataBuffer third_party/libuv/src/win/winapi.h /^ UCHAR DataBuffer[1];$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010408 typeref:typename:UCHAR[1] DecodeDataBase64 third_party/raylib/include/raylib.h /^RLAPI unsigned char *DecodeDataBase64(const unsigned char *data, int *outputSize); /;" p typeref:typename:RLAPI unsigned char * DecodeDataBase64 third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI unsigned char *DecodeDataBase64(const unsigned char *data, int *outputSize); /;" p typeref:typename:RLAPI unsigned char * DecodeDataBase64 third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI unsigned char *DecodeDataBase64(const unsigned char *data, int *outputSize); /;" p typeref:typename:RLAPI unsigned char * @@ -528,6 +674,10 @@ DecompressData third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI unsigned char *DecompressData(const unsigned char *compData, int compDataSize, int *dataSi/;" p typeref:typename:RLAPI unsigned char * DecompressData third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI unsigned char *DecompressData(const unsigned char *compData, int compDataSize, int *dataSi/;" p typeref:typename:RLAPI unsigned char * DecompressData third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI unsigned char *DecompressData(const unsigned char *compData, int compDataSize, int *dataSi/;" p typeref:typename:RLAPI unsigned char * +DecreaseFontSize third_party/raylib/custom.h /^void DecreaseFontSize();$/;" p typeref:typename:void +DefaultBehaviours third_party/raylib/custom.h /^void DefaultBehaviours();$/;" p typeref:typename:void +DefaultQuotaLimit third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER DefaultQuotaLimit;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:LARGE_INTEGER +DefaultQuotaThreshold third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER DefaultQuotaThreshold;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:LARGE_INTEGER Deita_Column_Type deita/deita.h /^} Deita_Column_Type;$/;" t typeref:enum:__anonce31f2d80203 Deita_Connection deita/deita.h /^typedef struct Deita_Connection Deita_Connection;$/;" t typeref:struct:Deita_Connection Deita_Connection deita/deita_internal.h /^struct Deita_Connection$/;" s @@ -549,6 +699,8 @@ Deita_Result_Set_Get_Real deita/deita.h /^extern double Deita_Result_Set_Get_Real($/;" p typeref:typename:double Deita_Result_Set_Get_Text deita/deita.h /^extern const char* Deita_Result_Set_Get_Text($/;" p typeref:typename:const char * Deita_Result_Set_Next deita/deita.h /^extern boolean Deita_Result_Set_Next(Deita_Result_Set *p_result_set);$/;" p typeref:typename:boolean +DeleteFile third_party/libuv/src/win/winapi.h /^ BOOLEAN DeleteFile;$/;" m struct:_FILE_DISPOSITION_INFORMATION typeref:typename:BOOLEAN +DeletePending third_party/libuv/src/win/winapi.h /^ BOOLEAN DeletePending;$/;" m struct:_FILE_STANDARD_INFORMATION typeref:typename:BOOLEAN DetachAudioMixedProcessor third_party/raylib/include/raylib.h /^RLAPI void DetachAudioMixedProcessor(AudioCallback processor); \/\/ Detach audio stream processo/;" p typeref:typename:RLAPI void DetachAudioMixedProcessor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void DetachAudioMixedProcessor(AudioCallback processor); \/\/ Detach audio stream processo/;" p typeref:typename:RLAPI void DetachAudioMixedProcessor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void DetachAudioMixedProcessor(AudioCallback processor); \/\/ Detach audio stream processo/;" p typeref:typename:RLAPI void @@ -557,6 +709,10 @@ DetachAudioStreamProcessor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void DetachAudioStreamProcessor(AudioStream stream, AudioCallback processor); \/\/ Detach /;" p typeref:typename:RLAPI void DetachAudioStreamProcessor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void DetachAudioStreamProcessor(AudioStream stream, AudioCallback processor); \/\/ Detach /;" p typeref:typename:RLAPI void DetachAudioStreamProcessor third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void DetachAudioStreamProcessor(AudioStream stream, AudioCallback processor); \/\/ Detach /;" p typeref:typename:RLAPI void +DeviceCharacteristics third_party/libuv/src/win/winapi.h /^ ULONG DeviceCharacteristics;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG +DeviceType third_party/libuv/src/win/winapi.h /^ DEVICE_TYPE DeviceType;$/;" m struct:_FILE_FS_DEVICE_INFORMATION typeref:typename:DEVICE_TYPE +DeviceType third_party/libuv/src/win/winapi.h /^ ULONG DeviceType;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG +Directory third_party/libuv/src/win/winapi.h /^ BOOLEAN Directory;$/;" m struct:_FILE_STANDARD_INFORMATION typeref:typename:BOOLEAN DirectoryExists third_party/raylib/include/raylib.h /^RLAPI bool DirectoryExists(const char *dirPath); \/\/ Check if a directory path/;" p typeref:typename:RLAPI bool DirectoryExists third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool DirectoryExists(const char *dirPath); \/\/ Check if a directory path/;" p typeref:typename:RLAPI bool DirectoryExists third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool DirectoryExists(const char *dirPath); \/\/ Check if a directory path/;" p typeref:typename:RLAPI bool @@ -615,6 +771,7 @@ Dowa_String_Slice dowa/dowa.h /^DLAPI char *Dowa_String_Slice(char *from, size_t start, size_t end, Dowa_Arena *p_arena);$/;" p typeref:typename:DLAPI char * Dowa_String_Split dowa/dowa.h /^DLAPI char **Dowa_String_Split(char *from, char *token, int32 from_length, int32 token_leng/;" p typeref:typename:DLAPI char ** Dowa_String_UUID dowa/dowa.h /^DLAPI char *Dowa_String_UUID(uint32 seed, void *buffer);$/;" p typeref:typename:DLAPI char * +DpcTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER DpcTime;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:LARGE_INTEGER DrawBillboard third_party/raylib/include/raylib.h /^RLAPI void DrawBillboard(Camera camera, Texture2D texture, Vector3 position, float scale, Color /;" p typeref:typename:RLAPI void DrawBillboard third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void DrawBillboard(Camera camera, Texture2D texture, Vector3 position, float scale, Color /;" p typeref:typename:RLAPI void DrawBillboard third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void DrawBillboard(Camera camera, Texture2D texture, Vector3 position, float scale, Color /;" p typeref:typename:RLAPI void @@ -987,10 +1144,31 @@ DrawTriangleStrip3D third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void DrawTriangleStrip3D(const Vector3 *points, int pointCount, Color color); /;" p typeref:typename:RLAPI void DrawTriangleStrip3D third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void DrawTriangleStrip3D(const Vector3 *points, int pointCount, Color color); /;" p typeref:typename:RLAPI void DrawTriangleStrip3D third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void DrawTriangleStrip3D(const Vector3 *points, int pointCount, Color color); /;" p typeref:typename:RLAPI void +DriverInPath third_party/libuv/src/win/winapi.h /^ BOOLEAN DriverInPath;$/;" m struct:_FILE_FS_DRIVER_PATH_INFORMATION typeref:typename:BOOLEAN +DriverName third_party/libuv/src/win/winapi.h /^ WCHAR DriverName[1];$/;" m struct:_FILE_FS_DRIVER_PATH_INFORMATION typeref:typename:WCHAR[1] +DriverNameLength third_party/libuv/src/win/winapi.h /^ ULONG DriverNameLength;$/;" m struct:_FILE_FS_DRIVER_PATH_INFORMATION typeref:typename:ULONG +ENABLE_EXTENDED_FLAGS third_party/libuv/src/win/winapi.h /^# define ENABLE_EXTENDED_FLAGS /;" d +ENABLE_INSERT_MODE third_party/libuv/src/win/winapi.h /^# define ENABLE_INSERT_MODE /;" d +ENABLE_QUICK_EDIT_MODE third_party/libuv/src/win/winapi.h /^# define ENABLE_QUICK_EDIT_MODE /;" d +EPOLL_CTL_ADD third_party/libuv/src/unix/os390-syscalls.h /^#define EPOLL_CTL_ADD /;" d +EPOLL_CTL_DEL third_party/libuv/src/unix/os390-syscalls.h /^#define EPOLL_CTL_DEL /;" d +EPOLL_CTL_MOD third_party/libuv/src/unix/os390-syscalls.h /^#define EPOLL_CTL_MOD /;" d EPSILON third_party/raylib/include/raymath.h /^ #define EPSILON /;" d EPSILON third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^ #define EPSILON /;" d EPSILON third_party/raylib/raylib-5.5_macos/include/raymath.h /^ #define EPSILON /;" d EPSILON third_party/raylib/raylib-5.5_win64/include/raymath.h /^ #define EPSILON /;" d +ERROR_ELEVATION_REQUIRED third_party/libuv/src/win/winapi.h /^# define ERROR_ELEVATION_REQUIRED /;" d +ERROR_MUI_FILE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_FILE_NOT_FOUND /;" d +ERROR_MUI_FILE_NOT_LOADED third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_FILE_NOT_LOADED /;" d +ERROR_MUI_INVALID_FILE third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_INVALID_FILE /;" d +ERROR_MUI_INVALID_LOCALE_NAME third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_INVALID_LOCALE_NAME /;" d +ERROR_MUI_INVALID_RC_CONFIG third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_INVALID_RC_CONFIG /;" d +ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME third_party/libuv/src/win/winapi.h /^# define ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME /;" d +ERROR_SYMLINK_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define ERROR_SYMLINK_NOT_SUPPORTED /;" d +EaInformation third_party/libuv/src/win/winapi.h /^ FILE_EA_INFORMATION EaInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_EA_INFORMATION +EaSize third_party/libuv/src/win/winapi.h /^ ULONG EaSize;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:ULONG +EaSize third_party/libuv/src/win/winapi.h /^ ULONG EaSize;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:ULONG +EaSize third_party/libuv/src/win/winapi.h /^ ULONG EaSize;$/;" m struct:_FILE_EA_INFORMATION typeref:typename:ULONG EnableCursor third_party/raylib/include/raylib.h /^RLAPI void EnableCursor(void); \/\/ Enables cursor (unlock cu/;" p typeref:typename:RLAPI void EnableCursor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void EnableCursor(void); \/\/ Enables cursor (unlock cu/;" p typeref:typename:RLAPI void EnableCursor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void EnableCursor(void); \/\/ Enables cursor (unlock cu/;" p typeref:typename:RLAPI void @@ -1019,6 +1197,12 @@ EndMode3D third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void EndMode3D(void); \/\/ Ends 3D mode and returns /;" p typeref:typename:RLAPI void EndMode3D third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void EndMode3D(void); \/\/ Ends 3D mode and returns /;" p typeref:typename:RLAPI void EndMode3D third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void EndMode3D(void); \/\/ Ends 3D mode and returns /;" p typeref:typename:RLAPI void +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_END_OF_FILE_INFORMATION typeref:typename:LARGE_INTEGER +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_STANDARD_INFORMATION typeref:typename:LARGE_INTEGER +EndOfFile third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER EndScissorMode third_party/raylib/include/raylib.h /^RLAPI void EndScissorMode(void); \/\/ End scissor mode$/;" p typeref:typename:RLAPI void EndScissorMode third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void EndScissorMode(void); \/\/ End scissor mode$/;" p typeref:typename:RLAPI void EndScissorMode third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void EndScissorMode(void); \/\/ End scissor mode$/;" p typeref:typename:RLAPI void @@ -1035,6 +1219,8 @@ EndVrStereoMode third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void EndVrStereoMode(void); \/\/ End stereo rendering (req/;" p typeref:typename:RLAPI void EndVrStereoMode third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void EndVrStereoMode(void); \/\/ End stereo rendering (req/;" p typeref:typename:RLAPI void EndVrStereoMode third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void EndVrStereoMode(void); \/\/ End stereo rendering (req/;" p typeref:typename:RLAPI void +Events third_party/libuv/include/uv/win.h /^ ULONG Events;$/;" m struct:_AFD_POLL_HANDLE_INFO typeref:typename:ULONG +Exclusive third_party/libuv/include/uv/win.h /^ ULONG Exclusive;$/;" m struct:_AFD_POLL_INFO typeref:typename:ULONG ExportAutomationEventList third_party/raylib/include/raylib.h /^RLAPI bool ExportAutomationEventList(AutomationEventList list, const char *fileName); \/\/ Exp/;" p typeref:typename:RLAPI bool ExportAutomationEventList third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool ExportAutomationEventList(AutomationEventList list, const char *fileName); \/\/ Exp/;" p typeref:typename:RLAPI bool ExportAutomationEventList third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool ExportAutomationEventList(AutomationEventList list, const char *fileName); \/\/ Exp/;" p typeref:typename:RLAPI bool @@ -1079,7 +1265,57 @@ ExtSupported third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ } ExtSupported; \/\/ Extensions supported flags$/;" m struct:rlglData typeref:struct:rlglData::__anon0cdf4ceb0e08 ExtSupported third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ } ExtSupported; \/\/ Extensions supported flags$/;" m struct:rlglData typeref:struct:rlglData::__anon96c0c2130e08 ExtSupported third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ } ExtSupported; \/\/ Extensions supported flags$/;" m struct:rlglData typeref:struct:rlglData::__anon9e7796b80e08 +ExtendedInfo third_party/libuv/src/win/winapi.h /^ UCHAR ExtendedInfo[48];$/;" m struct:_FILE_FS_OBJECTID_INFORMATION typeref:typename:UCHAR[48] +FACILITY_NTWIN32 third_party/libuv/src/win/winapi.h /^# define FACILITY_NTWIN32 /;" d FALSE dowa/dowa.h /^#define FALSE /;" d +FATAL third_party/libuv/test/task.h /^#define FATAL(/;" d +FILE_ACCESS_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ACCESS_INFORMATION, *PFILE_ACCESS_INFORMATION;$/;" t typeref:struct:_FILE_ACCESS_INFORMATION +FILE_ALIGNMENT_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ALIGNMENT_INFORMATION, *PFILE_ALIGNMENT_INFORMATION;$/;" t typeref:struct:_FILE_ALIGNMENT_INFORMATION +FILE_ALL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ALL_INFORMATION, *PFILE_ALL_INFORMATION;$/;" t typeref:struct:_FILE_ALL_INFORMATION +FILE_ANY_ACCESS third_party/libuv/src/win/winapi.h /^# define FILE_ANY_ACCESS /;" d +FILE_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_BASIC_INFORMATION, *PFILE_BASIC_INFORMATION;$/;" t typeref:struct:_FILE_BASIC_INFORMATION +FILE_BOTH_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_BOTH_DIR_INFORMATION, *PFILE_BOTH_DIR_INFORMATION;$/;" t typeref:struct:_FILE_BOTH_DIR_INFORMATION +FILE_DEVICE_FILE_SYSTEM third_party/libuv/src/win/winapi.h /^# define FILE_DEVICE_FILE_SYSTEM /;" d +FILE_DEVICE_NETWORK third_party/libuv/src/win/winapi.h /^# define FILE_DEVICE_NETWORK /;" d +FILE_DIRECTORY_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_DIRECTORY_INFORMATION, *PFILE_DIRECTORY_INFORMATION;$/;" t typeref:struct:_FILE_DIRECTORY_INFORMATION +FILE_DISPOSITION_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION;$/;" t typeref:struct:_FILE_DISPOSITION_INFORMATION +FILE_DISPOSITION_INFORMATION_EX third_party/libuv/src/win/winapi.h /^} FILE_DISPOSITION_INFORMATION_EX, *PFILE_DISPOSITION_INFORMATION_EX;$/;" t typeref:struct:_FILE_DISPOSITION_INFORMATION_EX +FILE_EA_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_EA_INFORMATION, *PFILE_EA_INFORMATION;$/;" t typeref:struct:_FILE_EA_INFORMATION +FILE_END_OF_FILE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_END_OF_FILE_INFORMATION, *PFILE_END_OF_FILE_INFORMATION;$/;" t typeref:struct:_FILE_END_OF_FILE_INFORMATION +FILE_FS_ATTRIBUTE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_ATTRIBUTE_INFORMATION, *PFILE_FS_ATTRIBUTE_INFORMATION;$/;" t typeref:struct:_FILE_FS_ATTRIBUTE_INFORMATION +FILE_FS_CONTROL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_CONTROL_INFORMATION, *PFILE_FS_CONTROL_INFORMATION;$/;" t typeref:struct:_FILE_FS_CONTROL_INFORMATION +FILE_FS_DEVICE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_DEVICE_INFORMATION, *PFILE_FS_DEVICE_INFORMATION;$/;" t typeref:struct:_FILE_FS_DEVICE_INFORMATION +FILE_FS_DRIVER_PATH_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_DRIVER_PATH_INFORMATION, *PFILE_FS_DRIVER_PATH_INFORMATION;$/;" t typeref:struct:_FILE_FS_DRIVER_PATH_INFORMATION +FILE_FS_FULL_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_FULL_SIZE_INFORMATION, *PFILE_FS_FULL_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_FULL_SIZE_INFORMATION +FILE_FS_LABEL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_LABEL_INFORMATION, *PFILE_FS_LABEL_INFORMATION;$/;" t typeref:struct:_FILE_FS_LABEL_INFORMATION +FILE_FS_OBJECTID_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_OBJECTID_INFORMATION, *PFILE_FS_OBJECTID_INFORMATION;$/;" t typeref:struct:_FILE_FS_OBJECTID_INFORMATION +FILE_FS_SECTOR_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_SECTOR_SIZE_INFORMATION, *PFILE_FS_SECTOR_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_SECTOR_SIZE_INFORMATION +FILE_FS_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_SIZE_INFORMATION, *PFILE_FS_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_SIZE_INFORMATION +FILE_FS_VOLUME_FLAGS_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_VOLUME_FLAGS_INFORMATION, *PFILE_FS_VOLUME_FLAGS_INFORMATION;$/;" t typeref:struct:_FILE_FS_VOLUME_FLAGS_INFORMATION +FILE_FS_VOLUME_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_VOLUME_INFORMATION, *PFILE_FS_VOLUME_INFORMATION;$/;" t typeref:struct:_FILE_FS_VOLUME_INFORMATION +FILE_ID_FULL_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ID_FULL_DIR_INFORMATION, *PFILE_ID_FULL_DIR_INFORMATION;$/;" t typeref:struct:_FILE_ID_FULL_DIR_INFORMATION +FILE_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^} FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;$/;" t typeref:enum:_FILE_INFORMATION_CLASS +FILE_INFO_BY_NAME_CLASS third_party/libuv/src/win/winapi.h /^} FILE_INFO_BY_NAME_CLASS;$/;" t typeref:enum:_FILE_INFO_BY_NAME_CLASS +FILE_INTERNAL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_INTERNAL_INFORMATION, *PFILE_INTERNAL_INFORMATION;$/;" t typeref:struct:_FILE_INTERNAL_INFORMATION +FILE_MODE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_MODE_INFORMATION, *PFILE_MODE_INFORMATION;$/;" t typeref:struct:_FILE_MODE_INFORMATION +FILE_NAME_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_NAME_INFORMATION, *PFILE_NAME_INFORMATION;$/;" t typeref:struct:_FILE_NAME_INFORMATION +FILE_PIPE_LOCAL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_PIPE_LOCAL_INFORMATION, *PFILE_PIPE_LOCAL_INFORMATION;$/;" t typeref:struct:_FILE_PIPE_LOCAL_INFORMATION +FILE_POSITION_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_POSITION_INFORMATION, *PFILE_POSITION_INFORMATION;$/;" t typeref:struct:_FILE_POSITION_INFORMATION +FILE_READ_ACCESS third_party/libuv/src/win/winapi.h /^# define FILE_READ_ACCESS /;" d +FILE_SKIP_COMPLETION_PORT_ON_SUCCESS third_party/libuv/src/win/winapi.h /^# define FILE_SKIP_COMPLETION_PORT_ON_SUCCESS /;" d +FILE_SKIP_SET_EVENT_ON_HANDLE third_party/libuv/src/win/winapi.h /^# define FILE_SKIP_SET_EVENT_ON_HANDLE /;" d +FILE_SPECIAL_ACCESS third_party/libuv/src/win/winapi.h /^# define FILE_SPECIAL_ACCESS /;" d +FILE_STANDARD_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_STANDARD_INFORMATION, *PFILE_STANDARD_INFORMATION;$/;" t typeref:struct:_FILE_STANDARD_INFORMATION +FILE_STAT_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_STAT_BASIC_INFORMATION;$/;" t typeref:struct:_FILE_STAT_BASIC_INFORMATION +FILE_SYNCHRONOUS_IO_ALERT third_party/libuv/src/win/winapi.h /^#define FILE_SYNCHRONOUS_IO_ALERT /;" d +FILE_SYNCHRONOUS_IO_NONALERT third_party/libuv/src/win/winapi.h /^#define FILE_SYNCHRONOUS_IO_NONALERT /;" d +FILE_WRITE_ACCESS third_party/libuv/src/win/winapi.h /^# define FILE_WRITE_ACCESS /;" d +FIND_COMMON_VARIABLES third_party/libuv/src/win/fs-fd-hash-inl.h /^#define FIND_COMMON_VARIABLES /;" d +FIND_COMMON_VARIABLES third_party/libuv/src/win/fs-fd-hash-inl.h /^#undef FIND_COMMON_VARIABLES$/;" d +FIND_IN_BUCKET_PTR third_party/libuv/src/win/fs-fd-hash-inl.h /^#define FIND_IN_BUCKET_PTR(/;" d +FIND_IN_BUCKET_PTR third_party/libuv/src/win/fs-fd-hash-inl.h /^#undef FIND_IN_BUCKET_PTR$/;" d +FIND_IN_GROUP_PTR third_party/libuv/src/win/fs-fd-hash-inl.h /^#define FIND_IN_GROUP_PTR(/;" d +FIND_IN_GROUP_PTR third_party/libuv/src/win/fs-fd-hash-inl.h /^#undef FIND_IN_GROUP_PTR$/;" d FLAG_BORDERLESS_WINDOWED_MODE third_party/raylib/include/raylib.h /^ FLAG_BORDERLESS_WINDOWED_MODE = 0x00008000, \/\/ Set to run program in borderless windowed m/;" e enum:__anonc03ae25c0203 FLAG_BORDERLESS_WINDOWED_MODE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ FLAG_BORDERLESS_WINDOWED_MODE = 0x00008000, \/\/ Set to run program in borderless windowed m/;" e enum:__anon9d42b9dd0203 FLAG_BORDERLESS_WINDOWED_MODE third_party/raylib/raylib-5.5_macos/include/raylib.h /^ FLAG_BORDERLESS_WINDOWED_MODE = 0x00008000, \/\/ Set to run program in borderless windowed m/;" e enum:__anon255619050203 @@ -1156,18 +1392,107 @@ FONT_SDF third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ FONT_SDF \/\/ SDF font generation, requires external shader$/;" e enum:__anon9d42b9dd1103 FONT_SDF third_party/raylib/raylib-5.5_macos/include/raylib.h /^ FONT_SDF \/\/ SDF font generation, requires external shader$/;" e enum:__anon255619051103 FONT_SDF third_party/raylib/raylib-5.5_win64/include/raylib.h /^ FONT_SDF \/\/ SDF font generation, requires external shader$/;" e enum:__anonf614aaea1103 +FSCTL_AFD_BASE third_party/libuv/src/win/winsock.h /^#define FSCTL_AFD_BASE /;" d +FSCTL_DELETE_REPARSE_POINT third_party/libuv/src/win/winapi.h /^# define FSCTL_DELETE_REPARSE_POINT /;" d +FSCTL_GET_REPARSE_POINT third_party/libuv/src/win/winapi.h /^# define FSCTL_GET_REPARSE_POINT /;" d +FSCTL_SET_REPARSE_POINT third_party/libuv/src/win/winapi.h /^# define FSCTL_SET_REPARSE_POINT /;" d +FSEventStreamCallback third_party/libuv/src/unix/darwin-stub.h /^typedef void (*FSEventStreamCallback)(const FSEventStreamRef,$/;" t typeref:typename:void (*)(const FSEventStreamRef,void *,size_t,void *,const FSEventStreamEventFlags *,const FSEventStreamEventId *) +FSEventStreamContext third_party/libuv/src/unix/darwin-stub.h /^struct FSEventStreamContext {$/;" s +FSEventStreamContext third_party/libuv/src/unix/darwin-stub.h /^typedef struct FSEventStreamContext FSEventStreamContext;$/;" t typeref:struct:FSEventStreamContext +FSEventStreamCreateFlags third_party/libuv/src/unix/darwin-stub.h /^typedef uint32_t FSEventStreamCreateFlags;$/;" t typeref:typename:uint32_t +FSEventStreamEventFlags third_party/libuv/src/unix/darwin-stub.h /^typedef int FSEventStreamEventFlags;$/;" t typeref:typename:int +FSEventStreamEventId third_party/libuv/src/unix/darwin-stub.h /^typedef uint64_t FSEventStreamEventId;$/;" t typeref:typename:uint64_t +FSEventStreamRef third_party/libuv/src/unix/darwin-stub.h /^typedef void* FSEventStreamRef;$/;" t typeref:typename:void * +FS_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^} FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;$/;" t typeref:enum:_FS_INFORMATION_CLASS +F_OK third_party/libuv/include/uv/win.h /^#define F_OK /;" d Fade third_party/raylib/include/raylib.h /^RLAPI Color Fade(Color color, float alpha); \/\/ Get color with /;" p typeref:typename:RLAPI Color Fade third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI Color Fade(Color color, float alpha); \/\/ Get color with /;" p typeref:typename:RLAPI Color Fade third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI Color Fade(Color color, float alpha); \/\/ Get color with /;" p typeref:typename:RLAPI Color Fade third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI Color Fade(Color color, float alpha); \/\/ Get color with /;" p typeref:typename:RLAPI Color +FileAccessInformation third_party/libuv/src/win/winapi.h /^ FileAccessInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAlignmentInformation third_party/libuv/src/win/winapi.h /^ FileAlignmentInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAllInformation third_party/libuv/src/win/winapi.h /^ FileAllInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAllocationInformation third_party/libuv/src/win/winapi.h /^ FileAllocationInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAlternateNameInformation third_party/libuv/src/win/winapi.h /^ FileAlternateNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAttributeCacheInformation third_party/libuv/src/win/winapi.h /^ FileAttributeCacheInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAttributeTagInformation third_party/libuv/src/win/winapi.h /^ FileAttributeTagInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileAttributes third_party/libuv/src/win/winapi.h /^ DWORD FileAttributes;$/;" m struct:_FILE_BASIC_INFORMATION typeref:typename:DWORD +FileAttributes third_party/libuv/src/win/winapi.h /^ ULONG FileAttributes;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:ULONG +FileAttributes third_party/libuv/src/win/winapi.h /^ ULONG FileAttributes;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:ULONG +FileAttributes third_party/libuv/src/win/winapi.h /^ ULONG FileAttributes;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:ULONG +FileAttributes third_party/libuv/src/win/winapi.h /^ ULONG FileAttributes;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG +FileBasicInformation third_party/libuv/src/win/winapi.h /^ FileBasicInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileBothDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileBothDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileCaseSensitiveByNameInfo third_party/libuv/src/win/winapi.h /^ FileCaseSensitiveByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS FileCompare postdog/gui_window_file_dialog.h /^static inline int FileCompare(const char *d1, const char *d2, const char *dir)$/;" f typeref:typename:int +FileCompletionInformation third_party/libuv/src/win/winapi.h /^ FileCompletionInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileCompressionInformation third_party/libuv/src/win/winapi.h /^ FileCompressionInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileDirectoryInformation = 1,$/;" e enum:_FILE_INFORMATION_CLASS +FileDispositionInformation third_party/libuv/src/win/winapi.h /^ FileDispositionInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileDispositionInformationEx third_party/libuv/src/win/winapi.h /^ FileDispositionInformationEx, \/* based on https:\/\/learn.microsoft.com\/en-us\/windows-hardw/;" e enum:_FILE_INFORMATION_CLASS +FileEaInformation third_party/libuv/src/win/winapi.h /^ FileEaInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileEndOfFileInformation third_party/libuv/src/win/winapi.h /^ FileEndOfFileInformation,$/;" e enum:_FILE_INFORMATION_CLASS FileExists third_party/raylib/include/raylib.h /^RLAPI bool FileExists(const char *fileName); \/\/ Check if file exists$/;" p typeref:typename:RLAPI bool FileExists third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool FileExists(const char *fileName); \/\/ Check if file exists$/;" p typeref:typename:RLAPI bool FileExists third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool FileExists(const char *fileName); \/\/ Check if file exists$/;" p typeref:typename:RLAPI bool FileExists third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI bool FileExists(const char *fileName); \/\/ Check if file exists$/;" p typeref:typename:RLAPI bool +FileFsAttributeInformation third_party/libuv/src/win/winapi.h /^ FileFsAttributeInformation = 5,$/;" e enum:_FS_INFORMATION_CLASS +FileFsControlInformation third_party/libuv/src/win/winapi.h /^ FileFsControlInformation = 6,$/;" e enum:_FS_INFORMATION_CLASS +FileFsDeviceInformation third_party/libuv/src/win/winapi.h /^ FileFsDeviceInformation = 4,$/;" e enum:_FS_INFORMATION_CLASS +FileFsDriverPathInformation third_party/libuv/src/win/winapi.h /^ FileFsDriverPathInformation = 9,$/;" e enum:_FS_INFORMATION_CLASS +FileFsFullSizeInformation third_party/libuv/src/win/winapi.h /^ FileFsFullSizeInformation = 7,$/;" e enum:_FS_INFORMATION_CLASS +FileFsLabelInformation third_party/libuv/src/win/winapi.h /^ FileFsLabelInformation = 2,$/;" e enum:_FS_INFORMATION_CLASS +FileFsObjectIdInformation third_party/libuv/src/win/winapi.h /^ FileFsObjectIdInformation = 8,$/;" e enum:_FS_INFORMATION_CLASS +FileFsSectorSizeInformation third_party/libuv/src/win/winapi.h /^ FileFsSectorSizeInformation = 11$/;" e enum:_FS_INFORMATION_CLASS +FileFsSizeInformation third_party/libuv/src/win/winapi.h /^ FileFsSizeInformation = 3,$/;" e enum:_FS_INFORMATION_CLASS +FileFsVolumeFlagsInformation third_party/libuv/src/win/winapi.h /^ FileFsVolumeFlagsInformation = 10,$/;" e enum:_FS_INFORMATION_CLASS +FileFsVolumeInformation third_party/libuv/src/win/winapi.h /^ FileFsVolumeInformation = 1,$/;" e enum:_FS_INFORMATION_CLASS +FileFullDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileFullDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileFullEaInformation third_party/libuv/src/win/winapi.h /^ FileFullEaInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileHardLinkFullIdInformation third_party/libuv/src/win/winapi.h /^ FileHardLinkFullIdInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileHardLinkInformation third_party/libuv/src/win/winapi.h /^ FileHardLinkInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileId third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER FileId;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +FileId third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER FileId;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +FileId128 third_party/libuv/src/win/winapi.h /^ FILE_ID_128 FileId128;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:FILE_ID_128 +FileIdBothDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileIdBothDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIdExtdBothDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileIdExtdBothDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIdExtdDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileIdExtdDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIdFullDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileIdFullDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIdGlobalTxDirectoryInformation third_party/libuv/src/win/winapi.h /^ FileIdGlobalTxDirectoryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIdInformation third_party/libuv/src/win/winapi.h /^ FileIdInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIndex third_party/libuv/src/win/winapi.h /^ ULONG FileIndex;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:ULONG +FileIndex third_party/libuv/src/win/winapi.h /^ ULONG FileIndex;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:ULONG +FileIndex third_party/libuv/src/win/winapi.h /^ ULONG FileIndex;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:ULONG FileInfo postdog/gui_window_file_dialog.h /^typedef char *FileInfo; \/\/ Files are just a path string$/;" t typeref:typename:char * FileInfo postdog/gui_window_file_dialog.h /^typedef struct FileInfo {$/;" s FileInfo postdog/gui_window_file_dialog.h /^} FileInfo;$/;" t typeref:struct:FileInfo +FileInternalInformation third_party/libuv/src/win/winapi.h /^ FileInternalInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIoCompletionNotificationInformation third_party/libuv/src/win/winapi.h /^ FileIoCompletionNotificationInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIoPriorityHintInformation third_party/libuv/src/win/winapi.h /^ FileIoPriorityHintInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIoStatusBlockRangeInformation third_party/libuv/src/win/winapi.h /^ FileIoStatusBlockRangeInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileIsRemoteDeviceInformation third_party/libuv/src/win/winapi.h /^ FileIsRemoteDeviceInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileLinkInformation third_party/libuv/src/win/winapi.h /^ FileLinkInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileLinkInformationBypassAccessCheck third_party/libuv/src/win/winapi.h /^ FileLinkInformationBypassAccessCheck,$/;" e enum:_FILE_INFORMATION_CLASS +FileMailslotQueryInformation third_party/libuv/src/win/winapi.h /^ FileMailslotQueryInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileMailslotSetInformation third_party/libuv/src/win/winapi.h /^ FileMailslotSetInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileMaximumInformation third_party/libuv/src/win/winapi.h /^ FileMaximumInformation$/;" e enum:_FILE_INFORMATION_CLASS +FileModeInformation third_party/libuv/src/win/winapi.h /^ FileModeInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileMoveClusterInformation third_party/libuv/src/win/winapi.h /^ FileMoveClusterInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileName third_party/libuv/src/win/winapi.h /^ WCHAR FileName[1];$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:WCHAR[1] +FileName third_party/libuv/src/win/winapi.h /^ WCHAR FileName[1];$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:WCHAR[1] +FileName third_party/libuv/src/win/winapi.h /^ WCHAR FileName[1];$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:WCHAR[1] +FileName third_party/libuv/src/win/winapi.h /^ WCHAR FileName[1];$/;" m struct:_FILE_NAME_INFORMATION typeref:typename:WCHAR[1] +FileNameInformation third_party/libuv/src/win/winapi.h /^ FileNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileNameLength third_party/libuv/src/win/winapi.h /^ ULONG FileNameLength;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:ULONG +FileNameLength third_party/libuv/src/win/winapi.h /^ ULONG FileNameLength;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:ULONG +FileNameLength third_party/libuv/src/win/winapi.h /^ ULONG FileNameLength;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:ULONG +FileNameLength third_party/libuv/src/win/winapi.h /^ ULONG FileNameLength;$/;" m struct:_FILE_NAME_INFORMATION typeref:typename:ULONG +FileNamesInformation third_party/libuv/src/win/winapi.h /^ FileNamesInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileNetworkOpenInformation third_party/libuv/src/win/winapi.h /^ FileNetworkOpenInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileNetworkPhysicalNameInformation third_party/libuv/src/win/winapi.h /^ FileNetworkPhysicalNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileNormalizedNameInformation third_party/libuv/src/win/winapi.h /^ FileNormalizedNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileNumaNodeInformation third_party/libuv/src/win/winapi.h /^ FileNumaNodeInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileObjectIdInformation third_party/libuv/src/win/winapi.h /^ FileObjectIdInformation,$/;" e enum:_FILE_INFORMATION_CLASS FilePathList third_party/raylib/include/raylib.h /^typedef struct FilePathList {$/;" s FilePathList third_party/raylib/include/raylib.h /^} FilePathList;$/;" t typeref:struct:FilePathList FilePathList third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef struct FilePathList {$/;" s @@ -1176,6 +1501,38 @@ FilePathList third_party/raylib/raylib-5.5_macos/include/raylib.h /^} FilePathList;$/;" t typeref:struct:FilePathList FilePathList third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct FilePathList {$/;" s FilePathList third_party/raylib/raylib-5.5_win64/include/raylib.h /^} FilePathList;$/;" t typeref:struct:FilePathList +FilePipeInformation third_party/libuv/src/win/winapi.h /^ FilePipeInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FilePipeLocalInformation third_party/libuv/src/win/winapi.h /^ FilePipeLocalInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FilePipeRemoteInformation third_party/libuv/src/win/winapi.h /^ FilePipeRemoteInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FilePositionInformation third_party/libuv/src/win/winapi.h /^ FilePositionInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileProcessIdsUsingFileInformation third_party/libuv/src/win/winapi.h /^ FileProcessIdsUsingFileInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileQuotaInformation third_party/libuv/src/win/winapi.h /^ FileQuotaInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileRemoteProtocolInformation third_party/libuv/src/win/winapi.h /^ FileRemoteProtocolInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileRenameInformation third_party/libuv/src/win/winapi.h /^ FileRenameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileRenameInformationBypassAccessCheck third_party/libuv/src/win/winapi.h /^ FileRenameInformationBypassAccessCheck,$/;" e enum:_FILE_INFORMATION_CLASS +FileReparsePointInformation third_party/libuv/src/win/winapi.h /^ FileReparsePointInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileReplaceCompletionInformation third_party/libuv/src/win/winapi.h /^ FileReplaceCompletionInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileSfioReserveInformation third_party/libuv/src/win/winapi.h /^ FileSfioReserveInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileSfioVolumeInformation third_party/libuv/src/win/winapi.h /^ FileSfioVolumeInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileShortNameInformation third_party/libuv/src/win/winapi.h /^ FileShortNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileStandardInformation third_party/libuv/src/win/winapi.h /^ FileStandardInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileStandardLinkInformation third_party/libuv/src/win/winapi.h /^ FileStandardLinkInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileStatBasicByNameInfo third_party/libuv/src/win/winapi.h /^ FileStatBasicByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStatByNameInfo third_party/libuv/src/win/winapi.h /^ FileStatByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStatLxByNameInfo third_party/libuv/src/win/winapi.h /^ FileStatLxByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStreamInformation third_party/libuv/src/win/winapi.h /^ FileStreamInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileSystemAttributes third_party/libuv/src/win/winapi.h /^ ULONG FileSystemAttributes;$/;" m struct:_FILE_FS_ATTRIBUTE_INFORMATION typeref:typename:ULONG +FileSystemControlFlags third_party/libuv/src/win/winapi.h /^ ULONG FileSystemControlFlags;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:ULONG +FileSystemEffectivePhysicalBytesPerSectorForAtomicity third_party/libuv/src/win/winapi.h /^ ULONG FileSystemEffectivePhysicalBytesPerSectorForAtomicity;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG +FileSystemName third_party/libuv/src/win/winapi.h /^ WCHAR FileSystemName[1];$/;" m struct:_FILE_FS_ATTRIBUTE_INFORMATION typeref:typename:WCHAR[1] +FileSystemNameLength third_party/libuv/src/win/winapi.h /^ ULONG FileSystemNameLength;$/;" m struct:_FILE_FS_ATTRIBUTE_INFORMATION typeref:typename:ULONG +FileTrackingInformation third_party/libuv/src/win/winapi.h /^ FileTrackingInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileValidDataLengthInformation third_party/libuv/src/win/winapi.h /^ FileValidDataLengthInformation,$/;" e enum:_FILE_INFORMATION_CLASS +FileVolumeNameInformation third_party/libuv/src/win/winapi.h /^ FileVolumeNameInformation,$/;" e enum:_FILE_INFORMATION_CLASS +Flags third_party/libuv/src/win/winapi.h /^ ULONG Flags;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:ULONG +Flags third_party/libuv/src/win/winapi.h /^ DWORD Flags;$/;" m struct:_FILE_DISPOSITION_INFORMATION_EX typeref:typename:DWORD +Flags third_party/libuv/src/win/winapi.h /^ ULONG Flags;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG +Flags third_party/libuv/src/win/winapi.h /^ ULONG Flags;$/;" m struct:_FILE_FS_VOLUME_FLAGS_INFORMATION typeref:typename:ULONG FloatEquals third_party/raylib/include/raymath.h /^RMAPI int FloatEquals(float x, float y)$/;" f typeref:typename:RMAPI int FloatEquals third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^RMAPI int FloatEquals(float x, float y)$/;" f typeref:typename:RMAPI int FloatEquals third_party/raylib/raylib-5.5_macos/include/raymath.h /^RMAPI int FloatEquals(float x, float y)$/;" f typeref:typename:RMAPI int @@ -1194,6 +1551,9 @@ FontType third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} FontType;$/;" t typeref:enum:__anon9d42b9dd1103 FontType third_party/raylib/raylib-5.5_macos/include/raylib.h /^} FontType;$/;" t typeref:enum:__anon255619051103 FontType third_party/raylib/raylib-5.5_win64/include/raylib.h /^} FontType;$/;" t typeref:enum:__anonf614aaea1103 +FreeSpaceStartFiltering third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER FreeSpaceStartFiltering;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:LARGE_INTEGER +FreeSpaceStopFiltering third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER FreeSpaceStopFiltering;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:LARGE_INTEGER +FreeSpaceThreshold third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER FreeSpaceThreshold;$/;" m struct:_FILE_FS_CONTROL_INFORMATION typeref:typename:LARGE_INTEGER GAMEPAD_AXIS_LEFT_TRIGGER third_party/raylib/include/raylib.h /^ GAMEPAD_AXIS_LEFT_TRIGGER = 4, \/\/ Gamepad back trigger left, pressure level: [1..-1]$/;" e enum:__anonc03ae25c0803 GAMEPAD_AXIS_LEFT_TRIGGER third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ GAMEPAD_AXIS_LEFT_TRIGGER = 4, \/\/ Gamepad back trigger left, pressure level: [1..-1]$/;" e enum:__anon9d42b9dd0803 GAMEPAD_AXIS_LEFT_TRIGGER third_party/raylib/raylib-5.5_macos/include/raylib.h /^ GAMEPAD_AXIS_LEFT_TRIGGER = 4, \/\/ Gamepad back trigger left, pressure level: [1..-1]$/;" e enum:__anon255619050803 @@ -1334,6 +1694,9 @@ GESTURE_TAP third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ GESTURE_TAP = 1, \/\/ Tap gesture$/;" e enum:__anon9d42b9dd1303 GESTURE_TAP third_party/raylib/raylib-5.5_macos/include/raylib.h /^ GESTURE_TAP = 1, \/\/ Tap gesture$/;" e enum:__anon255619051303 GESTURE_TAP third_party/raylib/raylib-5.5_win64/include/raylib.h /^ GESTURE_TAP = 1, \/\/ Tap gesture$/;" e enum:__anonf614aaea1303 +GET_REQ_ERROR third_party/libuv/src/win/req-inl.h /^#define GET_REQ_ERROR(/;" d +GET_REQ_SOCK_ERROR third_party/libuv/src/win/req-inl.h /^#define GET_REQ_SOCK_ERROR(/;" d +GET_REQ_STATUS third_party/libuv/src/win/req-inl.h /^#define GET_REQ_STATUS(/;" d GL/gl.h third_party/raylib/include/rlgl.h /^ #include <GL\/gl.h>/;" h GL/gl.h third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #include <GL\/gl.h>/;" h GL/gl.h third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #include <GL\/gl.h>/;" h @@ -1624,6 +1987,7 @@ GenTextureMipmaps third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void GenTextureMipmaps(Texture2D *texture); /;" p typeref:typename:RLAPI void GenTextureMipmaps third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void GenTextureMipmaps(Texture2D *texture); /;" p typeref:typename:RLAPI void GenTextureMipmaps third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void GenTextureMipmaps(Texture2D *texture); /;" p typeref:typename:RLAPI void +GenericReparseBuffer third_party/libuv/src/win/winapi.h /^ } GenericReparseBuffer;$/;" m union:_REPARSE_DATA_BUFFER::__anon941c3301010a typeref:struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010408 Gesture third_party/raylib/include/raylib.h /^} Gesture;$/;" t typeref:enum:__anonc03ae25c1303 Gesture third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} Gesture;$/;" t typeref:enum:__anon9d42b9dd1303 Gesture third_party/raylib/raylib-5.5_macos/include/raylib.h /^} Gesture;$/;" t typeref:enum:__anon255619051303 @@ -2039,6 +2403,8 @@ GlyphInfo third_party/raylib/raylib-5.5_win64/include/raylib.h /^} GlyphInfo;$/;" t typeref:struct:GlyphInfo GuiButton third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiButton(Rectangle bounds, const char *text); /;" p typeref:typename:RAYGUIAPI int GuiButton third_party/raylib/include/raygui.h /^int GuiButton(Rectangle bounds, const char *text)$/;" f typeref:typename:int +GuiButtonRounded third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiButtonRounded(Rectangle bounds, const char *text, float roundness, int segments/;" p typeref:typename:RAYGUIAPI int +GuiButtonRounded third_party/raylib/include/raygui.h /^int GuiButtonRounded(Rectangle bounds, const char *text, float roundness, int segments)$/;" f typeref:typename:int GuiCheckBox third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiCheckBox(Rectangle bounds, const char *text, bool *checked); /;" p typeref:typename:RAYGUIAPI int GuiCheckBox third_party/raylib/include/raygui.h /^int GuiCheckBox(Rectangle bounds, const char *text, bool *checked)$/;" f typeref:typename:int GuiCheckBoxProperty third_party/raylib/include/raygui.h /^} GuiCheckBoxProperty;$/;" t typeref:enum:__anonbfe71a2a0d03 @@ -2074,6 +2440,8 @@ GuiDropdownBox third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiDropdownBox(Rectangle bounds, const char *text, int *active, bool editMode); /;" p typeref:typename:RAYGUIAPI int GuiDropdownBox third_party/raylib/include/raygui.h /^int GuiDropdownBox(Rectangle bounds, const char *text, int *active, bool editMode)$/;" f typeref:typename:int GuiDropdownBoxProperty third_party/raylib/include/raygui.h /^} GuiDropdownBoxProperty;$/;" t typeref:enum:__anonbfe71a2a0f03 +GuiDropdownBoxRounded third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiDropdownBoxRounded(Rectangle bounds, const char *text, int *active, bool editMo/;" p typeref:typename:RAYGUIAPI int +GuiDropdownBoxRounded third_party/raylib/include/raygui.h /^int GuiDropdownBoxRounded(Rectangle bounds, const char *text, int *active, bool editMode, float /;" f typeref:typename:int GuiDummyRec third_party/raylib/include/raygui.h /^RAYGUIAPI int GuiDummyRec(Rectangle bounds, const char *text); /;" p typeref:typename:RAYGUIAPI int GuiDummyRec third_party/raylib/include/raygui.h /^int GuiDummyRec(Rectangle bounds, const char *text)$/;" f typeref:typename:int GuiEnable third_party/raylib/include/raygui.h /^RAYGUIAPI void GuiEnable(void); \/\/ Enable gui controls (global/;" p typeref:typename:RAYGUIAPI void @@ -2199,6 +2567,23 @@ HASH_KEY_NUMBER dowa/dowa.h /^#define HASH_KEY_NUMBER /;" d HAS_SELECTION third_party/raylib/include/raygui.h /^ #define HAS_SELECTION(/;" d HAS_SELECTION third_party/raylib/include/raygui.h /^ #undef HAS_SELECTION$/;" d +HAVE_DIRENT_TYPES third_party/libuv/include/uv/unix.h /^# define HAVE_DIRENT_TYPES$/;" d +HAVE_DIRENT_TYPES third_party/libuv/include/uv/win.h /^#define HAVE_DIRENT_TYPES$/;" d +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^# define HEAP_EXPORT(/;" d +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^#undef HEAP_EXPORT$/;" d +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(struct heap_node* heap_min(const struct heap* heap)) {$/;" f +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(struct heap_node* heap_min(const struct heap* heap));$/;" p +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)) {$/;" f +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than));$/;" p +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_init(struct heap* heap)) {$/;" f +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_init(struct heap* heap));$/;" p +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_insert(struct heap* heap,$/;" f +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_insert(struct heap* heap,$/;" p +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_remove(struct heap* heap,$/;" f +HEAP_EXPORT third_party/libuv/src/heap-inl.h /^HEAP_EXPORT(void heap_remove(struct heap* heap,$/;" p +HELPER_DECLARE third_party/libuv/test/runner.h /^#define HELPER_DECLARE(/;" d +HELPER_ENTRY third_party/libuv/test/runner.h /^#define HELPER_ENTRY(/;" d +HELPER_IMPL third_party/libuv/test/task.h /^#define HELPER_IMPL(/;" d HTTP_BAD_REQUEST seobeo/seobeo.h /^#define HTTP_BAD_REQUEST /;" d HTTP_CREATED seobeo/seobeo.h /^#define HTTP_CREATED /;" d HTTP_FORBIDDEN seobeo/seobeo.h /^#define HTTP_FORBIDDEN /;" d @@ -2212,10 +2597,13 @@ HUEBAR_SELECTOR_HEIGHT third_party/raylib/include/raygui.h /^ HUEBAR_SELECTOR_HEIGHT, \/\/ ColorPicker right hue bar selector height$/;" e enum:__anonbfe71a2a1303 HUEBAR_SELECTOR_OVERFLOW third_party/raylib/include/raygui.h /^ HUEBAR_SELECTOR_OVERFLOW \/\/ ColorPicker right hue bar selector overflow$/;" e enum:__anonbfe71a2a1303 HUEBAR_WIDTH third_party/raylib/include/raygui.h /^ HUEBAR_WIDTH, \/\/ ColorPicker right hue bar width$/;" e enum:__anonbfe71a2a1303 +Handle third_party/libuv/include/uv/win.h /^ HANDLE Handle;$/;" m struct:_AFD_POLL_HANDLE_INFO typeref:typename:HANDLE +Handles third_party/libuv/include/uv/win.h /^ AFD_POLL_HANDLE_INFO Handles[1];$/;" m struct:_AFD_POLL_INFO typeref:typename:AFD_POLL_HANDLE_INFO[1] HideCursor third_party/raylib/include/raylib.h /^RLAPI void HideCursor(void); \/\/ Hides cursor$/;" p typeref:typename:RLAPI void HideCursor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void HideCursor(void); \/\/ Hides cursor$/;" p typeref:typename:RLAPI void HideCursor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void HideCursor(void); \/\/ Hides cursor$/;" p typeref:typename:RLAPI void HideCursor third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void HideCursor(void); \/\/ Hides cursor$/;" p typeref:typename:RLAPI void +HorizontalSplit third_party/raylib/custom.h /^Rectangle HorizontalSplit(Rectangle container, float ratio);$/;" p typeref:typename:Rectangle ICON_1UP third_party/raylib/include/raygui.h /^ ICON_1UP = 148,$/;" e enum:__anonbfe71a2a1403 ICON_250 third_party/raylib/include/raygui.h /^ ICON_250 = 250,$/;" e enum:__anonbfe71a2a1403 ICON_251 third_party/raylib/include/raygui.h /^ ICON_251 = 251,$/;" e enum:__anonbfe71a2a1403 @@ -2474,7 +2862,18 @@ ICON_ZOOM_MEDIUM third_party/raylib/include/raygui.h /^ ICON_ZOOM_MEDIUM = 104,$/;" e enum:__anonbfe71a2a1403 ICON_ZOOM_SMALL third_party/raylib/include/raygui.h /^ ICON_ZOOM_SMALL = 103,$/;" e enum:__anonbfe71a2a1403 INCLUDE_STB_DS_H dowa/stb_ds.h /^#define INCLUDE_STB_DS_H$/;" d +INCREASE_ACTIVE_COUNT third_party/libuv/src/win/handle-inl.h /^#define INCREASE_ACTIVE_COUNT(/;" d INITIAL_BUFFER_CAPACITY seobeo/seobeo.h /^#define INITIAL_BUFFER_CAPACITY /;" d +INLINE third_party/libuv/src/win/internal.h /^# define INLINE /;" d +IOCTL_AFD_POLL third_party/libuv/src/win/winsock.h /^#define IOCTL_AFD_POLL /;" d +IOCTL_AFD_RECEIVE third_party/libuv/src/win/winsock.h /^#define IOCTL_AFD_RECEIVE /;" d +IOCTL_AFD_RECEIVE_DATAGRAM third_party/libuv/src/win/winsock.h /^#define IOCTL_AFD_RECEIVE_DATAGRAM /;" d +IO_REPARSE_TAG_APPEXECLINK third_party/libuv/src/win/winapi.h /^# define IO_REPARSE_TAG_APPEXECLINK /;" d +IO_REPARSE_TAG_SYMLINK third_party/libuv/src/win/winapi.h /^# define IO_REPARSE_TAG_SYMLINK /;" d +IO_STATUS_BLOCK third_party/libuv/src/win/winapi.h /^} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;$/;" t typeref:struct:_IO_STATUS_BLOCK +IPV6_HOPLIMIT third_party/libuv/src/win/winsock.h /^# define IPV6_HOPLIMIT /;" d +IPV6_V6ONLY third_party/libuv/src/win/winsock.h /^# define IPV6_V6ONLY /;" d +IdleTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER IdleTime;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:LARGE_INTEGER Image third_party/raylib/include/raygui.h /^ typedef struct Image {$/;" s Image third_party/raylib/include/raygui.h /^ } Image;$/;" t typeref:struct:Image Image third_party/raylib/include/raylib.h /^typedef struct Image {$/;" s @@ -2693,6 +3092,11 @@ ImageToPOT third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void ImageToPOT(Image *image, Color fill); /;" p typeref:typename:RLAPI void ImageToPOT third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void ImageToPOT(Image *image, Color fill); /;" p typeref:typename:RLAPI void ImageToPOT third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void ImageToPOT(Image *image, Color fill); /;" p typeref:typename:RLAPI void +InboundQuota third_party/libuv/src/win/winapi.h /^ ULONG InboundQuota;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +IncreaseFontSize third_party/raylib/custom.h /^void IncreaseFontSize();$/;" p typeref:typename:void +IndexNumber third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER IndexNumber;$/;" m struct:_FILE_INTERNAL_INFORMATION typeref:typename:LARGE_INTEGER +Information third_party/libuv/src/win/winapi.h /^ ULONG_PTR Information;$/;" m struct:_IO_STATUS_BLOCK typeref:typename:ULONG_PTR +InheritedFromUniqueProcessId third_party/libuv/src/win/winapi.h /^ ULONG_PTR InheritedFromUniqueProcessId;$/;" m struct:_PROCESS_BASIC_INFORMATION typeref:typename:ULONG_PTR InitAudioDevice third_party/raylib/include/raylib.h /^RLAPI void InitAudioDevice(void); \/\/ Initialize audio devi/;" p typeref:typename:RLAPI void InitAudioDevice third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void InitAudioDevice(void); \/\/ Initialize audio devi/;" p typeref:typename:RLAPI void InitAudioDevice third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void InitAudioDevice(void); \/\/ Initialize audio devi/;" p typeref:typename:RLAPI void @@ -2703,6 +3107,9 @@ InitWindow third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void InitWindow(int width, int height, const char *title); \/\/ Initialize window and Ope/;" p typeref:typename:RLAPI void InitWindow third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void InitWindow(int width, int height, const char *title); \/\/ Initialize window and Ope/;" p typeref:typename:RLAPI void InitWindow third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void InitWindow(int width, int height, const char *title); \/\/ Initialize window and Ope/;" p typeref:typename:RLAPI void +InternalInformation third_party/libuv/src/win/winapi.h /^ FILE_INTERNAL_INFORMATION InternalInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_INTERNAL_INFORMATION +InterruptCount third_party/libuv/src/win/winapi.h /^ ULONG InterruptCount;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:ULONG +InterruptTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER InterruptTime;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:LARGE_INTEGER IsAudioDeviceReady third_party/raylib/include/raylib.h /^RLAPI bool IsAudioDeviceReady(void); \/\/ Check if audio device/;" p typeref:typename:RLAPI bool IsAudioDeviceReady third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool IsAudioDeviceReady(void); \/\/ Check if audio device/;" p typeref:typename:RLAPI bool IsAudioDeviceReady third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool IsAudioDeviceReady(void); \/\/ Check if audio device/;" p typeref:typename:RLAPI bool @@ -2892,6 +3299,12 @@ IsWindowState third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool IsWindowState(unsigned int flag); \/\/ Check if one specific win/;" p typeref:typename:RLAPI bool IsWindowState third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool IsWindowState(unsigned int flag); \/\/ Check if one specific win/;" p typeref:typename:RLAPI bool IsWindowState third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI bool IsWindowState(unsigned int flag); \/\/ Check if one specific win/;" p typeref:typename:RLAPI bool +JOB_OBJECT_LIMIT_BREAKAWAY_OK third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_BREAKAWAY_OK /;" d +JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION /;" d +JOB_OBJECT_LIMIT_JOB_MEMORY third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_JOB_MEMORY /;" d +JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE /;" d +JOB_OBJECT_LIMIT_PROCESS_MEMORY third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_PROCESS_MEMORY /;" d +JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK third_party/libuv/src/win/winapi.h /^# define JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK /;" d JUNE_DrawRectangleLinesNoBottom third_party/raylib/include/raygui.h /^RAYGUIAPI void JUNE_DrawRectangleLinesNoBottom(Rectangle rect, float thickness, Color color);$/;" p typeref:typename:RAYGUIAPI void JUNE_DrawRectangleLinesNoBottom third_party/raylib/include/raygui.h /^void JUNE_DrawRectangleLinesNoBottom(Rectangle rect, float thickness, Color color) {$/;" f typeref:typename:void JUNE_GuiButton third_party/raylib/include/raygui.h /^int JUNE_GuiButton(Rectangle bounds, const char *text, int borderWidth, Color borderColor)$/;" f typeref:typename:int @@ -3346,6 +3759,7 @@ KEY_ZERO third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ KEY_ZERO = 48, \/\/ Key: 0$/;" e enum:__anon9d42b9dd0403 KEY_ZERO third_party/raylib/raylib-5.5_macos/include/raylib.h /^ KEY_ZERO = 48, \/\/ Key: 0$/;" e enum:__anon255619050403 KEY_ZERO third_party/raylib/raylib-5.5_win64/include/raylib.h /^ KEY_ZERO = 48, \/\/ Key: 0$/;" e enum:__anonf614aaea0403 +KernelTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER KernelTime;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:LARGE_INTEGER KeyboardKey third_party/raylib/include/raylib.h /^} KeyboardKey;$/;" t typeref:enum:__anonc03ae25c0403 KeyboardKey third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} KeyboardKey;$/;" t typeref:enum:__anon9d42b9dd0403 KeyboardKey third_party/raylib/raylib-5.5_macos/include/raylib.h /^} KeyboardKey;$/;" t typeref:enum:__anon255619050403 @@ -3365,6 +3779,7 @@ LIST_ITEMS_BORDER_WIDTH third_party/raylib/include/raygui.h /^ LIST_ITEMS_BORDER_WIDTH \/\/ ListView items border width$/;" e enum:__anonbfe71a2a1203 LIST_ITEMS_HEIGHT third_party/raylib/include/raygui.h /^ LIST_ITEMS_HEIGHT = 16, \/\/ ListView items height$/;" e enum:__anonbfe71a2a1203 LIST_ITEMS_SPACING third_party/raylib/include/raygui.h /^ LIST_ITEMS_SPACING, \/\/ ListView items separation$/;" e enum:__anonbfe71a2a1203 +LOCALE_INVARIANT third_party/libuv/include/uv/win.h /^# define LOCALE_INVARIANT /;" d LOG_ALL third_party/raylib/include/raylib.h /^ LOG_ALL = 0, \/\/ Display all logs$/;" e enum:__anonc03ae25c0303 LOG_ALL third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ LOG_ALL = 0, \/\/ Display all logs$/;" e enum:__anon9d42b9dd0303 LOG_ALL third_party/raylib/raylib-5.5_macos/include/raylib.h /^ LOG_ALL = 0, \/\/ Display all logs$/;" e enum:__anon255619050303 @@ -3397,6 +3812,25 @@ LOG_WARNING third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ LOG_WARNING, \/\/ Warning logging, used on recoverable failures$/;" e enum:__anon9d42b9dd0303 LOG_WARNING third_party/raylib/raylib-5.5_macos/include/raylib.h /^ LOG_WARNING, \/\/ Warning logging, used on recoverable failures$/;" e enum:__anon255619050303 LOG_WARNING third_party/raylib/raylib-5.5_win64/include/raylib.h /^ LOG_WARNING, \/\/ Warning logging, used on recoverable failures$/;" e enum:__anonf614aaea0303 +LPFN_ACCEPTEX third_party/libuv/include/uv/win.h /^ typedef BOOL (PASCAL *LPFN_ACCEPTEX)$/;" t typeref:typename:BOOL (PASCAL *)(SOCKET sListenSocket,SOCKET sAcceptSocket,PVOID lpOutputBuffer,DWORD dwReceiveDataLength,DWORD dwLocalAddressLength,DWORD dwRemoteAddressLength,LPDWORD lpdwBytesReceived,LPOVERLAPPED lpOverlapped) +LPFN_CONNECTEX third_party/libuv/include/uv/win.h /^ typedef BOOL (PASCAL *LPFN_CONNECTEX)$/;" t typeref:typename:BOOL (PASCAL *)(SOCKET s,const struct sockaddr * name,int namelen,PVOID lpSendBuffer,DWORD dwSendDataLength,LPDWORD lpdwBytesSent,LPOVERLAPPED lpOverlapped) +LPFN_DISCONNECTEX third_party/libuv/include/uv/win.h /^ typedef BOOL (PASCAL *LPFN_DISCONNECTEX)$/;" t typeref:typename:BOOL (PASCAL *)(SOCKET hSocket,LPOVERLAPPED lpOverlapped,DWORD dwFlags,DWORD reserved) +LPFN_GETACCEPTEXSOCKADDRS third_party/libuv/include/uv/win.h /^ typedef void (PASCAL *LPFN_GETACCEPTEXSOCKADDRS)$/;" t typeref:typename:void (PASCAL *)(PVOID lpOutputBuffer,DWORD dwReceiveDataLength,DWORD dwLocalAddressLength,DWORD dwRemoteAddressLength,LPSOCKADDR * LocalSockaddr,LPINT LocalSockaddrLength,LPSOCKADDR * RemoteSockaddr,LPINT RemoteSockaddrLength) +LPFN_TRANSMITFILE third_party/libuv/include/uv/win.h /^ typedef BOOL (PASCAL *LPFN_TRANSMITFILE)$/;" t typeref:typename:BOOL (PASCAL *)(SOCKET hSocket,HANDLE hFile,DWORD nNumberOfBytesToWrite,DWORD nNumberOfBytesPerSend,LPOVERLAPPED lpOverlapped,LPTRANSMIT_FILE_BUFFERS lpTransmitBuffers,DWORD dwFlags) +LPFN_WSARECV third_party/libuv/include/uv/win.h /^typedef int (WSAAPI* LPFN_WSARECV)$/;" t typeref:typename:int (WSAAPI *)(SOCKET socket,LPWSABUF buffers,DWORD buffer_count,LPDWORD bytes,LPDWORD flags,LPWSAOVERLAPPED overlapped,LPWSAOVERLAPPED_COMPLETION_ROUTINE completion_routine) +LPFN_WSARECVFROM third_party/libuv/include/uv/win.h /^typedef int (WSAAPI* LPFN_WSARECVFROM)$/;" t typeref:typename:int (WSAAPI *)(SOCKET socket,LPWSABUF buffers,DWORD buffer_count,LPDWORD bytes,LPDWORD flags,struct sockaddr * addr,LPINT addr_len,LPWSAOVERLAPPED overlapped,LPWSAOVERLAPPED_COMPLETION_ROUTINE completion_routine) +LastAccessTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +LastAccessTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +LastAccessTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +LastAccessTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +LastAccessTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +LastWriteTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +LastWriteTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:LARGE_INTEGER +LastWriteTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:LARGE_INTEGER +LastWriteTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:LARGE_INTEGER +LastWriteTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +LeftColumn third_party/raylib/custom.h /^Rectangle LeftColumn(Rectangle container, float ratio, float padding);$/;" p typeref:typename:Rectangle +Length third_party/libuv/src/win/winapi.h /^ USHORT Length;$/;" m struct:_UNICODE_STRING typeref:typename:USHORT Lerp third_party/raylib/include/raymath.h /^RMAPI float Lerp(float start, float end, float amount)$/;" f typeref:typename:RMAPI float Lerp third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^RMAPI float Lerp(float start, float end, float amount)$/;" f typeref:typename:RMAPI float Lerp third_party/raylib/raylib-5.5_macos/include/raymath.h /^RMAPI float Lerp(float start, float end, float amount)$/;" f typeref:typename:RMAPI float @@ -3589,10 +4023,12 @@ LoadWaveSamples third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI float *LoadWaveSamples(Wave wave); \/\/ Load samples data fro/;" p typeref:typename:RLAPI float * LoadWaveSamples third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI float *LoadWaveSamples(Wave wave); \/\/ Load samples data fro/;" p typeref:typename:RLAPI float * LoadWaveSamples third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI float *LoadWaveSamples(Wave wave); \/\/ Load samples data fro/;" p typeref:typename:RLAPI float * +LogicalBytesPerSector third_party/libuv/src/win/winapi.h /^ ULONG LogicalBytesPerSector;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG MAGENTA third_party/raylib/include/raylib.h /^#define MAGENTA /;" d MAGENTA third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define MAGENTA /;" d MAGENTA third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define MAGENTA /;" d MAGENTA third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define MAGENTA /;" d +MAKE_VALGRIND_HAPPY third_party/libuv/test/task.h /^#define MAKE_VALGRIND_HAPPY(/;" d MARKDOWN_TO_HTML_H markdown_converter/markdown_to_html.h /^#define MARKDOWN_TO_HTML_H$/;" d MAROON third_party/raylib/include/raylib.h /^#define MAROON /;" d MAROON third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define MAROON /;" d @@ -3655,14 +4091,26 @@ MAX third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #define MAX(/;" d MAX third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ #define MAX(/;" d MAX_DIRECTORY_FILES postdog/gui_window_file_dialog.h /^#define MAX_DIRECTORY_FILES /;" d +MAX_EPOLL_INSTANCES third_party/libuv/src/unix/os390-syscalls.h /^#define MAX_EPOLL_INSTANCES /;" d MAX_FRAGMENT_SIZE seobeo/seobeo_internal.h /^#define MAX_FRAGMENT_SIZE /;" d MAX_ICON_PATH_LENGTH postdog/gui_window_file_dialog.h /^#define MAX_ICON_PATH_LENGTH /;" d MAX_INT_16 seobeo/seobeo_internal.h /^#define MAX_INT_16 /;" d +MAX_ITEMS_PER_EPOLL third_party/libuv/src/unix/os390-syscalls.h /^#define MAX_ITEMS_PER_EPOLL /;" d MAX_LINE_BUFFER_SIZE third_party/raylib/include/raygui.h /^ #define MAX_LINE_BUFFER_SIZE /;" d +MAX_PIPENAME_LEN third_party/libuv/include/uv/win.h /^#define MAX_PIPENAME_LEN /;" d +MAX_PROCESSES third_party/libuv/test/runner.h /^#define MAX_PROCESSES /;" d MAX_RESPONSE_SIZE mrjunejune/test/test.h /^#define MAX_RESPONSE_SIZE /;" d +MCAST_JOIN_SOURCE_GROUP third_party/libuv/src/win/winsock.h /^# define MCAST_JOIN_SOURCE_GROUP /;" d +MCAST_LEAVE_SOURCE_GROUP third_party/libuv/src/win/winsock.h /^# define MCAST_LEAVE_SOURCE_GROUP /;" d MDAPI markdown_converter/markdown_to_html.h /^ #define MDAPI /;" d MDAPI markdown_converter/markdown_to_html.h /^ #define MDAPI /;" d MDAPI markdown_converter/markdown_to_html.h /^ #define MDAPI /;" d +METHOD_BUFFERED third_party/libuv/src/win/winapi.h /^# define METHOD_BUFFERED /;" d +METHOD_DIRECT_FROM_HARDWARE third_party/libuv/src/win/winapi.h /^# define METHOD_DIRECT_FROM_HARDWARE /;" d +METHOD_DIRECT_TO_HARDWARE third_party/libuv/src/win/winapi.h /^# define METHOD_DIRECT_TO_HARDWARE /;" d +METHOD_IN_DIRECT third_party/libuv/src/win/winapi.h /^# define METHOD_IN_DIRECT /;" d +METHOD_NEITHER third_party/libuv/src/win/winapi.h /^#define METHOD_NEITHER /;" d +METHOD_OUT_DIRECT third_party/libuv/src/win/winapi.h /^# define METHOD_OUT_DIRECT /;" d MIN third_party/raylib/include/rlgl.h /^ #define MIN(/;" d MIN third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #define MIN(/;" d MIN third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #define MIN(/;" d @@ -3892,10 +4340,15 @@ MatrixTranspose third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^RMAPI Matrix MatrixTranspose(Matrix mat)$/;" f typeref:typename:RMAPI Matrix MatrixTranspose third_party/raylib/raylib-5.5_macos/include/raymath.h /^RMAPI Matrix MatrixTranspose(Matrix mat)$/;" f typeref:typename:RMAPI Matrix MatrixTranspose third_party/raylib/raylib-5.5_win64/include/raymath.h /^RMAPI Matrix MatrixTranspose(Matrix mat)$/;" f typeref:typename:RMAPI Matrix +MaxSynRetransmissions third_party/libuv/src/win/winapi.h /^ UCHAR MaxSynRetransmissions;$/;" m struct:_TCP_INITIAL_RTO_PARAMETERS typeref:typename:UCHAR MaximizeWindow third_party/raylib/include/raylib.h /^RLAPI void MaximizeWindow(void); \/\/ Set window state: maximiz/;" p typeref:typename:RLAPI void MaximizeWindow third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void MaximizeWindow(void); \/\/ Set window state: maximiz/;" p typeref:typename:RLAPI void MaximizeWindow third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void MaximizeWindow(void); \/\/ Set window state: maximiz/;" p typeref:typename:RLAPI void MaximizeWindow third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void MaximizeWindow(void); \/\/ Set window state: maximiz/;" p typeref:typename:RLAPI void +MaximumComponentNameLength third_party/libuv/src/win/winapi.h /^ LONG MaximumComponentNameLength;$/;" m struct:_FILE_FS_ATTRIBUTE_INFORMATION typeref:typename:LONG +MaximumFileInfoByNameClass third_party/libuv/src/win/winapi.h /^ MaximumFileInfoByNameClass$/;" e enum:_FILE_INFO_BY_NAME_CLASS +MaximumInstances third_party/libuv/src/win/winapi.h /^ ULONG MaximumInstances;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +MaximumLength third_party/libuv/src/win/winapi.h /^ USHORT MaximumLength;$/;" m struct:_UNICODE_STRING typeref:typename:USHORT MeasureText third_party/raylib/include/raylib.h /^RLAPI int MeasureText(const char *text, int fontSize); \/\//;" p typeref:typename:RLAPI int MeasureText third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI int MeasureText(const char *text, int fontSize); \/\//;" p typeref:typename:RLAPI int MeasureText third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI int MeasureText(const char *text, int fontSize); \/\//;" p typeref:typename:RLAPI int @@ -3928,6 +4381,8 @@ MinimizeWindow third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void MinimizeWindow(void); \/\/ Set window state: minimiz/;" p typeref:typename:RLAPI void MinimizeWindow third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void MinimizeWindow(void); \/\/ Set window state: minimiz/;" p typeref:typename:RLAPI void MinimizeWindow third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void MinimizeWindow(void); \/\/ Set window state: minimiz/;" p typeref:typename:RLAPI void +Mode third_party/libuv/src/win/winapi.h /^ ULONG Mode;$/;" m struct:_FILE_MODE_INFORMATION typeref:typename:ULONG +ModeInformation third_party/libuv/src/win/winapi.h /^ FILE_MODE_INFORMATION ModeInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_MODE_INFORMATION Model third_party/raylib/include/raylib.h /^typedef struct Model {$/;" s Model third_party/raylib/include/raylib.h /^} Model;$/;" t typeref:struct:Model Model third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef struct Model {$/;" s @@ -3944,6 +4399,7 @@ ModelAnimation third_party/raylib/raylib-5.5_macos/include/raylib.h /^} ModelAnimation;$/;" t typeref:struct:ModelAnimation ModelAnimation third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct ModelAnimation {$/;" s ModelAnimation third_party/raylib/raylib-5.5_win64/include/raylib.h /^} ModelAnimation;$/;" t typeref:struct:ModelAnimation +MountPointReparseBuffer third_party/libuv/src/win/winapi.h /^ } MountPointReparseBuffer;$/;" m union:_REPARSE_DATA_BUFFER::__anon941c3301010a typeref:struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 MouseButton third_party/raylib/include/raylib.h /^} MouseButton;$/;" t typeref:enum:__anonc03ae25c0503 MouseButton third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} MouseButton;$/;" t typeref:enum:__anon9d42b9dd0503 MouseButton third_party/raylib/raylib-5.5_macos/include/raylib.h /^} MouseButton;$/;" t typeref:enum:__anon255619050503 @@ -3960,6 +4416,12 @@ Music third_party/raylib/raylib-5.5_macos/include/raylib.h /^} Music;$/;" t typeref:struct:Music Music third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct Music {$/;" s Music third_party/raylib/raylib-5.5_win64/include/raylib.h /^} Music;$/;" t typeref:struct:Music +NI_MAXHOST third_party/libuv/include/uv/unix.h /^# define NI_MAXHOST /;" d +NI_MAXSERV third_party/libuv/include/uv/unix.h /^# define NI_MAXSERV /;" d +NO_CPU_AFFINITY third_party/libuv/test/task.h /^# define NO_CPU_AFFINITY /;" d +NO_FS_EVENTS third_party/libuv/test/task.h /^# define NO_FS_EVENTS /;" d +NO_SELF_CONNECT third_party/libuv/test/task.h /^# define NO_SELF_CONNECT /;" d +NO_SEND_HANDLE_ON_PIPE third_party/libuv/test/task.h /^# define NO_SEND_HANDLE_ON_PIPE /;" d NPATCH_NINE_PATCH third_party/raylib/include/raylib.h /^ NPATCH_NINE_PATCH = 0, \/\/ Npatch layout: 3x3 tiles$/;" e enum:__anonc03ae25c1603 NPATCH_NINE_PATCH third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ NPATCH_NINE_PATCH = 0, \/\/ Npatch layout: 3x3 tiles$/;" e enum:__anon9d42b9dd1603 NPATCH_NINE_PATCH third_party/raylib/raylib-5.5_macos/include/raylib.h /^ NPATCH_NINE_PATCH = 0, \/\/ Npatch layout: 3x3 tiles$/;" e enum:__anon255619051603 @@ -3984,16 +4446,40 @@ NPatchLayout third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} NPatchLayout;$/;" t typeref:enum:__anon9d42b9dd1603 NPatchLayout third_party/raylib/raylib-5.5_macos/include/raylib.h /^} NPatchLayout;$/;" t typeref:enum:__anon255619051603 NPatchLayout third_party/raylib/raylib-5.5_win64/include/raylib.h /^} NPatchLayout;$/;" t typeref:enum:__anonf614aaea1603 +NSIG third_party/libuv/include/uv/win.h /^# define NSIG /;" d +NSIG third_party/libuv/include/uv/win.h /^# undef NSIG$/;" d +NTDDI_WIN11_ZN third_party/libuv/src/win/winapi.h /^# define NTDDI_WIN11_ZN /;" d +NTSTATUS third_party/libuv/include/uv/win.h /^ typedef LONG NTSTATUS;$/;" t typeref:typename:LONG +NTSTATUS_FROM_WIN32 third_party/libuv/src/win/winapi.h /^# undef NTSTATUS_FROM_WIN32$/;" d +NTSTATUS_FROM_WIN32 third_party/libuv/src/win/winapi.h /^#define NTSTATUS_FROM_WIN32(/;" d +NT_ERROR third_party/libuv/src/win/winapi.h /^# define NT_ERROR(/;" d +NT_INFORMATION third_party/libuv/src/win/winapi.h /^# define NT_INFORMATION(/;" d +NT_SUCCESS third_party/libuv/src/win/winapi.h /^# define NT_SUCCESS(/;" d +NT_WARNING third_party/libuv/src/win/winapi.h /^# define NT_WARNING(/;" d +NameInformation third_party/libuv/src/win/winapi.h /^ FILE_NAME_INFORMATION NameInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_NAME_INFORMATION +NamedPipeConfiguration third_party/libuv/src/win/winapi.h /^ ULONG NamedPipeConfiguration;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +NamedPipeEnd third_party/libuv/src/win/winapi.h /^ ULONG NamedPipeEnd;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +NamedPipeState third_party/libuv/src/win/winapi.h /^ ULONG NamedPipeState;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +NamedPipeType third_party/libuv/src/win/winapi.h /^ ULONG NamedPipeType;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +NextEntryOffset third_party/libuv/src/win/winapi.h /^ ULONG NextEntryOffset;$/;" m struct:_FILE_ID_FULL_DIR_INFORMATION typeref:typename:ULONG +NextEntryOffset third_party/libuv/src/win/winapi.h /^ ULONG NextEntryOffset;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:ULONG +NextEntryOffset third_party/libuv/src/win/winapi.h /^ ULONG NextEntryOffset;$/;" m struct:_FILE_DIRECTORY_INFORMATION typeref:typename:ULONG Normalize third_party/raylib/include/raymath.h /^RMAPI float Normalize(float value, float start, float end)$/;" f typeref:typename:RMAPI float Normalize third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^RMAPI float Normalize(float value, float start, float end)$/;" f typeref:typename:RMAPI float Normalize third_party/raylib/raylib-5.5_macos/include/raymath.h /^RMAPI float Normalize(float value, float start, float end)$/;" f typeref:typename:RMAPI float Normalize third_party/raylib/raylib-5.5_win64/include/raymath.h /^RMAPI float Normalize(float value, float start, float end)$/;" f typeref:typename:RMAPI float +NumberOfHandles third_party/libuv/include/uv/win.h /^ ULONG NumberOfHandles;$/;" m struct:_AFD_POLL_INFO typeref:typename:ULONG +NumberOfLinks third_party/libuv/src/win/winapi.h /^ ULONG NumberOfLinks;$/;" m struct:_FILE_STANDARD_INFORMATION typeref:typename:ULONG +NumberOfLinks third_party/libuv/src/win/winapi.h /^ ULONG NumberOfLinks;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG ONE_MEGA_BYTE dowa/dowa.h /^#define ONE_MEGA_BYTE /;" d ORANGE third_party/raylib/include/raylib.h /^#define ORANGE /;" d ORANGE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define ORANGE /;" d ORANGE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define ORANGE /;" d ORANGE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define ORANGE /;" d +OSStatus third_party/libuv/src/unix/darwin-stub.h /^typedef int OSStatus;$/;" t typeref:typename:int OTHER third_party/raylib/include/raygui.h /^typedef enum { BORDER = 0, BASE, TEXT, OTHER } GuiPropertyElement;$/;" e enum:__anonbfe71a2a1503 +O_CLOEXEC third_party/libuv/src/unix/internal.h /^# define O_CLOEXEC /;" d +ObjectId third_party/libuv/src/win/winapi.h /^ UCHAR ObjectId[16];$/;" m struct:_FILE_FS_OBJECTID_INFORMATION typeref:typename:UCHAR[16] OpenGL/gl.h third_party/raylib/include/rlgl.h /^ #include <OpenGL\/gl.h>/;" h OpenGL/gl.h third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #include <OpenGL\/gl.h>/;" h OpenGL/gl.h third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #include <OpenGL\/gl.h>/;" h @@ -4006,7 +4492,45 @@ OpenURL third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void OpenURL(const char *url); \/\/ Open URL with default sys/;" p typeref:typename:RLAPI void OpenURL third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void OpenURL(const char *url); \/\/ Open URL with default sys/;" p typeref:typename:RLAPI void OpenURL third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void OpenURL(const char *url); \/\/ Open URL with default sys/;" p typeref:typename:RLAPI void +OutboundQuota third_party/libuv/src/win/winapi.h /^ ULONG OutboundQuota;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +PAFD_POLL_HANDLE_INFO third_party/libuv/include/uv/win.h /^} AFD_POLL_HANDLE_INFO, *PAFD_POLL_HANDLE_INFO;$/;" t typeref:struct:_AFD_POLL_HANDLE_INFO * +PAFD_POLL_INFO third_party/libuv/include/uv/win.h /^} AFD_POLL_INFO, *PAFD_POLL_INFO;$/;" t typeref:struct:_AFD_POLL_INFO * +PAFD_RECV_DATAGRAM_INFO third_party/libuv/src/win/winsock.h /^} AFD_RECV_DATAGRAM_INFO, *PAFD_RECV_DATAGRAM_INFO;$/;" t typeref:struct:_AFD_RECV_DATAGRAM_INFO * +PAFD_RECV_INFO third_party/libuv/src/win/winsock.h /^} AFD_RECV_INFO, *PAFD_RECV_INFO;$/;" t typeref:struct:_AFD_RECV_INFO * PATH_SEPERATOR postdog/gui_window_file_dialog.h /^#define PATH_SEPERATOR /;" d +PBT_APMRESUMEAUTOMATIC third_party/libuv/src/win/winapi.h /^# define PBT_APMRESUMEAUTOMATIC /;" d +PBT_APMRESUMESUSPEND third_party/libuv/src/win/winapi.h /^# define PBT_APMRESUMESUSPEND /;" d +PCONDITION_VARIABLE third_party/libuv/include/uv/win.h /^ typedef PVOID CONDITION_VARIABLE, *PCONDITION_VARIABLE;$/;" t typeref:typename:PVOID * +PCUNICODE_STRING third_party/libuv/src/win/winapi.h /^typedef const UNICODE_STRING *PCUNICODE_STRING;$/;" t typeref:typename:const UNICODE_STRING * +PFILE_ACCESS_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ACCESS_INFORMATION, *PFILE_ACCESS_INFORMATION;$/;" t typeref:struct:_FILE_ACCESS_INFORMATION * +PFILE_ALIGNMENT_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ALIGNMENT_INFORMATION, *PFILE_ALIGNMENT_INFORMATION;$/;" t typeref:struct:_FILE_ALIGNMENT_INFORMATION * +PFILE_ALL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ALL_INFORMATION, *PFILE_ALL_INFORMATION;$/;" t typeref:struct:_FILE_ALL_INFORMATION * +PFILE_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_BASIC_INFORMATION, *PFILE_BASIC_INFORMATION;$/;" t typeref:struct:_FILE_BASIC_INFORMATION * +PFILE_BOTH_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_BOTH_DIR_INFORMATION, *PFILE_BOTH_DIR_INFORMATION;$/;" t typeref:struct:_FILE_BOTH_DIR_INFORMATION * +PFILE_DIRECTORY_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_DIRECTORY_INFORMATION, *PFILE_DIRECTORY_INFORMATION;$/;" t typeref:struct:_FILE_DIRECTORY_INFORMATION * +PFILE_DISPOSITION_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION;$/;" t typeref:struct:_FILE_DISPOSITION_INFORMATION * +PFILE_DISPOSITION_INFORMATION_EX third_party/libuv/src/win/winapi.h /^} FILE_DISPOSITION_INFORMATION_EX, *PFILE_DISPOSITION_INFORMATION_EX;$/;" t typeref:struct:_FILE_DISPOSITION_INFORMATION_EX * +PFILE_EA_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_EA_INFORMATION, *PFILE_EA_INFORMATION;$/;" t typeref:struct:_FILE_EA_INFORMATION * +PFILE_END_OF_FILE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_END_OF_FILE_INFORMATION, *PFILE_END_OF_FILE_INFORMATION;$/;" t typeref:struct:_FILE_END_OF_FILE_INFORMATION * +PFILE_FS_ATTRIBUTE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_ATTRIBUTE_INFORMATION, *PFILE_FS_ATTRIBUTE_INFORMATION;$/;" t typeref:struct:_FILE_FS_ATTRIBUTE_INFORMATION * +PFILE_FS_CONTROL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_CONTROL_INFORMATION, *PFILE_FS_CONTROL_INFORMATION;$/;" t typeref:struct:_FILE_FS_CONTROL_INFORMATION * +PFILE_FS_DEVICE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_DEVICE_INFORMATION, *PFILE_FS_DEVICE_INFORMATION;$/;" t typeref:struct:_FILE_FS_DEVICE_INFORMATION * +PFILE_FS_DRIVER_PATH_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_DRIVER_PATH_INFORMATION, *PFILE_FS_DRIVER_PATH_INFORMATION;$/;" t typeref:struct:_FILE_FS_DRIVER_PATH_INFORMATION * +PFILE_FS_FULL_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_FULL_SIZE_INFORMATION, *PFILE_FS_FULL_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_FULL_SIZE_INFORMATION * +PFILE_FS_LABEL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_LABEL_INFORMATION, *PFILE_FS_LABEL_INFORMATION;$/;" t typeref:struct:_FILE_FS_LABEL_INFORMATION * +PFILE_FS_OBJECTID_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_OBJECTID_INFORMATION, *PFILE_FS_OBJECTID_INFORMATION;$/;" t typeref:struct:_FILE_FS_OBJECTID_INFORMATION * +PFILE_FS_SECTOR_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_SECTOR_SIZE_INFORMATION, *PFILE_FS_SECTOR_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_SECTOR_SIZE_INFORMATION * +PFILE_FS_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_SIZE_INFORMATION, *PFILE_FS_SIZE_INFORMATION;$/;" t typeref:struct:_FILE_FS_SIZE_INFORMATION * +PFILE_FS_VOLUME_FLAGS_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_VOLUME_FLAGS_INFORMATION, *PFILE_FS_VOLUME_FLAGS_INFORMATION;$/;" t typeref:struct:_FILE_FS_VOLUME_FLAGS_INFORMATION * +PFILE_FS_VOLUME_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_FS_VOLUME_INFORMATION, *PFILE_FS_VOLUME_INFORMATION;$/;" t typeref:struct:_FILE_FS_VOLUME_INFORMATION * +PFILE_ID_FULL_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_ID_FULL_DIR_INFORMATION, *PFILE_ID_FULL_DIR_INFORMATION;$/;" t typeref:struct:_FILE_ID_FULL_DIR_INFORMATION * +PFILE_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^} FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;$/;" t typeref:enum:_FILE_INFORMATION_CLASS * +PFILE_INTERNAL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_INTERNAL_INFORMATION, *PFILE_INTERNAL_INFORMATION;$/;" t typeref:struct:_FILE_INTERNAL_INFORMATION * +PFILE_MODE_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_MODE_INFORMATION, *PFILE_MODE_INFORMATION;$/;" t typeref:struct:_FILE_MODE_INFORMATION * +PFILE_NAME_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_NAME_INFORMATION, *PFILE_NAME_INFORMATION;$/;" t typeref:struct:_FILE_NAME_INFORMATION * +PFILE_PIPE_LOCAL_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_PIPE_LOCAL_INFORMATION, *PFILE_PIPE_LOCAL_INFORMATION;$/;" t typeref:struct:_FILE_PIPE_LOCAL_INFORMATION * +PFILE_POSITION_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_POSITION_INFORMATION, *PFILE_POSITION_INFORMATION;$/;" t typeref:struct:_FILE_POSITION_INFORMATION * +PFILE_STANDARD_INFORMATION third_party/libuv/src/win/winapi.h /^} FILE_STANDARD_INFORMATION, *PFILE_STANDARD_INFORMATION;$/;" t typeref:struct:_FILE_STANDARD_INFORMATION * PFNGLDRAWARRAYSINSTANCEDEXTPROC third_party/raylib/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsiz/;" t typeref:typename:void (GL_APIENTRYP)(GLenum mode,GLint start,GLsizei count,GLsizei primcount) PFNGLDRAWARRAYSINSTANCEDEXTPROC third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsiz/;" t typeref:typename:void (GL_APIENTRYP)(GLenum mode,GLint start,GLsizei count,GLsizei primcount) PFNGLDRAWARRAYSINSTANCEDEXTPROC third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsiz/;" t typeref:typename:void (GL_APIENTRYP)(GLenum mode,GLint start,GLsizei count,GLsizei primcount) @@ -4019,6 +4543,7 @@ PFNGLVERTEXATTRIBDIVISOREXTPROC third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor);$/;" t typeref:typename:void (GL_APIENTRYP)(GLuint index,GLuint divisor) PFNGLVERTEXATTRIBDIVISOREXTPROC third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor);$/;" t typeref:typename:void (GL_APIENTRYP)(GLuint index,GLuint divisor) PFNGLVERTEXATTRIBDIVISOREXTPROC third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor);$/;" t typeref:typename:void (GL_APIENTRYP)(GLuint index,GLuint divisor) +PFS_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^} FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;$/;" t typeref:enum:_FS_INFORMATION_CLASS * PI third_party/raylib/include/raylib.h /^ #define PI /;" d PI third_party/raylib/include/raymath.h /^ #define PI /;" d PI third_party/raylib/include/rlgl.h /^ #define PI /;" d @@ -4035,6 +4560,9 @@ PINK third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define PINK /;" d PINK third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define PINK /;" d PINK third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define PINK /;" d +PIO_APC_ROUTINE third_party/libuv/src/win/winapi.h /^typedef VOID (NTAPI *PIO_APC_ROUTINE)$/;" t typeref:typename:VOID (NTAPI *)(PVOID ApcContext,PIO_STATUS_BLOCK IoStatusBlock,ULONG Reserved) +PIO_STATUS_BLOCK third_party/libuv/src/win/winapi.h /^} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;$/;" t typeref:struct:_IO_STATUS_BLOCK * +PIPE third_party/libuv/test/task.h /^ PIPE$/;" e enum:__anon53cf48870103 PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA third_party/raylib/include/raylib.h /^ PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA, \/\/ 8 bpp$/;" e enum:__anonc03ae25c0d03 PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA, \/\/ 8 bpp$/;" e enum:__anon9d42b9dd0d03 PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA third_party/raylib/raylib-5.5_macos/include/raylib.h /^ PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA, \/\/ 8 bpp$/;" e enum:__anon255619050d03 @@ -4131,12 +4659,25 @@ PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, \/\/ 32 bpp$/;" e enum:__anon9d42b9dd0d03 PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 third_party/raylib/raylib-5.5_macos/include/raylib.h /^ PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, \/\/ 32 bpp$/;" e enum:__anon255619050d03 PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 third_party/raylib/raylib-5.5_win64/include/raylib.h /^ PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, \/\/ 32 bpp$/;" e enum:__anonf614aaea0d03 +PNTSTATUS third_party/libuv/include/uv/win.h /^ typedef NTSTATUS *PNTSTATUS;$/;" t typeref:typename:NTSTATUS * +POST_COMPLETION_FOR_REQ third_party/libuv/src/win/req-inl.h /^#define POST_COMPLETION_FOR_REQ(/;" d +PPROCESS_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^} PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION;$/;" t typeref:struct:_PROCESS_BASIC_INFORMATION * +PREPARSE_DATA_BUFFER third_party/libuv/src/win/winapi.h /^} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;$/;" t typeref:struct:_REPARSE_DATA_BUFFER * +PROCESS_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^} PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION;$/;" t typeref:struct:_PROCESS_BASIC_INFORMATION PROGRESSBAR third_party/raylib/include/raygui.h /^ PROGRESSBAR,$/;" e enum:__anonbfe71a2a0603 PROGRESS_PADDING third_party/raylib/include/raygui.h /^ PROGRESS_PADDING = 16, \/\/ ProgressBar internal padding$/;" e enum:__anonbfe71a2a0b03 +PSRWLOCK third_party/libuv/include/uv/win.h /^ typedef RTL_SRWLOCK SRWLOCK, *PSRWLOCK;$/;" t typeref:typename:RTL_SRWLOCK * +PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION third_party/libuv/src/win/winapi.h /^} SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION, *PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION;$/;" t typeref:struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION * +PTCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#define PTCP_INITIAL_RTO_PARAMETERS PTCP_INITIAL_RTO_PARAMETERS_/;" d +PTCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#undef PTCP_INITIAL_RTO_PARAMETERS$/;" d +PTCP_INITIAL_RTO_PARAMETERS third_party/libuv/src/win/winapi.h /^} TCP_INITIAL_RTO_PARAMETERS, *PTCP_INITIAL_RTO_PARAMETERS;$/;" t typeref:struct:_TCP_INITIAL_RTO_PARAMETERS * +PUNICODE_STRING third_party/libuv/src/win/winapi.h /^} UNICODE_STRING, *PUNICODE_STRING;$/;" t typeref:struct:_UNICODE_STRING * PURPLE third_party/raylib/include/raylib.h /^#define PURPLE /;" d PURPLE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define PURPLE /;" d PURPLE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define PURPLE /;" d PURPLE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define PURPLE /;" d +PathBuffer third_party/libuv/src/win/winapi.h /^ WCHAR PathBuffer[1];$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:WCHAR[1] +PathBuffer third_party/libuv/src/win/winapi.h /^ WCHAR PathBuffer[1];$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 typeref:typename:WCHAR[1] PauseAudioStream third_party/raylib/include/raylib.h /^RLAPI void PauseAudioStream(AudioStream stream); \/\/ Pause audio stream$/;" p typeref:typename:RLAPI void PauseAudioStream third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void PauseAudioStream(AudioStream stream); \/\/ Pause audio stream$/;" p typeref:typename:RLAPI void PauseAudioStream third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void PauseAudioStream(AudioStream stream); \/\/ Pause audio stream$/;" p typeref:typename:RLAPI void @@ -4149,6 +4690,9 @@ PauseSound third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void PauseSound(Sound sound); \/\/ Pause a sound$/;" p typeref:typename:RLAPI void PauseSound third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void PauseSound(Sound sound); \/\/ Pause a sound$/;" p typeref:typename:RLAPI void PauseSound third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void PauseSound(Sound sound); \/\/ Pause a sound$/;" p typeref:typename:RLAPI void +PebBaseAddress third_party/libuv/src/win/winapi.h /^ PVOID PebBaseAddress;$/;" m struct:_PROCESS_BASIC_INFORMATION typeref:typename:PVOID +PhysicalBytesPerSectorForAtomicity third_party/libuv/src/win/winapi.h /^ ULONG PhysicalBytesPerSectorForAtomicity;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG +PhysicalBytesPerSectorForPerformance third_party/libuv/src/win/winapi.h /^ ULONG PhysicalBytesPerSectorForPerformance;$/;" m struct:_FILE_FS_SECTOR_SIZE_INFORMATION typeref:typename:ULONG PixelFormat third_party/raylib/include/raylib.h /^} PixelFormat;$/;" t typeref:enum:__anonc03ae25c0d03 PixelFormat third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} PixelFormat;$/;" t typeref:enum:__anon9d42b9dd0d03 PixelFormat third_party/raylib/raylib-5.5_macos/include/raylib.h /^} PixelFormat;$/;" t typeref:enum:__anon255619050d03 @@ -4169,10 +4713,19 @@ PlaySound third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void PlaySound(Sound sound); \/\/ Play a sound$/;" p typeref:typename:RLAPI void PlaySound third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void PlaySound(Sound sound); \/\/ Play a sound$/;" p typeref:typename:RLAPI void PlaySound third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void PlaySound(Sound sound); \/\/ Play a sound$/;" p typeref:typename:RLAPI void +Pointer third_party/libuv/src/win/winapi.h /^ PVOID Pointer;$/;" m union:_IO_STATUS_BLOCK::__anon941c3301060a typeref:typename:PVOID PollInputEvents third_party/raylib/include/raylib.h /^RLAPI void PollInputEvents(void); \/\/ Register all input events$/;" p typeref:typename:RLAPI void PollInputEvents third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void PollInputEvents(void); \/\/ Register all input events$/;" p typeref:typename:RLAPI void PollInputEvents third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void PollInputEvents(void); \/\/ Register all input events$/;" p typeref:typename:RLAPI void PollInputEvents third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void PollInputEvents(void); \/\/ Register all input events$/;" p typeref:typename:RLAPI void +PositionInformation third_party/libuv/src/win/winapi.h /^ FILE_POSITION_INFORMATION PositionInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_POSITION_INFORMATION +PrintNameLength third_party/libuv/src/win/winapi.h /^ USHORT PrintNameLength;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:USHORT +PrintNameLength third_party/libuv/src/win/winapi.h /^ USHORT PrintNameLength;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 typeref:typename:USHORT +PrintNameOffset third_party/libuv/src/win/winapi.h /^ USHORT PrintNameOffset;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:USHORT +PrintNameOffset third_party/libuv/src/win/winapi.h /^ USHORT PrintNameOffset;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 typeref:typename:USHORT +ProcessBasicInformation third_party/libuv/src/win/winapi.h /^# define ProcessBasicInformation /;" d +ProcessConsoleHostProcess third_party/libuv/src/win/winapi.h /^# define ProcessConsoleHostProcess /;" d +QUEUE_H_ third_party/libuv/src/queue.h /^#define QUEUE_H_$/;" d Quaternion third_party/raylib/include/raylib.h /^typedef Vector4 Quaternion;$/;" t typeref:typename:Vector4 Quaternion third_party/raylib/include/raymath.h /^typedef Vector4 Quaternion;$/;" t typeref:typename:Vector4 Quaternion third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef Vector4 Quaternion;$/;" t typeref:typename:Vector4 @@ -4375,10 +4928,54 @@ RAYWHITE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define RAYWHITE /;" d RAYWHITE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define RAYWHITE /;" d RAYWHITE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define RAYWHITE /;" d +RB_AUGMENT third_party/libuv/include/uv/tree.h /^#define RB_AUGMENT(/;" d +RB_BLACK third_party/libuv/include/uv/tree.h /^#define RB_BLACK /;" d +RB_COLOR third_party/libuv/include/uv/tree.h /^#define RB_COLOR(/;" d +RB_EMPTY third_party/libuv/include/uv/tree.h /^#define RB_EMPTY(/;" d +RB_ENTRY third_party/libuv/include/uv/tree.h /^#define RB_ENTRY(/;" d +RB_FIND third_party/libuv/include/uv/tree.h /^#define RB_FIND(name, x, y) name##_RB_FIND(/;" d +RB_FOREACH third_party/libuv/include/uv/tree.h /^#define RB_FOREACH(/;" d +RB_FOREACH_FROM third_party/libuv/include/uv/tree.h /^#define RB_FOREACH_FROM(/;" d +RB_FOREACH_REVERSE third_party/libuv/include/uv/tree.h /^#define RB_FOREACH_REVERSE(/;" d +RB_FOREACH_REVERSE_FROM third_party/libuv/include/uv/tree.h /^#define RB_FOREACH_REVERSE_FROM(/;" d +RB_FOREACH_REVERSE_SAFE third_party/libuv/include/uv/tree.h /^#define RB_FOREACH_REVERSE_SAFE(/;" d +RB_FOREACH_SAFE third_party/libuv/include/uv/tree.h /^#define RB_FOREACH_SAFE(/;" d +RB_GENERATE third_party/libuv/include/uv/tree.h /^#define RB_GENERATE(/;" d +RB_GENERATE_INTERNAL third_party/libuv/include/uv/tree.h /^#define RB_GENERATE_INTERNAL(/;" d +RB_GENERATE_STATIC third_party/libuv/include/uv/tree.h /^#define RB_GENERATE_STATIC(/;" d +RB_HEAD third_party/libuv/include/uv/tree.h /^#define RB_HEAD(/;" d +RB_INF third_party/libuv/include/uv/tree.h /^#define RB_INF /;" d +RB_INIT third_party/libuv/include/uv/tree.h /^#define RB_INIT(/;" d +RB_INITIALIZER third_party/libuv/include/uv/tree.h /^#define RB_INITIALIZER(/;" d +RB_INSERT third_party/libuv/include/uv/tree.h /^#define RB_INSERT(name, x, y) name##_RB_INSERT(/;" d +RB_LEFT third_party/libuv/include/uv/tree.h /^#define RB_LEFT(/;" d +RB_MAX third_party/libuv/include/uv/tree.h /^#define RB_MAX(/;" d +RB_MIN third_party/libuv/include/uv/tree.h /^#define RB_MIN(name, x) name##_RB_MINM/;" d +RB_NEGINF third_party/libuv/include/uv/tree.h /^#define RB_NEGINF /;" d +RB_NEXT third_party/libuv/include/uv/tree.h /^#define RB_NEXT(name, x) name##_RB_NEXT(/;" d +RB_NFIND third_party/libuv/include/uv/tree.h /^#define RB_NFIND(name, x, y) name##_RB_NFIND(/;" d +RB_PARENT third_party/libuv/include/uv/tree.h /^#define RB_PARENT(/;" d +RB_PREV third_party/libuv/include/uv/tree.h /^#define RB_PREV(name, x) name##_RB_PREV(/;" d +RB_PROTOTYPE third_party/libuv/include/uv/tree.h /^#define RB_PROTOTYPE(/;" d +RB_PROTOTYPE_INTERNAL third_party/libuv/include/uv/tree.h /^#define RB_PROTOTYPE_INTERNAL(/;" d +RB_PROTOTYPE_STATIC third_party/libuv/include/uv/tree.h /^#define RB_PROTOTYPE_STATIC(/;" d +RB_RED third_party/libuv/include/uv/tree.h /^#define RB_RED /;" d +RB_REMOVE third_party/libuv/include/uv/tree.h /^#define RB_REMOVE(name, x, y) name##_RB_REMOVE(/;" d +RB_RIGHT third_party/libuv/include/uv/tree.h /^#define RB_RIGHT(/;" d +RB_ROOT third_party/libuv/include/uv/tree.h /^#define RB_ROOT(/;" d +RB_ROTATE_LEFT third_party/libuv/include/uv/tree.h /^#define RB_ROTATE_LEFT(/;" d +RB_ROTATE_RIGHT third_party/libuv/include/uv/tree.h /^#define RB_ROTATE_RIGHT(/;" d +RB_SET third_party/libuv/include/uv/tree.h /^#define RB_SET(/;" d +RB_SET_BLACKRED third_party/libuv/include/uv/tree.h /^#define RB_SET_BLACKRED(/;" d RED third_party/raylib/include/raylib.h /^#define RED /;" d RED third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define RED /;" d RED third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define RED /;" d RED third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define RED /;" d +REGISTER_HANDLE_REQ third_party/libuv/src/win/req-inl.h /^#define REGISTER_HANDLE_REQ(/;" d +REPARSE_DATA_BUFFER third_party/libuv/src/win/winapi.h /^} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;$/;" t typeref:struct:_REPARSE_DATA_BUFFER +REQ_SUCCESS third_party/libuv/src/win/req-inl.h /^#define REQ_SUCCESS(/;" d +RETURN_OK third_party/libuv/test/task.h /^#define RETURN_OK(/;" d +RETURN_SKIP third_party/libuv/test/task.h /^#define RETURN_SKIP(/;" d RLAPI third_party/raylib/include/raylib.h /^ #define RLAPI /;" d RLAPI third_party/raylib/include/raylib.h /^ #define RLAPI /;" d RLAPI third_party/raylib/include/rlgl.h /^ #define RLAPI /;" d @@ -5375,6 +5972,10 @@ RMAPI third_party/raylib/raylib-5.5_macos/include/raymath.h /^ #define RMAPI /;" d RMAPI third_party/raylib/raylib-5.5_win64/include/raymath.h /^ #define RMAPI /;" d RMAPI third_party/raylib/raylib-5.5_win64/include/raymath.h /^ #define RMAPI /;" d +ROUND_UP third_party/libuv/src/unix/internal.h /^#define ROUND_UP(/;" d +RTL_SRWLOCK third_party/libuv/include/uv/win.h /^ typedef PVOID RTL_SRWLOCK;$/;" t typeref:typename:PVOID +RUNNER_H_ third_party/libuv/test/runner.h /^#define RUNNER_H_$/;" d +R_OK third_party/libuv/include/uv/win.h /^#define R_OK /;" d Ray third_party/raylib/include/raylib.h /^typedef struct Ray {$/;" s Ray third_party/raylib/include/raylib.h /^} Ray;$/;" t typeref:struct:Ray Ray third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef struct Ray {$/;" s @@ -5391,6 +5992,7 @@ RayCollision third_party/raylib/raylib-5.5_macos/include/raylib.h /^} RayCollision;$/;" t typeref:struct:RayCollision RayCollision third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct RayCollision {$/;" s RayCollision third_party/raylib/raylib-5.5_win64/include/raylib.h /^} RayCollision;$/;" t typeref:struct:RayCollision +ReadDataAvailable third_party/libuv/src/win/winapi.h /^ ULONG ReadDataAvailable;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG Rectangle third_party/raylib/include/raygui.h /^ typedef struct Rectangle {$/;" s Rectangle third_party/raylib/include/raygui.h /^ } Rectangle;$/;" t typeref:struct:Rectangle Rectangle third_party/raylib/include/raylib.h /^typedef struct Rectangle {$/;" s @@ -5419,6 +6021,13 @@ RenderTexture2D third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef RenderTexture RenderTexture2D;$/;" t typeref:typename:RenderTexture RenderTexture2D third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef RenderTexture RenderTexture2D;$/;" t typeref:typename:RenderTexture RenderTexture2D third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef RenderTexture RenderTexture2D;$/;" t typeref:typename:RenderTexture +ReparseDataLength third_party/libuv/src/win/winapi.h /^ USHORT ReparseDataLength;$/;" m struct:_REPARSE_DATA_BUFFER typeref:typename:USHORT +ReparseTag third_party/libuv/src/win/winapi.h /^ ULONG ReparseTag;$/;" m struct:_REPARSE_DATA_BUFFER typeref:typename:ULONG +ReparseTag third_party/libuv/src/win/winapi.h /^ ULONG ReparseTag;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG +Reserved third_party/libuv/src/win/winapi.h /^ ULONG Reserved;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:ULONG +Reserved third_party/libuv/src/win/winapi.h /^ USHORT Reserved;$/;" m struct:_REPARSE_DATA_BUFFER typeref:typename:USHORT +Reserved1 third_party/libuv/src/win/winapi.h /^ PVOID Reserved1;$/;" m struct:_PROCESS_BASIC_INFORMATION typeref:typename:PVOID +Reserved2 third_party/libuv/src/win/winapi.h /^ PVOID Reserved2[2];$/;" m struct:_PROCESS_BASIC_INFORMATION typeref:typename:PVOID[2] RestoreWindow third_party/raylib/include/raylib.h /^RLAPI void RestoreWindow(void); \/\/ Set window state: not min/;" p typeref:typename:RLAPI void RestoreWindow third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void RestoreWindow(void); \/\/ Set window state: not min/;" p typeref:typename:RLAPI void RestoreWindow third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void RestoreWindow(void); \/\/ Set window state: not min/;" p typeref:typename:RLAPI void @@ -5435,6 +6044,10 @@ ResumeSound third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void ResumeSound(Sound sound); \/\/ Resume a paused sound$/;" p typeref:typename:RLAPI void ResumeSound third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void ResumeSound(Sound sound); \/\/ Resume a paused sound$/;" p typeref:typename:RLAPI void ResumeSound third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void ResumeSound(Sound sound); \/\/ Resume a paused sound$/;" p typeref:typename:RLAPI void +RightColumn third_party/raylib/custom.h /^Rectangle RightColumn(Rectangle container, Rectangle leftCol, float padding);$/;" p typeref:typename:Rectangle +RightOf third_party/raylib/custom.h /^Rectangle RightOf(Rectangle ref, float padding);$/;" p typeref:typename:Rectangle +Rtt third_party/libuv/src/win/winapi.h /^ USHORT Rtt;$/;" m struct:_TCP_INITIAL_RTO_PARAMETERS typeref:typename:USHORT +SAVE_ERRNO third_party/libuv/src/unix/internal.h /^#define SAVE_ERRNO(/;" d SCROLLBAR third_party/raylib/include/raygui.h /^ SCROLLBAR,$/;" e enum:__anonbfe71a2a0603 SCROLLBAR_LEFT_SIDE third_party/raylib/include/raygui.h /^#define SCROLLBAR_LEFT_SIDE /;" d SCROLLBAR_RIGHT_SIDE third_party/raylib/include/raygui.h /^#define SCROLLBAR_RIGHT_SIDE /;" d @@ -5469,6 +6082,9 @@ SEOBEO_WS_STATE_CLOSING seobeo/seobeo_internal.h /^ SEOBEO_WS_STATE_CLOSING,$/;" e enum:__anon7a4da8400903 SEOBEO_WS_STATE_CONNECTING seobeo/seobeo_internal.h /^ SEOBEO_WS_STATE_CONNECTING = 0,$/;" e enum:__anon7a4da8400903 SEOBEO_WS_STATE_OPEN seobeo/seobeo_internal.h /^ SEOBEO_WS_STATE_OPEN,$/;" e enum:__anon7a4da8400903 +SET_REQ_ERROR third_party/libuv/src/win/req-inl.h /^#define SET_REQ_ERROR(/;" d +SET_REQ_STATUS third_party/libuv/src/win/req-inl.h /^#define SET_REQ_STATUS(/;" d +SET_REQ_SUCCESS third_party/libuv/src/win/req-inl.h /^#define SET_REQ_SUCCESS(/;" d SHADER_ATTRIB_FLOAT third_party/raylib/include/raylib.h /^ SHADER_ATTRIB_FLOAT = 0, \/\/ Shader attribute type: float$/;" e enum:__anonc03ae25c0c03 SHADER_ATTRIB_FLOAT third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ SHADER_ATTRIB_FLOAT = 0, \/\/ Shader attribute type: float$/;" e enum:__anon9d42b9dd0c03 SHADER_ATTRIB_FLOAT third_party/raylib/raylib-5.5_macos/include/raylib.h /^ SHADER_ATTRIB_FLOAT = 0, \/\/ Shader attribute type: float$/;" e enum:__anon255619050c03 @@ -5645,6 +6261,13 @@ SHADER_UNIFORM_VEC4 third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ SHADER_UNIFORM_VEC4, \/\/ Shader uniform type: vec4 (4 float)$/;" e enum:__anon9d42b9dd0b03 SHADER_UNIFORM_VEC4 third_party/raylib/raylib-5.5_macos/include/raylib.h /^ SHADER_UNIFORM_VEC4, \/\/ Shader uniform type: vec4 (4 float)$/;" e enum:__anon255619050b03 SHADER_UNIFORM_VEC4 third_party/raylib/raylib-5.5_win64/include/raylib.h /^ SHADER_UNIFORM_VEC4, \/\/ Shader uniform type: vec4 (4 float)$/;" e enum:__anonf614aaea0b03 +SIGABRT_COMPAT third_party/libuv/include/uv/win.h /^# define SIGABRT_COMPAT /;" d +SIGHUP third_party/libuv/include/uv/win.h /^#define SIGHUP /;" d +SIGKILL third_party/libuv/include/uv/win.h /^#define SIGKILL /;" d +SIGQUIT third_party/libuv/include/uv/win.h /^#define SIGQUIT /;" d +SIGWINCH third_party/libuv/include/uv/win.h /^#define SIGWINCH /;" d +SIO_BASE_HANDLE third_party/libuv/src/win/winsock.h /^# define SIO_BASE_HANDLE /;" d +SIO_TCP_INITIAL_RTO third_party/libuv/src/win/winapi.h /^# define SIO_TCP_INITIAL_RTO /;" d SKYBLUE third_party/raylib/include/raylib.h /^#define SKYBLUE /;" d SKYBLUE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define SKYBLUE /;" d SKYBLUE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define SKYBLUE /;" d @@ -5653,15 +6276,1026 @@ SLIDER_PADDING third_party/raylib/include/raygui.h /^ SLIDER_PADDING \/\/ Slider\/SliderBar internal bar padding$/;" e enum:__anonbfe71a2a0a03 SLIDER_WIDTH third_party/raylib/include/raygui.h /^ SLIDER_WIDTH = 16, \/\/ Slider size of internal bar$/;" e enum:__anonbfe71a2a0a03 SNAPSHOT_DIR mrjunejune/test/test.h /^ #define SNAPSHOT_DIR /;" d +SO_UPDATE_CONNECT_CONTEXT third_party/libuv/src/win/winsock.h /^# define SO_UPDATE_CONNECT_CONTEXT /;" d SPINNER_BUTTON_SPACING third_party/raylib/include/raygui.h /^ SPINNER_BUTTON_SPACING, \/\/ Spinner buttons separation$/;" e enum:__anonbfe71a2a1103 SPINNER_BUTTON_WIDTH third_party/raylib/include/raygui.h /^ SPINNER_BUTTON_WIDTH = 16, \/\/ Spinner left\/right buttons width$/;" e enum:__anonbfe71a2a1103 +SRWLOCK third_party/libuv/include/uv/win.h /^ typedef RTL_SRWLOCK SRWLOCK, *PSRWLOCK;$/;" t typeref:typename:RTL_SRWLOCK +SSIZE_MAX third_party/libuv/include/uv/win.h /^# define SSIZE_MAX /;" d SSL_CTX_TYPE seobeo/seobeo_internal.h /^#define SSL_CTX_TYPE /;" d SSL_TYPE seobeo/seobeo_internal.h /^#define SSL_TYPE /;" d STATE_DISABLED third_party/raylib/include/raygui.h /^ STATE_DISABLED$/;" e enum:__anonbfe71a2a0203 STATE_FOCUSED third_party/raylib/include/raygui.h /^ STATE_FOCUSED,$/;" e enum:__anonbfe71a2a0203 STATE_NORMAL third_party/raylib/include/raygui.h /^ STATE_NORMAL = 0,$/;" e enum:__anonbfe71a2a0203 STATE_PRESSED third_party/raylib/include/raygui.h /^ STATE_PRESSED,$/;" e enum:__anonbfe71a2a0203 +STATIC_ASSERT third_party/libuv/src/uv-common.h /^#define STATIC_ASSERT(/;" d STATUSBAR third_party/raylib/include/raygui.h /^ STATUSBAR$/;" e enum:__anonbfe71a2a0603 +STATUS_ABANDONED third_party/libuv/src/win/winapi.h /^# define STATUS_ABANDONED /;" d +STATUS_ABANDONED_WAIT_0 third_party/libuv/src/win/winapi.h /^# define STATUS_ABANDONED_WAIT_0 /;" d +STATUS_ABANDONED_WAIT_63 third_party/libuv/src/win/winapi.h /^# define STATUS_ABANDONED_WAIT_63 /;" d +STATUS_ABANDON_HIBERFILE third_party/libuv/src/win/winapi.h /^# define STATUS_ABANDON_HIBERFILE /;" d +STATUS_ABIOS_INVALID_COMMAND third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_INVALID_COMMAND /;" d +STATUS_ABIOS_INVALID_LID third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_INVALID_LID /;" d +STATUS_ABIOS_INVALID_SELECTOR third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_INVALID_SELECTOR /;" d +STATUS_ABIOS_LID_ALREADY_OWNED third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_LID_ALREADY_OWNED /;" d +STATUS_ABIOS_LID_NOT_EXIST third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_LID_NOT_EXIST /;" d +STATUS_ABIOS_NOT_LID_OWNER third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_NOT_LID_OWNER /;" d +STATUS_ABIOS_NOT_PRESENT third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_NOT_PRESENT /;" d +STATUS_ABIOS_SELECTOR_NOT_AVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_ABIOS_SELECTOR_NOT_AVAILABLE /;" d +STATUS_ACCESS_AUDIT_BY_POLICY third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_AUDIT_BY_POLICY /;" d +STATUS_ACCESS_DENIED third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DENIED /;" d +STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT /;" d +STATUS_ACCESS_DISABLED_BY_POLICY_OTHER third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DISABLED_BY_POLICY_OTHER /;" d +STATUS_ACCESS_DISABLED_BY_POLICY_PATH third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DISABLED_BY_POLICY_PATH /;" d +STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER /;" d +STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY /;" d +STATUS_ACCESS_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_ACCESS_VIOLATION /;" d +STATUS_ACCOUNT_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_ACCOUNT_DISABLED /;" d +STATUS_ACCOUNT_EXPIRED third_party/libuv/src/win/winapi.h /^# define STATUS_ACCOUNT_EXPIRED /;" d +STATUS_ACCOUNT_LOCKED_OUT third_party/libuv/src/win/winapi.h /^# define STATUS_ACCOUNT_LOCKED_OUT /;" d +STATUS_ACCOUNT_RESTRICTION third_party/libuv/src/win/winapi.h /^# define STATUS_ACCOUNT_RESTRICTION /;" d +STATUS_ADAPTER_HARDWARE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_ADAPTER_HARDWARE_ERROR /;" d +STATUS_ADDRESS_ALREADY_ASSOCIATED third_party/libuv/src/win/winapi.h /^# define STATUS_ADDRESS_ALREADY_ASSOCIATED /;" d +STATUS_ADDRESS_ALREADY_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_ADDRESS_ALREADY_EXISTS /;" d +STATUS_ADDRESS_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_ADDRESS_CLOSED /;" d +STATUS_ADDRESS_NOT_ASSOCIATED third_party/libuv/src/win/winapi.h /^# define STATUS_ADDRESS_NOT_ASSOCIATED /;" d +STATUS_AGENTS_EXHAUSTED third_party/libuv/src/win/winapi.h /^# define STATUS_AGENTS_EXHAUSTED /;" d +STATUS_ALERTED third_party/libuv/src/win/winapi.h /^# define STATUS_ALERTED /;" d +STATUS_ALIAS_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_ALIAS_EXISTS /;" d +STATUS_ALLOCATE_BUCKET third_party/libuv/src/win/winapi.h /^# define STATUS_ALLOCATE_BUCKET /;" d +STATUS_ALLOTTED_SPACE_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_ALLOTTED_SPACE_EXCEEDED /;" d +STATUS_ALL_SIDS_FILTERED third_party/libuv/src/win/winapi.h /^# define STATUS_ALL_SIDS_FILTERED /;" d +STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED /;" d +STATUS_ALPC_CHECK_COMPLETION_LIST third_party/libuv/src/win/winapi.h /^# define STATUS_ALPC_CHECK_COMPLETION_LIST /;" d +STATUS_ALREADY_COMMITTED third_party/libuv/src/win/winapi.h /^# define STATUS_ALREADY_COMMITTED /;" d +STATUS_ALREADY_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_ALREADY_DISCONNECTED /;" d +STATUS_ALREADY_REGISTERED third_party/libuv/src/win/winapi.h /^# define STATUS_ALREADY_REGISTERED /;" d +STATUS_ALREADY_WIN32 third_party/libuv/src/win/winapi.h /^# define STATUS_ALREADY_WIN32 /;" d +STATUS_AMBIGUOUS_SYSTEM_DEVICE third_party/libuv/src/win/winapi.h /^# define STATUS_AMBIGUOUS_SYSTEM_DEVICE /;" d +STATUS_APC_RETURNED_WHILE_IMPERSONATING third_party/libuv/src/win/winapi.h /^# define STATUS_APC_RETURNED_WHILE_IMPERSONATING /;" d +STATUS_APPHELP_BLOCK third_party/libuv/src/win/winapi.h /^# define STATUS_APPHELP_BLOCK /;" d +STATUS_APP_INIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_APP_INIT_FAILURE /;" d +STATUS_ARBITRATION_UNHANDLED third_party/libuv/src/win/winapi.h /^# define STATUS_ARBITRATION_UNHANDLED /;" d +STATUS_ARRAY_BOUNDS_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_ARRAY_BOUNDS_EXCEEDED /;" d +STATUS_ASSERTION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_ASSERTION_FAILURE /;" d +STATUS_AUDITING_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_AUDITING_DISABLED /;" d +STATUS_AUDIT_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_AUDIT_FAILED /;" d +STATUS_AUTHENTICATION_FIREWALL_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_AUTHENTICATION_FIREWALL_FAILED /;" d +STATUS_AUTHIP_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_AUTHIP_FAILURE /;" d +STATUS_AUTH_TAG_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_AUTH_TAG_MISMATCH /;" d +STATUS_BACKUP_CONTROLLER third_party/libuv/src/win/winapi.h /^# define STATUS_BACKUP_CONTROLLER /;" d +STATUS_BAD_BINDINGS third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_BINDINGS /;" d +STATUS_BAD_CLUSTERS third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_CLUSTERS /;" d +STATUS_BAD_COMPRESSION_BUFFER third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_COMPRESSION_BUFFER /;" d +STATUS_BAD_CURRENT_DIRECTORY third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_CURRENT_DIRECTORY /;" d +STATUS_BAD_DESCRIPTOR_FORMAT third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_DESCRIPTOR_FORMAT /;" d +STATUS_BAD_DEVICE_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_DEVICE_TYPE /;" d +STATUS_BAD_DLL_ENTRYPOINT third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_DLL_ENTRYPOINT /;" d +STATUS_BAD_FILE_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_FILE_TYPE /;" d +STATUS_BAD_FUNCTION_TABLE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_FUNCTION_TABLE /;" d +STATUS_BAD_IMPERSONATION_LEVEL third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_IMPERSONATION_LEVEL /;" d +STATUS_BAD_INHERITANCE_ACL third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_INHERITANCE_ACL /;" d +STATUS_BAD_INITIAL_PC third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_INITIAL_PC /;" d +STATUS_BAD_INITIAL_STACK third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_INITIAL_STACK /;" d +STATUS_BAD_LOGON_SESSION_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_LOGON_SESSION_STATE /;" d +STATUS_BAD_MASTER_BOOT_RECORD third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_MASTER_BOOT_RECORD /;" d +STATUS_BAD_MCFG_TABLE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_MCFG_TABLE /;" d +STATUS_BAD_NETWORK_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_NETWORK_NAME /;" d +STATUS_BAD_NETWORK_PATH third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_NETWORK_PATH /;" d +STATUS_BAD_REMOTE_ADAPTER third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_REMOTE_ADAPTER /;" d +STATUS_BAD_SERVICE_ENTRYPOINT third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_SERVICE_ENTRYPOINT /;" d +STATUS_BAD_STACK third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_STACK /;" d +STATUS_BAD_TOKEN_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_TOKEN_TYPE /;" d +STATUS_BAD_VALIDATION_CLASS third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_VALIDATION_CLASS /;" d +STATUS_BAD_WORKING_SET_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_BAD_WORKING_SET_LIMIT /;" d +STATUS_BEGINNING_OF_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_BEGINNING_OF_MEDIA /;" d +STATUS_BEYOND_VDL third_party/libuv/src/win/winapi.h /^# define STATUS_BEYOND_VDL /;" d +STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT third_party/libuv/src/win/winapi.h /^# define STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT /;" d +STATUS_BIZRULES_NOT_ENABLED third_party/libuv/src/win/winapi.h /^# define STATUS_BIZRULES_NOT_ENABLED /;" d +STATUS_BREAKPOINT third_party/libuv/src/win/winapi.h /^# define STATUS_BREAKPOINT /;" d +STATUS_BUFFER_ALL_ZEROS third_party/libuv/src/win/winapi.h /^# define STATUS_BUFFER_ALL_ZEROS /;" d +STATUS_BUFFER_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_BUFFER_OVERFLOW /;" d +STATUS_BUFFER_TOO_SMALL third_party/libuv/src/win/winapi.h /^# define STATUS_BUFFER_TOO_SMALL /;" d +STATUS_BUS_RESET third_party/libuv/src/win/winapi.h /^# define STATUS_BUS_RESET /;" d +STATUS_CACHE_PAGE_LOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_CACHE_PAGE_LOCKED /;" d +STATUS_CALLBACK_BYPASS third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_BYPASS /;" d +STATUS_CALLBACK_POP_STACK third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_POP_STACK /;" d +STATUS_CALLBACK_RETURNED_LANG third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_LANG /;" d +STATUS_CALLBACK_RETURNED_LDR_LOCK third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_LDR_LOCK /;" d +STATUS_CALLBACK_RETURNED_PRI_BACK third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_PRI_BACK /;" d +STATUS_CALLBACK_RETURNED_THREAD_AFFINITY third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_THREAD_AFFINITY /;" d +STATUS_CALLBACK_RETURNED_THREAD_PRIORITY third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_THREAD_PRIORITY /;" d +STATUS_CALLBACK_RETURNED_TRANSACTION third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_TRANSACTION /;" d +STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING third_party/libuv/src/win/winapi.h /^# define STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING /;" d +STATUS_CANCELLED third_party/libuv/src/win/winapi.h /^# define STATUS_CANCELLED /;" d +STATUS_CANNOT_BREAK_OPLOCK third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_BREAK_OPLOCK /;" d +STATUS_CANNOT_DELETE third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_DELETE /;" d +STATUS_CANNOT_GRANT_REQUESTED_OPLOCK third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_GRANT_REQUESTED_OPLOCK /;" d +STATUS_CANNOT_IMPERSONATE third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_IMPERSONATE /;" d +STATUS_CANNOT_LOAD_REGISTRY_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_LOAD_REGISTRY_FILE /;" d +STATUS_CANNOT_MAKE third_party/libuv/src/win/winapi.h /^# define STATUS_CANNOT_MAKE /;" d +STATUS_CANT_ACCESS_DOMAIN_INFO third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_ACCESS_DOMAIN_INFO /;" d +STATUS_CANT_DISABLE_MANDATORY third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_DISABLE_MANDATORY /;" d +STATUS_CANT_ENABLE_DENY_ONLY third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_ENABLE_DENY_ONLY /;" d +STATUS_CANT_OPEN_ANONYMOUS third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_OPEN_ANONYMOUS /;" d +STATUS_CANT_TERMINATE_SELF third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_TERMINATE_SELF /;" d +STATUS_CANT_WAIT third_party/libuv/src/win/winapi.h /^# define STATUS_CANT_WAIT /;" d +STATUS_CARDBUS_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_CARDBUS_NOT_SUPPORTED /;" d +STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE third_party/libuv/src/win/winapi.h /^# define STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE /;" d +STATUS_CHECKING_FILE_SYSTEM third_party/libuv/src/win/winapi.h /^# define STATUS_CHECKING_FILE_SYSTEM /;" d +STATUS_CHECKOUT_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_CHECKOUT_REQUIRED /;" d +STATUS_CHILD_MUST_BE_VOLATILE third_party/libuv/src/win/winapi.h /^# define STATUS_CHILD_MUST_BE_VOLATILE /;" d +STATUS_CLEANER_CARTRIDGE_INSTALLED third_party/libuv/src/win/winapi.h /^# define STATUS_CLEANER_CARTRIDGE_INSTALLED /;" d +STATUS_CLIENT_SERVER_PARAMETERS_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_CLIENT_SERVER_PARAMETERS_INVALID /;" d +STATUS_COMMITMENT_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_COMMITMENT_LIMIT /;" d +STATUS_COMMITMENT_MINIMUM third_party/libuv/src/win/winapi.h /^# define STATUS_COMMITMENT_MINIMUM /;" d +STATUS_COMPRESSION_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_COMPRESSION_DISABLED /;" d +STATUS_CONFLICTING_ADDRESSES third_party/libuv/src/win/winapi.h /^# define STATUS_CONFLICTING_ADDRESSES /;" d +STATUS_CONNECTION_ABORTED third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_ABORTED /;" d +STATUS_CONNECTION_ACTIVE third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_ACTIVE /;" d +STATUS_CONNECTION_COUNT_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_COUNT_LIMIT /;" d +STATUS_CONNECTION_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_DISCONNECTED /;" d +STATUS_CONNECTION_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_INVALID /;" d +STATUS_CONNECTION_IN_USE third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_IN_USE /;" d +STATUS_CONNECTION_REFUSED third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_REFUSED /;" d +STATUS_CONNECTION_RESET third_party/libuv/src/win/winapi.h /^# define STATUS_CONNECTION_RESET /;" d +STATUS_CONTENT_BLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_CONTENT_BLOCKED /;" d +STATUS_CONTEXT_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_CONTEXT_MISMATCH /;" d +STATUS_CONTROL_C_EXIT third_party/libuv/src/win/winapi.h /^# define STATUS_CONTROL_C_EXIT /;" d +STATUS_CONVERT_TO_LARGE third_party/libuv/src/win/winapi.h /^# define STATUS_CONVERT_TO_LARGE /;" d +STATUS_COPY_PROTECTION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_COPY_PROTECTION_FAILURE /;" d +STATUS_CORRUPT_SYSTEM_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_CORRUPT_SYSTEM_FILE /;" d +STATUS_COULD_NOT_INTERPRET third_party/libuv/src/win/winapi.h /^# define STATUS_COULD_NOT_INTERPRET /;" d +STATUS_CRASH_DUMP third_party/libuv/src/win/winapi.h /^# define STATUS_CRASH_DUMP /;" d +STATUS_CRC_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_CRC_ERROR /;" d +STATUS_CRED_REQUIRES_CONFIRMATION third_party/libuv/src/win/winapi.h /^# define STATUS_CRED_REQUIRES_CONFIRMATION /;" d +STATUS_CROSSREALM_DELEGATION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_CROSSREALM_DELEGATION_FAILURE /;" d +STATUS_CRYPTO_SYSTEM_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_CRYPTO_SYSTEM_INVALID /;" d +STATUS_CSS_AUTHENTICATION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_AUTHENTICATION_FAILURE /;" d +STATUS_CSS_KEY_NOT_ESTABLISHED third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_KEY_NOT_ESTABLISHED /;" d +STATUS_CSS_KEY_NOT_PRESENT third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_KEY_NOT_PRESENT /;" d +STATUS_CSS_REGION_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_REGION_MISMATCH /;" d +STATUS_CSS_RESETS_EXHAUSTED third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_RESETS_EXHAUSTED /;" d +STATUS_CSS_SCRAMBLED_SECTOR third_party/libuv/src/win/winapi.h /^# define STATUS_CSS_SCRAMBLED_SECTOR /;" d +STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE /;" d +STATUS_CS_ENCRYPTION_FILE_NOT_CSE third_party/libuv/src/win/winapi.h /^# define STATUS_CS_ENCRYPTION_FILE_NOT_CSE /;" d +STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE third_party/libuv/src/win/winapi.h /^# define STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE /;" d +STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE /;" d +STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER third_party/libuv/src/win/winapi.h /^# define STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER /;" d +STATUS_CTL_FILE_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_CTL_FILE_NOT_SUPPORTED /;" d +STATUS_CURRENT_DOMAIN_NOT_ALLOWED third_party/libuv/src/win/winapi.h /^# define STATUS_CURRENT_DOMAIN_NOT_ALLOWED /;" d +STATUS_DATATYPE_MISALIGNMENT third_party/libuv/src/win/winapi.h /^# define STATUS_DATATYPE_MISALIGNMENT /;" d +STATUS_DATATYPE_MISALIGNMENT_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DATATYPE_MISALIGNMENT_ERROR /;" d +STATUS_DATA_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DATA_ERROR /;" d +STATUS_DATA_LATE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DATA_LATE_ERROR /;" d +STATUS_DATA_LOST_REPAIR third_party/libuv/src/win/winapi.h /^# define STATUS_DATA_LOST_REPAIR /;" d +STATUS_DATA_NOT_ACCEPTED third_party/libuv/src/win/winapi.h /^# define STATUS_DATA_NOT_ACCEPTED /;" d +STATUS_DATA_OVERRUN third_party/libuv/src/win/winapi.h /^# define STATUS_DATA_OVERRUN /;" d +STATUS_DEBUGGER_INACTIVE third_party/libuv/src/win/winapi.h /^# define STATUS_DEBUGGER_INACTIVE /;" d +STATUS_DEBUG_ATTACH_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DEBUG_ATTACH_FAILED /;" d +STATUS_DECRYPTION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DECRYPTION_FAILED /;" d +STATUS_DELAY_LOAD_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DELAY_LOAD_FAILED /;" d +STATUS_DELETE_PENDING third_party/libuv/src/win/winapi.h /^# define STATUS_DELETE_PENDING /;" d +STATUS_DESTINATION_ELEMENT_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_DESTINATION_ELEMENT_FULL /;" d +STATUS_DEVICE_ALREADY_ATTACHED third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_ALREADY_ATTACHED /;" d +STATUS_DEVICE_BUSY third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_BUSY /;" d +STATUS_DEVICE_CONFIGURATION_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_CONFIGURATION_ERROR /;" d +STATUS_DEVICE_DATA_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_DATA_ERROR /;" d +STATUS_DEVICE_DOES_NOT_EXIST third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_DOES_NOT_EXIST /;" d +STATUS_DEVICE_DOOR_OPEN third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_DOOR_OPEN /;" d +STATUS_DEVICE_ENUMERATION_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_ENUMERATION_ERROR /;" d +STATUS_DEVICE_NOT_CONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_NOT_CONNECTED /;" d +STATUS_DEVICE_NOT_PARTITIONED third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_NOT_PARTITIONED /;" d +STATUS_DEVICE_NOT_READY third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_NOT_READY /;" d +STATUS_DEVICE_OFF_LINE third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_OFF_LINE /;" d +STATUS_DEVICE_PAPER_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_PAPER_EMPTY /;" d +STATUS_DEVICE_POWERED_OFF third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_POWERED_OFF /;" d +STATUS_DEVICE_POWER_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_POWER_FAILURE /;" d +STATUS_DEVICE_PROTOCOL_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_PROTOCOL_ERROR /;" d +STATUS_DEVICE_REMOVED third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_REMOVED /;" d +STATUS_DEVICE_REQUIRES_CLEANING third_party/libuv/src/win/winapi.h /^# define STATUS_DEVICE_REQUIRES_CLEANING /;" d +STATUS_DFS_EXIT_PATH_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DFS_EXIT_PATH_FOUND /;" d +STATUS_DFS_UNAVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_DFS_UNAVAILABLE /;" d +STATUS_DIRECTORY_IS_A_REPARSE_POINT third_party/libuv/src/win/winapi.h /^# define STATUS_DIRECTORY_IS_A_REPARSE_POINT /;" d +STATUS_DIRECTORY_NOT_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_DIRECTORY_NOT_EMPTY /;" d +STATUS_DIRECTORY_SERVICE_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_DIRECTORY_SERVICE_REQUIRED /;" d +STATUS_DISK_CORRUPT_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_CORRUPT_ERROR /;" d +STATUS_DISK_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_FULL /;" d +STATUS_DISK_OPERATION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_OPERATION_FAILED /;" d +STATUS_DISK_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_QUOTA_EXCEEDED /;" d +STATUS_DISK_RECALIBRATE_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_RECALIBRATE_FAILED /;" d +STATUS_DISK_REPAIR_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_REPAIR_DISABLED /;" d +STATUS_DISK_RESET_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DISK_RESET_FAILED /;" d +STATUS_DLL_INIT_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DLL_INIT_FAILED /;" d +STATUS_DLL_INIT_FAILED_LOGOFF third_party/libuv/src/win/winapi.h /^# define STATUS_DLL_INIT_FAILED_LOGOFF /;" d +STATUS_DLL_MIGHT_BE_INCOMPATIBLE third_party/libuv/src/win/winapi.h /^# define STATUS_DLL_MIGHT_BE_INCOMPATIBLE /;" d +STATUS_DLL_MIGHT_BE_INSECURE third_party/libuv/src/win/winapi.h /^# define STATUS_DLL_MIGHT_BE_INSECURE /;" d +STATUS_DLL_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DLL_NOT_FOUND /;" d +STATUS_DOMAIN_CONTROLLER_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DOMAIN_CONTROLLER_NOT_FOUND /;" d +STATUS_DOMAIN_CTRLR_CONFIG_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DOMAIN_CTRLR_CONFIG_ERROR /;" d +STATUS_DOMAIN_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_DOMAIN_EXISTS /;" d +STATUS_DOMAIN_LIMIT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_DOMAIN_LIMIT_EXCEEDED /;" d +STATUS_DOMAIN_TRUST_INCONSISTENT third_party/libuv/src/win/winapi.h /^# define STATUS_DOMAIN_TRUST_INCONSISTENT /;" d +STATUS_DOWNGRADE_DETECTED third_party/libuv/src/win/winapi.h /^# define STATUS_DOWNGRADE_DETECTED /;" d +STATUS_DRIVERS_LEAKING_LOCKED_PAGES third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVERS_LEAKING_LOCKED_PAGES /;" d +STATUS_DRIVER_BLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_BLOCKED /;" d +STATUS_DRIVER_BLOCKED_CRITICAL third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_BLOCKED_CRITICAL /;" d +STATUS_DRIVER_CANCEL_TIMEOUT third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_CANCEL_TIMEOUT /;" d +STATUS_DRIVER_DATABASE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_DATABASE_ERROR /;" d +STATUS_DRIVER_ENTRYPOINT_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_ENTRYPOINT_NOT_FOUND /;" d +STATUS_DRIVER_FAILED_PRIOR_UNLOAD third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_FAILED_PRIOR_UNLOAD /;" d +STATUS_DRIVER_FAILED_SLEEP third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_FAILED_SLEEP /;" d +STATUS_DRIVER_INTERNAL_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_INTERNAL_ERROR /;" d +STATUS_DRIVER_ORDINAL_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_ORDINAL_NOT_FOUND /;" d +STATUS_DRIVER_PROCESS_TERMINATED third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_PROCESS_TERMINATED /;" d +STATUS_DRIVER_UNABLE_TO_LOAD third_party/libuv/src/win/winapi.h /^# define STATUS_DRIVER_UNABLE_TO_LOAD /;" d +STATUS_DS_ADMIN_LIMIT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_ADMIN_LIMIT_EXCEEDED /;" d +STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER /;" d +STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS /;" d +STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED /;" d +STATUS_DS_BUSY third_party/libuv/src/win/winapi.h /^# define STATUS_DS_BUSY /;" d +STATUS_DS_CANT_MOD_OBJ_CLASS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CANT_MOD_OBJ_CLASS /;" d +STATUS_DS_CANT_MOD_PRIMARYGROUPID third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CANT_MOD_PRIMARYGROUPID /;" d +STATUS_DS_CANT_ON_NON_LEAF third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CANT_ON_NON_LEAF /;" d +STATUS_DS_CANT_ON_RDN third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CANT_ON_RDN /;" d +STATUS_DS_CANT_START third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CANT_START /;" d +STATUS_DS_CROSS_DOM_MOVE_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_CROSS_DOM_MOVE_FAILED /;" d +STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST third_party/libuv/src/win/winapi.h /^# define STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST /;" d +STATUS_DS_DOMAIN_RENAME_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_DOMAIN_RENAME_IN_PROGRESS /;" d +STATUS_DS_DUPLICATE_ID_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DS_DUPLICATE_ID_FOUND /;" d +STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST third_party/libuv/src/win/winapi.h /^# define STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST /;" d +STATUS_DS_GC_NOT_AVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GC_NOT_AVAILABLE /;" d +STATUS_DS_GC_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GC_REQUIRED /;" d +STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER /;" d +STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER /;" d +STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER /;" d +STATUS_DS_GROUP_CONVERSION_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DS_GROUP_CONVERSION_ERROR /;" d +STATUS_DS_HAVE_PRIMARY_MEMBERS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_HAVE_PRIMARY_MEMBERS /;" d +STATUS_DS_INCORRECT_ROLE_OWNER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_INCORRECT_ROLE_OWNER /;" d +STATUS_DS_INIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_INIT_FAILURE /;" d +STATUS_DS_INIT_FAILURE_CONSOLE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_INIT_FAILURE_CONSOLE /;" d +STATUS_DS_INVALID_ATTRIBUTE_SYNTAX third_party/libuv/src/win/winapi.h /^# define STATUS_DS_INVALID_ATTRIBUTE_SYNTAX /;" d +STATUS_DS_INVALID_GROUP_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_INVALID_GROUP_TYPE /;" d +STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER /;" d +STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY third_party/libuv/src/win/winapi.h /^# define STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY /;" d +STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED /;" d +STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY third_party/libuv/src/win/winapi.h /^# define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY /;" d +STATUS_DS_NAME_NOT_UNIQUE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NAME_NOT_UNIQUE /;" d +STATUS_DS_NO_ATTRIBUTE_OR_VALUE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_ATTRIBUTE_OR_VALUE /;" d +STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS /;" d +STATUS_DS_NO_MORE_RIDS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_MORE_RIDS /;" d +STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN /;" d +STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN /;" d +STATUS_DS_NO_RIDS_ALLOCATED third_party/libuv/src/win/winapi.h /^# define STATUS_DS_NO_RIDS_ALLOCATED /;" d +STATUS_DS_OBJ_CLASS_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_DS_OBJ_CLASS_VIOLATION /;" d +STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS third_party/libuv/src/win/winapi.h /^# define STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS /;" d +STATUS_DS_OID_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_DS_OID_NOT_FOUND /;" d +STATUS_DS_RIDMGR_INIT_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_DS_RIDMGR_INIT_ERROR /;" d +STATUS_DS_SAM_INIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_SAM_INIT_FAILURE /;" d +STATUS_DS_SAM_INIT_FAILURE_CONSOLE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_SAM_INIT_FAILURE_CONSOLE /;" d +STATUS_DS_SENSITIVE_GROUP_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_DS_SENSITIVE_GROUP_VIOLATION /;" d +STATUS_DS_SHUTTING_DOWN third_party/libuv/src/win/winapi.h /^# define STATUS_DS_SHUTTING_DOWN /;" d +STATUS_DS_SRC_SID_EXISTS_IN_FOREST third_party/libuv/src/win/winapi.h /^# define STATUS_DS_SRC_SID_EXISTS_IN_FOREST /;" d +STATUS_DS_UNAVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_UNAVAILABLE /;" d +STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER /;" d +STATUS_DS_VERSION_CHECK_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_DS_VERSION_CHECK_FAILURE /;" d +STATUS_DUPLICATE_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_DUPLICATE_NAME /;" d +STATUS_DUPLICATE_OBJECTID third_party/libuv/src/win/winapi.h /^# define STATUS_DUPLICATE_OBJECTID /;" d +STATUS_EAS_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_EAS_NOT_SUPPORTED /;" d +STATUS_EA_CORRUPT_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_EA_CORRUPT_ERROR /;" d +STATUS_EA_LIST_INCONSISTENT third_party/libuv/src/win/winapi.h /^# define STATUS_EA_LIST_INCONSISTENT /;" d +STATUS_EA_TOO_LARGE third_party/libuv/src/win/winapi.h /^# define STATUS_EA_TOO_LARGE /;" d +STATUS_EFS_ALG_BLOB_TOO_BIG third_party/libuv/src/win/winapi.h /^# define STATUS_EFS_ALG_BLOB_TOO_BIG /;" d +STATUS_ELEVATION_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_ELEVATION_REQUIRED /;" d +STATUS_ENCOUNTERED_WRITE_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_ENCOUNTERED_WRITE_IN_PROGRESS /;" d +STATUS_ENCRYPTION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_ENCRYPTION_FAILED /;" d +STATUS_END_OF_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_END_OF_FILE /;" d +STATUS_END_OF_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_END_OF_MEDIA /;" d +STATUS_ENTRYPOINT_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_ENTRYPOINT_NOT_FOUND /;" d +STATUS_EOM_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_EOM_OVERFLOW /;" d +STATUS_EVALUATION_EXPIRATION third_party/libuv/src/win/winapi.h /^# define STATUS_EVALUATION_EXPIRATION /;" d +STATUS_EVENTLOG_CANT_START third_party/libuv/src/win/winapi.h /^# define STATUS_EVENTLOG_CANT_START /;" d +STATUS_EVENTLOG_FILE_CHANGED third_party/libuv/src/win/winapi.h /^# define STATUS_EVENTLOG_FILE_CHANGED /;" d +STATUS_EVENTLOG_FILE_CORRUPT third_party/libuv/src/win/winapi.h /^# define STATUS_EVENTLOG_FILE_CORRUPT /;" d +STATUS_EVENT_DONE third_party/libuv/src/win/winapi.h /^# define STATUS_EVENT_DONE /;" d +STATUS_EVENT_PENDING third_party/libuv/src/win/winapi.h /^# define STATUS_EVENT_PENDING /;" d +STATUS_EXTRANEOUS_INFORMATION third_party/libuv/src/win/winapi.h /^# define STATUS_EXTRANEOUS_INFORMATION /;" d +STATUS_FAILED_DRIVER_ENTRY third_party/libuv/src/win/winapi.h /^# define STATUS_FAILED_DRIVER_ENTRY /;" d +STATUS_FAILED_STACK_SWITCH third_party/libuv/src/win/winapi.h /^# define STATUS_FAILED_STACK_SWITCH /;" d +STATUS_FAIL_CHECK third_party/libuv/src/win/winapi.h /^# define STATUS_FAIL_CHECK /;" d +STATUS_FAIL_FAST_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_FAIL_FAST_EXCEPTION /;" d +STATUS_FASTPATH_REJECTED third_party/libuv/src/win/winapi.h /^# define STATUS_FASTPATH_REJECTED /;" d +STATUS_FATAL_APP_EXIT third_party/libuv/src/win/winapi.h /^# define STATUS_FATAL_APP_EXIT /;" d +STATUS_FATAL_USER_CALLBACK_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_FATAL_USER_CALLBACK_EXCEPTION /;" d +STATUS_FILEMARK_DETECTED third_party/libuv/src/win/winapi.h /^# define STATUS_FILEMARK_DETECTED /;" d +STATUS_FILES_OPEN third_party/libuv/src/win/winapi.h /^# define STATUS_FILES_OPEN /;" d +STATUS_FILE_CHECKED_OUT third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_CHECKED_OUT /;" d +STATUS_FILE_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_CLOSED /;" d +STATUS_FILE_CORRUPT_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_CORRUPT_ERROR /;" d +STATUS_FILE_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_DELETED /;" d +STATUS_FILE_ENCRYPTED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_ENCRYPTED /;" d +STATUS_FILE_FORCED_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_FORCED_CLOSED /;" d +STATUS_FILE_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_INVALID /;" d +STATUS_FILE_IS_A_DIRECTORY third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_IS_A_DIRECTORY /;" d +STATUS_FILE_IS_OFFLINE third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_IS_OFFLINE /;" d +STATUS_FILE_LOCKED_WITH_ONLY_READERS third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_LOCKED_WITH_ONLY_READERS /;" d +STATUS_FILE_LOCKED_WITH_WRITERS third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_LOCKED_WITH_WRITERS /;" d +STATUS_FILE_LOCK_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_LOCK_CONFLICT /;" d +STATUS_FILE_NOT_ENCRYPTED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_NOT_ENCRYPTED /;" d +STATUS_FILE_RENAMED third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_RENAMED /;" d +STATUS_FILE_SYSTEM_LIMITATION third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_SYSTEM_LIMITATION /;" d +STATUS_FILE_TOO_LARGE third_party/libuv/src/win/winapi.h /^# define STATUS_FILE_TOO_LARGE /;" d +STATUS_FIRMWARE_UPDATED third_party/libuv/src/win/winapi.h /^# define STATUS_FIRMWARE_UPDATED /;" d +STATUS_FLOAT_DENORMAL_OPERAND third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_DENORMAL_OPERAND /;" d +STATUS_FLOAT_DIVIDE_BY_ZERO third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_DIVIDE_BY_ZERO /;" d +STATUS_FLOAT_INEXACT_RESULT third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_INEXACT_RESULT /;" d +STATUS_FLOAT_INVALID_OPERATION third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_INVALID_OPERATION /;" d +STATUS_FLOAT_MULTIPLE_FAULTS third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_MULTIPLE_FAULTS /;" d +STATUS_FLOAT_MULTIPLE_TRAPS third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_MULTIPLE_TRAPS /;" d +STATUS_FLOAT_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_OVERFLOW /;" d +STATUS_FLOAT_STACK_CHECK third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_STACK_CHECK /;" d +STATUS_FLOAT_UNDERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_FLOAT_UNDERFLOW /;" d +STATUS_FLOPPY_BAD_REGISTERS third_party/libuv/src/win/winapi.h /^# define STATUS_FLOPPY_BAD_REGISTERS /;" d +STATUS_FLOPPY_ID_MARK_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_FLOPPY_ID_MARK_NOT_FOUND /;" d +STATUS_FLOPPY_UNKNOWN_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_FLOPPY_UNKNOWN_ERROR /;" d +STATUS_FLOPPY_VOLUME third_party/libuv/src/win/winapi.h /^# define STATUS_FLOPPY_VOLUME /;" d +STATUS_FLOPPY_WRONG_CYLINDER third_party/libuv/src/win/winapi.h /^# define STATUS_FLOPPY_WRONG_CYLINDER /;" d +STATUS_FORMS_AUTH_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_FORMS_AUTH_REQUIRED /;" d +STATUS_FOUND_OUT_OF_SCOPE third_party/libuv/src/win/winapi.h /^# define STATUS_FOUND_OUT_OF_SCOPE /;" d +STATUS_FREE_VM_NOT_AT_BASE third_party/libuv/src/win/winapi.h /^# define STATUS_FREE_VM_NOT_AT_BASE /;" d +STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY third_party/libuv/src/win/winapi.h /^# define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY /;" d +STATUS_FS_DRIVER_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_FS_DRIVER_REQUIRED /;" d +STATUS_FT_MISSING_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_FT_MISSING_MEMBER /;" d +STATUS_FT_ORPHANING third_party/libuv/src/win/winapi.h /^# define STATUS_FT_ORPHANING /;" d +STATUS_FT_READ_RECOVERY_FROM_BACKUP third_party/libuv/src/win/winapi.h /^# define STATUS_FT_READ_RECOVERY_FROM_BACKUP /;" d +STATUS_FT_WRITE_RECOVERY third_party/libuv/src/win/winapi.h /^# define STATUS_FT_WRITE_RECOVERY /;" d +STATUS_FULLSCREEN_MODE third_party/libuv/src/win/winapi.h /^# define STATUS_FULLSCREEN_MODE /;" d +STATUS_GENERIC_NOT_MAPPED third_party/libuv/src/win/winapi.h /^# define STATUS_GENERIC_NOT_MAPPED /;" d +STATUS_GRACEFUL_DISCONNECT third_party/libuv/src/win/winapi.h /^# define STATUS_GRACEFUL_DISCONNECT /;" d +STATUS_GROUP_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_GROUP_EXISTS /;" d +STATUS_GUARD_PAGE_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_GUARD_PAGE_VIOLATION /;" d +STATUS_GUIDS_EXHAUSTED third_party/libuv/src/win/winapi.h /^# define STATUS_GUIDS_EXHAUSTED /;" d +STATUS_GUID_SUBSTITUTION_MADE third_party/libuv/src/win/winapi.h /^# define STATUS_GUID_SUBSTITUTION_MADE /;" d +STATUS_HANDLES_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_HANDLES_CLOSED /;" d +STATUS_HANDLE_NOT_CLOSABLE third_party/libuv/src/win/winapi.h /^# define STATUS_HANDLE_NOT_CLOSABLE /;" d +STATUS_HARDWARE_MEMORY_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_HARDWARE_MEMORY_ERROR /;" d +STATUS_HASH_NOT_PRESENT third_party/libuv/src/win/winapi.h /^# define STATUS_HASH_NOT_PRESENT /;" d +STATUS_HASH_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_HASH_NOT_SUPPORTED /;" d +STATUS_HEAP_CORRUPTION third_party/libuv/src/win/winapi.h /^# define STATUS_HEAP_CORRUPTION /;" d +STATUS_HIBERNATED third_party/libuv/src/win/winapi.h /^# define STATUS_HIBERNATED /;" d +STATUS_HIBERNATION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_HIBERNATION_FAILURE /;" d +STATUS_HIVE_UNLOADED third_party/libuv/src/win/winapi.h /^# define STATUS_HIVE_UNLOADED /;" d +STATUS_HMAC_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_HMAC_NOT_SUPPORTED /;" d +STATUS_HOPLIMIT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_HOPLIMIT_EXCEEDED /;" d +STATUS_HOST_DOWN third_party/libuv/src/win/winapi.h /^# define STATUS_HOST_DOWN /;" d +STATUS_HOST_UNREACHABLE third_party/libuv/src/win/winapi.h /^# define STATUS_HOST_UNREACHABLE /;" d +STATUS_HUNG_DISPLAY_DRIVER_THREAD third_party/libuv/src/win/winapi.h /^# define STATUS_HUNG_DISPLAY_DRIVER_THREAD /;" d +STATUS_ILLEGAL_CHARACTER third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_CHARACTER /;" d +STATUS_ILLEGAL_DLL_RELOCATION third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_DLL_RELOCATION /;" d +STATUS_ILLEGAL_ELEMENT_ADDRESS third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_ELEMENT_ADDRESS /;" d +STATUS_ILLEGAL_FLOAT_CONTEXT third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_FLOAT_CONTEXT /;" d +STATUS_ILLEGAL_FUNCTION third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_FUNCTION /;" d +STATUS_ILLEGAL_INSTRUCTION third_party/libuv/src/win/winapi.h /^# define STATUS_ILLEGAL_INSTRUCTION /;" d +STATUS_ILL_FORMED_PASSWORD third_party/libuv/src/win/winapi.h /^# define STATUS_ILL_FORMED_PASSWORD /;" d +STATUS_ILL_FORMED_SERVICE_ENTRY third_party/libuv/src/win/winapi.h /^# define STATUS_ILL_FORMED_SERVICE_ENTRY /;" d +STATUS_IMAGE_ALREADY_LOADED third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_ALREADY_LOADED /;" d +STATUS_IMAGE_ALREADY_LOADED_AS_DLL third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_ALREADY_LOADED_AS_DLL /;" d +STATUS_IMAGE_CERT_REVOKED third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_CERT_REVOKED /;" d +STATUS_IMAGE_CHECKSUM_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_CHECKSUM_MISMATCH /;" d +STATUS_IMAGE_MACHINE_TYPE_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_MACHINE_TYPE_MISMATCH /;" d +STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE /;" d +STATUS_IMAGE_MP_UP_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_MP_UP_MISMATCH /;" d +STATUS_IMAGE_NOT_AT_BASE third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_NOT_AT_BASE /;" d +STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT third_party/libuv/src/win/winapi.h /^# define STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT /;" d +STATUS_IMPLEMENTATION_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_IMPLEMENTATION_LIMIT /;" d +STATUS_INCOMPATIBLE_DRIVER_BLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_INCOMPATIBLE_DRIVER_BLOCKED /;" d +STATUS_INCOMPATIBLE_FILE_MAP third_party/libuv/src/win/winapi.h /^# define STATUS_INCOMPATIBLE_FILE_MAP /;" d +STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING third_party/libuv/src/win/winapi.h /^# define STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING /;" d +STATUS_INFO_LENGTH_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_INFO_LENGTH_MISMATCH /;" d +STATUS_INSTANCE_NOT_AVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_INSTANCE_NOT_AVAILABLE /;" d +STATUS_INSTRUCTION_MISALIGNMENT third_party/libuv/src/win/winapi.h /^# define STATUS_INSTRUCTION_MISALIGNMENT /;" d +STATUS_INSUFFICIENT_LOGON_INFO third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFFICIENT_LOGON_INFO /;" d +STATUS_INSUFFICIENT_NVRAM_RESOURCES third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFFICIENT_NVRAM_RESOURCES /;" d +STATUS_INSUFFICIENT_POWER third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFFICIENT_POWER /;" d +STATUS_INSUFFICIENT_RESOURCES third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFFICIENT_RESOURCES /;" d +STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE /;" d +STATUS_INSUFF_SERVER_RESOURCES third_party/libuv/src/win/winapi.h /^# define STATUS_INSUFF_SERVER_RESOURCES /;" d +STATUS_INTEGER_DIVIDE_BY_ZERO third_party/libuv/src/win/winapi.h /^# define STATUS_INTEGER_DIVIDE_BY_ZERO /;" d +STATUS_INTEGER_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_INTEGER_OVERFLOW /;" d +STATUS_INTERNAL_DB_CORRUPTION third_party/libuv/src/win/winapi.h /^# define STATUS_INTERNAL_DB_CORRUPTION /;" d +STATUS_INTERNAL_DB_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_INTERNAL_DB_ERROR /;" d +STATUS_INTERNAL_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_INTERNAL_ERROR /;" d +STATUS_INTERRUPT_STILL_CONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_INTERRUPT_STILL_CONNECTED /;" d +STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED /;" d +STATUS_INVALID_ACCOUNT_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ACCOUNT_NAME /;" d +STATUS_INVALID_ACE_CONDITION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ACE_CONDITION /;" d +STATUS_INVALID_ACL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ACL /;" d +STATUS_INVALID_ADDRESS third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ADDRESS /;" d +STATUS_INVALID_ADDRESS_COMPONENT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ADDRESS_COMPONENT /;" d +STATUS_INVALID_ADDRESS_WILDCARD third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ADDRESS_WILDCARD /;" d +STATUS_INVALID_BLOCK_LENGTH third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_BLOCK_LENGTH /;" d +STATUS_INVALID_BUFFER_SIZE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_BUFFER_SIZE /;" d +STATUS_INVALID_CID third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_CID /;" d +STATUS_INVALID_COMPUTER_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_COMPUTER_NAME /;" d +STATUS_INVALID_CONNECTION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_CONNECTION /;" d +STATUS_INVALID_CRUNTIME_PARAMETER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_CRUNTIME_PARAMETER /;" d +STATUS_INVALID_DEVICE_OBJECT_PARAMETER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DEVICE_OBJECT_PARAMETER /;" d +STATUS_INVALID_DEVICE_REQUEST third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DEVICE_REQUEST /;" d +STATUS_INVALID_DEVICE_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DEVICE_STATE /;" d +STATUS_INVALID_DISPOSITION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DISPOSITION /;" d +STATUS_INVALID_DOMAIN_ROLE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DOMAIN_ROLE /;" d +STATUS_INVALID_DOMAIN_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_DOMAIN_STATE /;" d +STATUS_INVALID_EA_FLAG third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_EA_FLAG /;" d +STATUS_INVALID_EA_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_EA_NAME /;" d +STATUS_INVALID_FILE_FOR_SECTION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_FILE_FOR_SECTION /;" d +STATUS_INVALID_GROUP_ATTRIBUTES third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_GROUP_ATTRIBUTES /;" d +STATUS_INVALID_HANDLE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_HANDLE /;" d +STATUS_INVALID_HW_PROFILE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_HW_PROFILE /;" d +STATUS_INVALID_IDN_NORMALIZATION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IDN_NORMALIZATION /;" d +STATUS_INVALID_ID_AUTHORITY third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_ID_AUTHORITY /;" d +STATUS_INVALID_IMAGE_FORMAT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_FORMAT /;" d +STATUS_INVALID_IMAGE_HASH third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_HASH /;" d +STATUS_INVALID_IMAGE_LE_FORMAT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_LE_FORMAT /;" d +STATUS_INVALID_IMAGE_NE_FORMAT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_NE_FORMAT /;" d +STATUS_INVALID_IMAGE_NOT_MZ third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_NOT_MZ /;" d +STATUS_INVALID_IMAGE_PROTECT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_PROTECT /;" d +STATUS_INVALID_IMAGE_WIN_16 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_WIN_16 /;" d +STATUS_INVALID_IMAGE_WIN_32 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_WIN_32 /;" d +STATUS_INVALID_IMAGE_WIN_64 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMAGE_WIN_64 /;" d +STATUS_INVALID_IMPORT_OF_NON_DLL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_IMPORT_OF_NON_DLL /;" d +STATUS_INVALID_INFO_CLASS third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_INFO_CLASS /;" d +STATUS_INVALID_LABEL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LABEL /;" d +STATUS_INVALID_LDT_DESCRIPTOR third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LDT_DESCRIPTOR /;" d +STATUS_INVALID_LDT_OFFSET third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LDT_OFFSET /;" d +STATUS_INVALID_LDT_SIZE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LDT_SIZE /;" d +STATUS_INVALID_LEVEL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LEVEL /;" d +STATUS_INVALID_LOCK_RANGE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LOCK_RANGE /;" d +STATUS_INVALID_LOCK_SEQUENCE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LOCK_SEQUENCE /;" d +STATUS_INVALID_LOGON_HOURS third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LOGON_HOURS /;" d +STATUS_INVALID_LOGON_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_LOGON_TYPE /;" d +STATUS_INVALID_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_MEMBER /;" d +STATUS_INVALID_MESSAGE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_MESSAGE /;" d +STATUS_INVALID_NETWORK_RESPONSE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_NETWORK_RESPONSE /;" d +STATUS_INVALID_OPLOCK_PROTOCOL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_OPLOCK_PROTOCOL /;" d +STATUS_INVALID_OWNER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_OWNER /;" d +STATUS_INVALID_PAGE_PROTECTION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PAGE_PROTECTION /;" d +STATUS_INVALID_PARAMETER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER /;" d +STATUS_INVALID_PARAMETER_1 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_1 /;" d +STATUS_INVALID_PARAMETER_10 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_10 /;" d +STATUS_INVALID_PARAMETER_11 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_11 /;" d +STATUS_INVALID_PARAMETER_12 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_12 /;" d +STATUS_INVALID_PARAMETER_2 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_2 /;" d +STATUS_INVALID_PARAMETER_3 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_3 /;" d +STATUS_INVALID_PARAMETER_4 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_4 /;" d +STATUS_INVALID_PARAMETER_5 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_5 /;" d +STATUS_INVALID_PARAMETER_6 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_6 /;" d +STATUS_INVALID_PARAMETER_7 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_7 /;" d +STATUS_INVALID_PARAMETER_8 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_8 /;" d +STATUS_INVALID_PARAMETER_9 third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_9 /;" d +STATUS_INVALID_PARAMETER_MIX third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PARAMETER_MIX /;" d +STATUS_INVALID_PIPE_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PIPE_STATE /;" d +STATUS_INVALID_PLUGPLAY_DEVICE_PATH third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PLUGPLAY_DEVICE_PATH /;" d +STATUS_INVALID_PORT_ATTRIBUTES third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PORT_ATTRIBUTES /;" d +STATUS_INVALID_PORT_HANDLE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PORT_HANDLE /;" d +STATUS_INVALID_PRIMARY_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_PRIMARY_GROUP /;" d +STATUS_INVALID_QUOTA_LOWER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_QUOTA_LOWER /;" d +STATUS_INVALID_READ_MODE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_READ_MODE /;" d +STATUS_INVALID_SECURITY_DESCR third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SECURITY_DESCR /;" d +STATUS_INVALID_SERVER_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SERVER_STATE /;" d +STATUS_INVALID_SID third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SID /;" d +STATUS_INVALID_SIGNATURE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SIGNATURE /;" d +STATUS_INVALID_SUB_AUTHORITY third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SUB_AUTHORITY /;" d +STATUS_INVALID_SYSTEM_SERVICE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_SYSTEM_SERVICE /;" d +STATUS_INVALID_TASK_INDEX third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_TASK_INDEX /;" d +STATUS_INVALID_TASK_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_TASK_NAME /;" d +STATUS_INVALID_THREAD third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_THREAD /;" d +STATUS_INVALID_UNWIND_TARGET third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_UNWIND_TARGET /;" d +STATUS_INVALID_USER_BUFFER third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_USER_BUFFER /;" d +STATUS_INVALID_USER_PRINCIPAL_NAME third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_USER_PRINCIPAL_NAME /;" d +STATUS_INVALID_VARIANT third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_VARIANT /;" d +STATUS_INVALID_VIEW_SIZE third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_VIEW_SIZE /;" d +STATUS_INVALID_VOLUME_LABEL third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_VOLUME_LABEL /;" d +STATUS_INVALID_WORKSTATION third_party/libuv/src/win/winapi.h /^# define STATUS_INVALID_WORKSTATION /;" d +STATUS_IN_PAGE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_IN_PAGE_ERROR /;" d +STATUS_IO_DEVICE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_IO_DEVICE_ERROR /;" d +STATUS_IO_PRIVILEGE_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_IO_PRIVILEGE_FAILED /;" d +STATUS_IO_REPARSE_DATA_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_IO_REPARSE_DATA_INVALID /;" d +STATUS_IO_REPARSE_TAG_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_IO_REPARSE_TAG_INVALID /;" d +STATUS_IO_REPARSE_TAG_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_IO_REPARSE_TAG_MISMATCH /;" d +STATUS_IO_REPARSE_TAG_NOT_HANDLED third_party/libuv/src/win/winapi.h /^# define STATUS_IO_REPARSE_TAG_NOT_HANDLED /;" d +STATUS_IO_TIMEOUT third_party/libuv/src/win/winapi.h /^# define STATUS_IO_TIMEOUT /;" d +STATUS_IPSEC_QUEUE_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_IPSEC_QUEUE_OVERFLOW /;" d +STATUS_IP_ADDRESS_CONFLICT1 third_party/libuv/src/win/winapi.h /^# define STATUS_IP_ADDRESS_CONFLICT1 /;" d +STATUS_IP_ADDRESS_CONFLICT2 third_party/libuv/src/win/winapi.h /^# define STATUS_IP_ADDRESS_CONFLICT2 /;" d +STATUS_ISSUING_CA_UNTRUSTED third_party/libuv/src/win/winapi.h /^# define STATUS_ISSUING_CA_UNTRUSTED /;" d +STATUS_ISSUING_CA_UNTRUSTED_KDC third_party/libuv/src/win/winapi.h /^# define STATUS_ISSUING_CA_UNTRUSTED_KDC /;" d +STATUS_JOURNAL_DELETE_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_JOURNAL_DELETE_IN_PROGRESS /;" d +STATUS_JOURNAL_ENTRY_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_JOURNAL_ENTRY_DELETED /;" d +STATUS_JOURNAL_NOT_ACTIVE third_party/libuv/src/win/winapi.h /^# define STATUS_JOURNAL_NOT_ACTIVE /;" d +STATUS_KDC_CERT_EXPIRED third_party/libuv/src/win/winapi.h /^# define STATUS_KDC_CERT_EXPIRED /;" d +STATUS_KDC_CERT_REVOKED third_party/libuv/src/win/winapi.h /^# define STATUS_KDC_CERT_REVOKED /;" d +STATUS_KDC_INVALID_REQUEST third_party/libuv/src/win/winapi.h /^# define STATUS_KDC_INVALID_REQUEST /;" d +STATUS_KDC_UNABLE_TO_REFER third_party/libuv/src/win/winapi.h /^# define STATUS_KDC_UNABLE_TO_REFER /;" d +STATUS_KDC_UNKNOWN_ETYPE third_party/libuv/src/win/winapi.h /^# define STATUS_KDC_UNKNOWN_ETYPE /;" d +STATUS_KERNEL_APC third_party/libuv/src/win/winapi.h /^# define STATUS_KERNEL_APC /;" d +STATUS_KEY_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_KEY_DELETED /;" d +STATUS_KEY_HAS_CHILDREN third_party/libuv/src/win/winapi.h /^# define STATUS_KEY_HAS_CHILDREN /;" d +STATUS_LAST_ADMIN third_party/libuv/src/win/winapi.h /^# define STATUS_LAST_ADMIN /;" d +STATUS_LICENSE_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_LICENSE_QUOTA_EXCEEDED /;" d +STATUS_LICENSE_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_LICENSE_VIOLATION /;" d +STATUS_LINK_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_LINK_FAILED /;" d +STATUS_LINK_TIMEOUT third_party/libuv/src/win/winapi.h /^# define STATUS_LINK_TIMEOUT /;" d +STATUS_LM_CROSS_ENCRYPTION_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_LM_CROSS_ENCRYPTION_REQUIRED /;" d +STATUS_LOCAL_DISCONNECT third_party/libuv/src/win/winapi.h /^# define STATUS_LOCAL_DISCONNECT /;" d +STATUS_LOCAL_USER_SESSION_KEY third_party/libuv/src/win/winapi.h /^# define STATUS_LOCAL_USER_SESSION_KEY /;" d +STATUS_LOCK_NOT_GRANTED third_party/libuv/src/win/winapi.h /^# define STATUS_LOCK_NOT_GRANTED /;" d +STATUS_LOGIN_TIME_RESTRICTION third_party/libuv/src/win/winapi.h /^# define STATUS_LOGIN_TIME_RESTRICTION /;" d +STATUS_LOGIN_WKSTA_RESTRICTION third_party/libuv/src/win/winapi.h /^# define STATUS_LOGIN_WKSTA_RESTRICTION /;" d +STATUS_LOGON_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_FAILURE /;" d +STATUS_LOGON_NOT_GRANTED third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_NOT_GRANTED /;" d +STATUS_LOGON_SERVER_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_SERVER_CONFLICT /;" d +STATUS_LOGON_SESSION_COLLISION third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_SESSION_COLLISION /;" d +STATUS_LOGON_SESSION_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_SESSION_EXISTS /;" d +STATUS_LOGON_TYPE_NOT_GRANTED third_party/libuv/src/win/winapi.h /^# define STATUS_LOGON_TYPE_NOT_GRANTED /;" d +STATUS_LOG_FILE_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_LOG_FILE_FULL /;" d +STATUS_LOG_HARD_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_LOG_HARD_ERROR /;" d +STATUS_LONGJUMP third_party/libuv/src/win/winapi.h /^# define STATUS_LONGJUMP /;" d +STATUS_LOST_WRITEBEHIND_DATA third_party/libuv/src/win/winapi.h /^# define STATUS_LOST_WRITEBEHIND_DATA /;" d +STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR /;" d +STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED /;" d +STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR /;" d +STATUS_LPC_INVALID_CONNECTION_USAGE third_party/libuv/src/win/winapi.h /^# define STATUS_LPC_INVALID_CONNECTION_USAGE /;" d +STATUS_LPC_RECEIVE_BUFFER_EXPECTED third_party/libuv/src/win/winapi.h /^# define STATUS_LPC_RECEIVE_BUFFER_EXPECTED /;" d +STATUS_LPC_REPLY_LOST third_party/libuv/src/win/winapi.h /^# define STATUS_LPC_REPLY_LOST /;" d +STATUS_LPC_REQUESTS_NOT_ALLOWED third_party/libuv/src/win/winapi.h /^# define STATUS_LPC_REQUESTS_NOT_ALLOWED /;" d +STATUS_LUIDS_EXHAUSTED third_party/libuv/src/win/winapi.h /^# define STATUS_LUIDS_EXHAUSTED /;" d +STATUS_MAGAZINE_NOT_PRESENT third_party/libuv/src/win/winapi.h /^# define STATUS_MAGAZINE_NOT_PRESENT /;" d +STATUS_MAPPED_ALIGNMENT third_party/libuv/src/win/winapi.h /^# define STATUS_MAPPED_ALIGNMENT /;" d +STATUS_MAPPED_FILE_SIZE_ZERO third_party/libuv/src/win/winapi.h /^# define STATUS_MAPPED_FILE_SIZE_ZERO /;" d +STATUS_MARSHALL_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_MARSHALL_OVERFLOW /;" d +STATUS_MAX_REFERRALS_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_MAX_REFERRALS_EXCEEDED /;" d +STATUS_MCA_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_MCA_EXCEPTION /;" d +STATUS_MCA_OCCURED third_party/libuv/src/win/winapi.h /^# define STATUS_MCA_OCCURED /;" d +STATUS_MEDIA_CHANGED third_party/libuv/src/win/winapi.h /^# define STATUS_MEDIA_CHANGED /;" d +STATUS_MEDIA_CHECK third_party/libuv/src/win/winapi.h /^# define STATUS_MEDIA_CHECK /;" d +STATUS_MEDIA_WRITE_PROTECTED third_party/libuv/src/win/winapi.h /^# define STATUS_MEDIA_WRITE_PROTECTED /;" d +STATUS_MEMBERS_PRIMARY_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_MEMBERS_PRIMARY_GROUP /;" d +STATUS_MEMBER_IN_ALIAS third_party/libuv/src/win/winapi.h /^# define STATUS_MEMBER_IN_ALIAS /;" d +STATUS_MEMBER_IN_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_MEMBER_IN_GROUP /;" d +STATUS_MEMBER_NOT_IN_ALIAS third_party/libuv/src/win/winapi.h /^# define STATUS_MEMBER_NOT_IN_ALIAS /;" d +STATUS_MEMBER_NOT_IN_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_MEMBER_NOT_IN_GROUP /;" d +STATUS_MEMORY_NOT_ALLOCATED third_party/libuv/src/win/winapi.h /^# define STATUS_MEMORY_NOT_ALLOCATED /;" d +STATUS_MESSAGE_LOST third_party/libuv/src/win/winapi.h /^# define STATUS_MESSAGE_LOST /;" d +STATUS_MESSAGE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_MESSAGE_NOT_FOUND /;" d +STATUS_MESSAGE_RETRIEVED third_party/libuv/src/win/winapi.h /^# define STATUS_MESSAGE_RETRIEVED /;" d +STATUS_MFT_TOO_FRAGMENTED third_party/libuv/src/win/winapi.h /^# define STATUS_MFT_TOO_FRAGMENTED /;" d +STATUS_MISSING_SYSTEMFILE third_party/libuv/src/win/winapi.h /^# define STATUS_MISSING_SYSTEMFILE /;" d +STATUS_MORE_ENTRIES third_party/libuv/src/win/winapi.h /^# define STATUS_MORE_ENTRIES /;" d +STATUS_MORE_PROCESSING_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_MORE_PROCESSING_REQUIRED /;" d +STATUS_MOUNT_POINT_NOT_RESOLVED third_party/libuv/src/win/winapi.h /^# define STATUS_MOUNT_POINT_NOT_RESOLVED /;" d +STATUS_MP_PROCESSOR_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_MP_PROCESSOR_MISMATCH /;" d +STATUS_MULTIPLE_FAULT_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_MULTIPLE_FAULT_VIOLATION /;" d +STATUS_MUST_BE_KDC third_party/libuv/src/win/winapi.h /^# define STATUS_MUST_BE_KDC /;" d +STATUS_MUTANT_LIMIT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_MUTANT_LIMIT_EXCEEDED /;" d +STATUS_MUTANT_NOT_OWNED third_party/libuv/src/win/winapi.h /^# define STATUS_MUTANT_NOT_OWNED /;" d +STATUS_MUTUAL_AUTHENTICATION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_MUTUAL_AUTHENTICATION_FAILED /;" d +STATUS_NAME_TOO_LONG third_party/libuv/src/win/winapi.h /^# define STATUS_NAME_TOO_LONG /;" d +STATUS_ND_QUEUE_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_ND_QUEUE_OVERFLOW /;" d +STATUS_NETLOGON_NOT_STARTED third_party/libuv/src/win/winapi.h /^# define STATUS_NETLOGON_NOT_STARTED /;" d +STATUS_NETWORK_ACCESS_DENIED third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_ACCESS_DENIED /;" d +STATUS_NETWORK_BUSY third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_BUSY /;" d +STATUS_NETWORK_CREDENTIAL_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_CREDENTIAL_CONFLICT /;" d +STATUS_NETWORK_NAME_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_NAME_DELETED /;" d +STATUS_NETWORK_OPEN_RESTRICTION third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_OPEN_RESTRICTION /;" d +STATUS_NETWORK_SESSION_EXPIRED third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_SESSION_EXPIRED /;" d +STATUS_NETWORK_UNREACHABLE third_party/libuv/src/win/winapi.h /^# define STATUS_NETWORK_UNREACHABLE /;" d +STATUS_NET_WRITE_FAULT third_party/libuv/src/win/winapi.h /^# define STATUS_NET_WRITE_FAULT /;" d +STATUS_NOINTERFACE third_party/libuv/src/win/winapi.h /^# define STATUS_NOINTERFACE /;" d +STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT /;" d +STATUS_NOLOGON_SERVER_TRUST_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT /;" d +STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT /;" d +STATUS_NONCONTINUABLE_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_NONCONTINUABLE_EXCEPTION /;" d +STATUS_NONEXISTENT_EA_ENTRY third_party/libuv/src/win/winapi.h /^# define STATUS_NONEXISTENT_EA_ENTRY /;" d +STATUS_NONEXISTENT_SECTOR third_party/libuv/src/win/winapi.h /^# define STATUS_NONEXISTENT_SECTOR /;" d +STATUS_NONE_MAPPED third_party/libuv/src/win/winapi.h /^# define STATUS_NONE_MAPPED /;" d +STATUS_NOTHING_TO_TERMINATE third_party/libuv/src/win/winapi.h /^# define STATUS_NOTHING_TO_TERMINATE /;" d +STATUS_NOTIFICATION_GUID_ALREADY_DEFINED third_party/libuv/src/win/winapi.h /^# define STATUS_NOTIFICATION_GUID_ALREADY_DEFINED /;" d +STATUS_NOTIFY_CLEANUP third_party/libuv/src/win/winapi.h /^# define STATUS_NOTIFY_CLEANUP /;" d +STATUS_NOTIFY_ENUM_DIR third_party/libuv/src/win/winapi.h /^# define STATUS_NOTIFY_ENUM_DIR /;" d +STATUS_NOT_ALL_ASSIGNED third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_ALL_ASSIGNED /;" d +STATUS_NOT_A_DIRECTORY third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_A_DIRECTORY /;" d +STATUS_NOT_A_REPARSE_POINT third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_A_REPARSE_POINT /;" d +STATUS_NOT_CAPABLE third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_CAPABLE /;" d +STATUS_NOT_CLIENT_SESSION third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_CLIENT_SESSION /;" d +STATUS_NOT_COMMITTED third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_COMMITTED /;" d +STATUS_NOT_EXPORT_FORMAT third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_EXPORT_FORMAT /;" d +STATUS_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_FOUND /;" d +STATUS_NOT_IMPLEMENTED third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_IMPLEMENTED /;" d +STATUS_NOT_LOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_LOCKED /;" d +STATUS_NOT_LOGON_PROCESS third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_LOGON_PROCESS /;" d +STATUS_NOT_MAPPED_DATA third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_MAPPED_DATA /;" d +STATUS_NOT_MAPPED_VIEW third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_MAPPED_VIEW /;" d +STATUS_NOT_REGISTRY_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_REGISTRY_FILE /;" d +STATUS_NOT_SAFE_MODE_DRIVER third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_SAFE_MODE_DRIVER /;" d +STATUS_NOT_SAME_DEVICE third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_SAME_DEVICE /;" d +STATUS_NOT_SERVER_SESSION third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_SERVER_SESSION /;" d +STATUS_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_SUPPORTED /;" d +STATUS_NOT_SUPPORTED_ON_SBS third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_SUPPORTED_ON_SBS /;" d +STATUS_NOT_TINY_STREAM third_party/libuv/src/win/winapi.h /^# define STATUS_NOT_TINY_STREAM /;" d +STATUS_NO_ACE_CONDITION third_party/libuv/src/win/winapi.h /^# define STATUS_NO_ACE_CONDITION /;" d +STATUS_NO_BROWSER_SERVERS_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_NO_BROWSER_SERVERS_FOUND /;" d +STATUS_NO_CALLBACK_ACTIVE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_CALLBACK_ACTIVE /;" d +STATUS_NO_DATA_DETECTED third_party/libuv/src/win/winapi.h /^# define STATUS_NO_DATA_DETECTED /;" d +STATUS_NO_EAS_ON_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_EAS_ON_FILE /;" d +STATUS_NO_EFS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_EFS /;" d +STATUS_NO_EVENT_PAIR third_party/libuv/src/win/winapi.h /^# define STATUS_NO_EVENT_PAIR /;" d +STATUS_NO_GUID_TRANSLATION third_party/libuv/src/win/winapi.h /^# define STATUS_NO_GUID_TRANSLATION /;" d +STATUS_NO_IMPERSONATION_TOKEN third_party/libuv/src/win/winapi.h /^# define STATUS_NO_IMPERSONATION_TOKEN /;" d +STATUS_NO_INHERITANCE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_INHERITANCE /;" d +STATUS_NO_IP_ADDRESSES third_party/libuv/src/win/winapi.h /^# define STATUS_NO_IP_ADDRESSES /;" d +STATUS_NO_KERB_KEY third_party/libuv/src/win/winapi.h /^# define STATUS_NO_KERB_KEY /;" d +STATUS_NO_LDT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_LDT /;" d +STATUS_NO_LOGON_SERVERS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_LOGON_SERVERS /;" d +STATUS_NO_LOG_SPACE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_LOG_SPACE /;" d +STATUS_NO_MATCH third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MATCH /;" d +STATUS_NO_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MEDIA /;" d +STATUS_NO_MEDIA_IN_DEVICE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MEDIA_IN_DEVICE /;" d +STATUS_NO_MEMORY third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MEMORY /;" d +STATUS_NO_MORE_EAS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MORE_EAS /;" d +STATUS_NO_MORE_ENTRIES third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MORE_ENTRIES /;" d +STATUS_NO_MORE_FILES third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MORE_FILES /;" d +STATUS_NO_MORE_MATCHES third_party/libuv/src/win/winapi.h /^# define STATUS_NO_MORE_MATCHES /;" d +STATUS_NO_PAGEFILE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_PAGEFILE /;" d +STATUS_NO_PA_DATA third_party/libuv/src/win/winapi.h /^# define STATUS_NO_PA_DATA /;" d +STATUS_NO_QUOTAS_FOR_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_QUOTAS_FOR_ACCOUNT /;" d +STATUS_NO_RECOVERY_POLICY third_party/libuv/src/win/winapi.h /^# define STATUS_NO_RECOVERY_POLICY /;" d +STATUS_NO_S4U_PROT_SUPPORT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_S4U_PROT_SUPPORT /;" d +STATUS_NO_SECRETS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SECRETS /;" d +STATUS_NO_SECURITY_CONTEXT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SECURITY_CONTEXT /;" d +STATUS_NO_SECURITY_ON_OBJECT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SECURITY_ON_OBJECT /;" d +STATUS_NO_SPOOL_SPACE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SPOOL_SPACE /;" d +STATUS_NO_SUCH_ALIAS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_ALIAS /;" d +STATUS_NO_SUCH_DEVICE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_DEVICE /;" d +STATUS_NO_SUCH_DOMAIN third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_DOMAIN /;" d +STATUS_NO_SUCH_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_FILE /;" d +STATUS_NO_SUCH_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_GROUP /;" d +STATUS_NO_SUCH_LOGON_SESSION third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_LOGON_SESSION /;" d +STATUS_NO_SUCH_MEMBER third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_MEMBER /;" d +STATUS_NO_SUCH_PACKAGE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_PACKAGE /;" d +STATUS_NO_SUCH_PRIVILEGE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_PRIVILEGE /;" d +STATUS_NO_SUCH_USER third_party/libuv/src/win/winapi.h /^# define STATUS_NO_SUCH_USER /;" d +STATUS_NO_TGT_REPLY third_party/libuv/src/win/winapi.h /^# define STATUS_NO_TGT_REPLY /;" d +STATUS_NO_TOKEN third_party/libuv/src/win/winapi.h /^# define STATUS_NO_TOKEN /;" d +STATUS_NO_TRACKING_SERVICE third_party/libuv/src/win/winapi.h /^# define STATUS_NO_TRACKING_SERVICE /;" d +STATUS_NO_TRUST_LSA_SECRET third_party/libuv/src/win/winapi.h /^# define STATUS_NO_TRUST_LSA_SECRET /;" d +STATUS_NO_TRUST_SAM_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_NO_TRUST_SAM_ACCOUNT /;" d +STATUS_NO_UNICODE_TRANSLATION third_party/libuv/src/win/winapi.h /^# define STATUS_NO_UNICODE_TRANSLATION /;" d +STATUS_NO_USER_KEYS third_party/libuv/src/win/winapi.h /^# define STATUS_NO_USER_KEYS /;" d +STATUS_NO_USER_SESSION_KEY third_party/libuv/src/win/winapi.h /^# define STATUS_NO_USER_SESSION_KEY /;" d +STATUS_NO_YIELD_PERFORMED third_party/libuv/src/win/winapi.h /^# define STATUS_NO_YIELD_PERFORMED /;" d +STATUS_NTLM_BLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_NTLM_BLOCKED /;" d +STATUS_NT_CROSS_ENCRYPTION_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_NT_CROSS_ENCRYPTION_REQUIRED /;" d +STATUS_NULL_LM_PASSWORD third_party/libuv/src/win/winapi.h /^# define STATUS_NULL_LM_PASSWORD /;" d +STATUS_OBJECTID_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECTID_EXISTS /;" d +STATUS_OBJECTID_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECTID_NOT_FOUND /;" d +STATUS_OBJECT_NAME_COLLISION third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_NAME_COLLISION /;" d +STATUS_OBJECT_NAME_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_NAME_EXISTS /;" d +STATUS_OBJECT_NAME_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_NAME_INVALID /;" d +STATUS_OBJECT_NAME_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_NAME_NOT_FOUND /;" d +STATUS_OBJECT_PATH_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_PATH_INVALID /;" d +STATUS_OBJECT_PATH_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_PATH_NOT_FOUND /;" d +STATUS_OBJECT_PATH_SYNTAX_BAD third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_PATH_SYNTAX_BAD /;" d +STATUS_OBJECT_TYPE_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_OBJECT_TYPE_MISMATCH /;" d +STATUS_ONLY_IF_CONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_ONLY_IF_CONNECTED /;" d +STATUS_OPEN_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_OPEN_FAILED /;" d +STATUS_OPLOCK_BREAK_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_OPLOCK_BREAK_IN_PROGRESS /;" d +STATUS_OPLOCK_HANDLE_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_OPLOCK_HANDLE_CLOSED /;" d +STATUS_OPLOCK_NOT_GRANTED third_party/libuv/src/win/winapi.h /^# define STATUS_OPLOCK_NOT_GRANTED /;" d +STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE third_party/libuv/src/win/winapi.h /^# define STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE /;" d +STATUS_ORDINAL_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_ORDINAL_NOT_FOUND /;" d +STATUS_PAGEFILE_CREATE_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_PAGEFILE_CREATE_FAILED /;" d +STATUS_PAGEFILE_QUOTA third_party/libuv/src/win/winapi.h /^# define STATUS_PAGEFILE_QUOTA /;" d +STATUS_PAGEFILE_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_PAGEFILE_QUOTA_EXCEEDED /;" d +STATUS_PAGE_FAULT_COPY_ON_WRITE third_party/libuv/src/win/winapi.h /^# define STATUS_PAGE_FAULT_COPY_ON_WRITE /;" d +STATUS_PAGE_FAULT_DEMAND_ZERO third_party/libuv/src/win/winapi.h /^# define STATUS_PAGE_FAULT_DEMAND_ZERO /;" d +STATUS_PAGE_FAULT_GUARD_PAGE third_party/libuv/src/win/winapi.h /^# define STATUS_PAGE_FAULT_GUARD_PAGE /;" d +STATUS_PAGE_FAULT_PAGING_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_PAGE_FAULT_PAGING_FILE /;" d +STATUS_PAGE_FAULT_TRANSITION third_party/libuv/src/win/winapi.h /^# define STATUS_PAGE_FAULT_TRANSITION /;" d +STATUS_PARAMETER_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_PARAMETER_QUOTA_EXCEEDED /;" d +STATUS_PARITY_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_PARITY_ERROR /;" d +STATUS_PARTIAL_COPY third_party/libuv/src/win/winapi.h /^# define STATUS_PARTIAL_COPY /;" d +STATUS_PARTITION_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_PARTITION_FAILURE /;" d +STATUS_PASSWORD_EXPIRED third_party/libuv/src/win/winapi.h /^# define STATUS_PASSWORD_EXPIRED /;" d +STATUS_PASSWORD_MUST_CHANGE third_party/libuv/src/win/winapi.h /^# define STATUS_PASSWORD_MUST_CHANGE /;" d +STATUS_PASSWORD_RESTRICTION third_party/libuv/src/win/winapi.h /^# define STATUS_PASSWORD_RESTRICTION /;" d +STATUS_PATH_NOT_COVERED third_party/libuv/src/win/winapi.h /^# define STATUS_PATH_NOT_COVERED /;" d +STATUS_PENDING third_party/libuv/src/win/winapi.h /^# define STATUS_PENDING /;" d +STATUS_PER_USER_TRUST_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_PER_USER_TRUST_QUOTA_EXCEEDED /;" d +STATUS_PIPE_BROKEN third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_BROKEN /;" d +STATUS_PIPE_BUSY third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_BUSY /;" d +STATUS_PIPE_CLOSING third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_CLOSING /;" d +STATUS_PIPE_CONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_CONNECTED /;" d +STATUS_PIPE_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_DISCONNECTED /;" d +STATUS_PIPE_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_EMPTY /;" d +STATUS_PIPE_LISTENING third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_LISTENING /;" d +STATUS_PIPE_NOT_AVAILABLE third_party/libuv/src/win/winapi.h /^# define STATUS_PIPE_NOT_AVAILABLE /;" d +STATUS_PKINIT_CLIENT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_PKINIT_CLIENT_FAILURE /;" d +STATUS_PKINIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_PKINIT_FAILURE /;" d +STATUS_PKINIT_NAME_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_PKINIT_NAME_MISMATCH /;" d +STATUS_PKU2U_CERT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_PKU2U_CERT_FAILURE /;" d +STATUS_PLUGPLAY_NO_DEVICE third_party/libuv/src/win/winapi.h /^# define STATUS_PLUGPLAY_NO_DEVICE /;" d +STATUS_PLUGPLAY_QUERY_VETOED third_party/libuv/src/win/winapi.h /^# define STATUS_PLUGPLAY_QUERY_VETOED /;" d +STATUS_PNP_REBOOT_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_PNP_REBOOT_REQUIRED /;" d +STATUS_PNP_RESTART_ENUMERATION third_party/libuv/src/win/winapi.h /^# define STATUS_PNP_RESTART_ENUMERATION /;" d +STATUS_POLICY_OBJECT_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_POLICY_OBJECT_NOT_FOUND /;" d +STATUS_POLICY_ONLY_IN_DS third_party/libuv/src/win/winapi.h /^# define STATUS_POLICY_ONLY_IN_DS /;" d +STATUS_PORT_ALREADY_HAS_COMPLETION_LIST third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_ALREADY_HAS_COMPLETION_LIST /;" d +STATUS_PORT_ALREADY_SET third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_ALREADY_SET /;" d +STATUS_PORT_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_CLOSED /;" d +STATUS_PORT_CONNECTION_REFUSED third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_CONNECTION_REFUSED /;" d +STATUS_PORT_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_DISCONNECTED /;" d +STATUS_PORT_MESSAGE_TOO_LONG third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_MESSAGE_TOO_LONG /;" d +STATUS_PORT_NOT_SET third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_NOT_SET /;" d +STATUS_PORT_UNREACHABLE third_party/libuv/src/win/winapi.h /^# define STATUS_PORT_UNREACHABLE /;" d +STATUS_POSSIBLE_DEADLOCK third_party/libuv/src/win/winapi.h /^# define STATUS_POSSIBLE_DEADLOCK /;" d +STATUS_POWER_STATE_INVALID third_party/libuv/src/win/winapi.h /^# define STATUS_POWER_STATE_INVALID /;" d +STATUS_PREDEFINED_HANDLE third_party/libuv/src/win/winapi.h /^# define STATUS_PREDEFINED_HANDLE /;" d +STATUS_PRENT4_MACHINE_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_PRENT4_MACHINE_ACCOUNT /;" d +STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED /;" d +STATUS_PRINT_CANCELLED third_party/libuv/src/win/winapi.h /^# define STATUS_PRINT_CANCELLED /;" d +STATUS_PRINT_QUEUE_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_PRINT_QUEUE_FULL /;" d +STATUS_PRIVILEGED_INSTRUCTION third_party/libuv/src/win/winapi.h /^# define STATUS_PRIVILEGED_INSTRUCTION /;" d +STATUS_PRIVILEGE_NOT_HELD third_party/libuv/src/win/winapi.h /^# define STATUS_PRIVILEGE_NOT_HELD /;" d +STATUS_PROCEDURE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_PROCEDURE_NOT_FOUND /;" d +STATUS_PROCESS_CLONED third_party/libuv/src/win/winapi.h /^# define STATUS_PROCESS_CLONED /;" d +STATUS_PROCESS_IN_JOB third_party/libuv/src/win/winapi.h /^# define STATUS_PROCESS_IN_JOB /;" d +STATUS_PROCESS_IS_PROTECTED third_party/libuv/src/win/winapi.h /^# define STATUS_PROCESS_IS_PROTECTED /;" d +STATUS_PROCESS_IS_TERMINATING third_party/libuv/src/win/winapi.h /^# define STATUS_PROCESS_IS_TERMINATING /;" d +STATUS_PROCESS_NOT_IN_JOB third_party/libuv/src/win/winapi.h /^# define STATUS_PROCESS_NOT_IN_JOB /;" d +STATUS_PROFILING_AT_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_PROFILING_AT_LIMIT /;" d +STATUS_PROFILING_NOT_STARTED third_party/libuv/src/win/winapi.h /^# define STATUS_PROFILING_NOT_STARTED /;" d +STATUS_PROFILING_NOT_STOPPED third_party/libuv/src/win/winapi.h /^# define STATUS_PROFILING_NOT_STOPPED /;" d +STATUS_PROPSET_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_PROPSET_NOT_FOUND /;" d +STATUS_PROTOCOL_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_PROTOCOL_NOT_SUPPORTED /;" d +STATUS_PROTOCOL_UNREACHABLE third_party/libuv/src/win/winapi.h /^# define STATUS_PROTOCOL_UNREACHABLE /;" d +STATUS_PTE_CHANGED third_party/libuv/src/win/winapi.h /^# define STATUS_PTE_CHANGED /;" d +STATUS_PURGE_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_PURGE_FAILED /;" d +STATUS_PWD_HISTORY_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_PWD_HISTORY_CONFLICT /;" d +STATUS_PWD_TOO_RECENT third_party/libuv/src/win/winapi.h /^# define STATUS_PWD_TOO_RECENT /;" d +STATUS_PWD_TOO_SHORT third_party/libuv/src/win/winapi.h /^# define STATUS_PWD_TOO_SHORT /;" d +STATUS_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_QUOTA_EXCEEDED /;" d +STATUS_QUOTA_LIST_INCONSISTENT third_party/libuv/src/win/winapi.h /^# define STATUS_QUOTA_LIST_INCONSISTENT /;" d +STATUS_RANGE_LIST_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_RANGE_LIST_CONFLICT /;" d +STATUS_RANGE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_RANGE_NOT_FOUND /;" d +STATUS_RANGE_NOT_LOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_RANGE_NOT_LOCKED /;" d +STATUS_RECEIVE_EXPEDITED third_party/libuv/src/win/winapi.h /^# define STATUS_RECEIVE_EXPEDITED /;" d +STATUS_RECEIVE_PARTIAL third_party/libuv/src/win/winapi.h /^# define STATUS_RECEIVE_PARTIAL /;" d +STATUS_RECEIVE_PARTIAL_EXPEDITED third_party/libuv/src/win/winapi.h /^# define STATUS_RECEIVE_PARTIAL_EXPEDITED /;" d +STATUS_RECOVERY_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_RECOVERY_FAILURE /;" d +STATUS_RECURSIVE_DISPATCH third_party/libuv/src/win/winapi.h /^# define STATUS_RECURSIVE_DISPATCH /;" d +STATUS_REDIRECTOR_HAS_OPEN_HANDLES third_party/libuv/src/win/winapi.h /^# define STATUS_REDIRECTOR_HAS_OPEN_HANDLES /;" d +STATUS_REDIRECTOR_NOT_STARTED third_party/libuv/src/win/winapi.h /^# define STATUS_REDIRECTOR_NOT_STARTED /;" d +STATUS_REDIRECTOR_PAUSED third_party/libuv/src/win/winapi.h /^# define STATUS_REDIRECTOR_PAUSED /;" d +STATUS_REDIRECTOR_STARTED third_party/libuv/src/win/winapi.h /^# define STATUS_REDIRECTOR_STARTED /;" d +STATUS_REGISTRY_CORRUPT third_party/libuv/src/win/winapi.h /^# define STATUS_REGISTRY_CORRUPT /;" d +STATUS_REGISTRY_HIVE_RECOVERED third_party/libuv/src/win/winapi.h /^# define STATUS_REGISTRY_HIVE_RECOVERED /;" d +STATUS_REGISTRY_IO_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_REGISTRY_IO_FAILED /;" d +STATUS_REGISTRY_QUOTA_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_REGISTRY_QUOTA_LIMIT /;" d +STATUS_REGISTRY_RECOVERED third_party/libuv/src/win/winapi.h /^# define STATUS_REGISTRY_RECOVERED /;" d +STATUS_REG_NAT_CONSUMPTION third_party/libuv/src/win/winapi.h /^# define STATUS_REG_NAT_CONSUMPTION /;" d +STATUS_REINITIALIZATION_NEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_REINITIALIZATION_NEEDED /;" d +STATUS_REMOTE_DISCONNECT third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_DISCONNECT /;" d +STATUS_REMOTE_NOT_LISTENING third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_NOT_LISTENING /;" d +STATUS_REMOTE_RESOURCES third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_RESOURCES /;" d +STATUS_REMOTE_SESSION_LIMIT third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_SESSION_LIMIT /;" d +STATUS_REMOTE_STORAGE_MEDIA_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_STORAGE_MEDIA_ERROR /;" d +STATUS_REMOTE_STORAGE_NOT_ACTIVE third_party/libuv/src/win/winapi.h /^# define STATUS_REMOTE_STORAGE_NOT_ACTIVE /;" d +STATUS_REPARSE third_party/libuv/src/win/winapi.h /^# define STATUS_REPARSE /;" d +STATUS_REPARSE_ATTRIBUTE_CONFLICT third_party/libuv/src/win/winapi.h /^# define STATUS_REPARSE_ATTRIBUTE_CONFLICT /;" d +STATUS_REPARSE_OBJECT third_party/libuv/src/win/winapi.h /^# define STATUS_REPARSE_OBJECT /;" d +STATUS_REPARSE_POINT_NOT_RESOLVED third_party/libuv/src/win/winapi.h /^# define STATUS_REPARSE_POINT_NOT_RESOLVED /;" d +STATUS_REPLY_MESSAGE_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_REPLY_MESSAGE_MISMATCH /;" d +STATUS_REQUEST_ABORTED third_party/libuv/src/win/winapi.h /^# define STATUS_REQUEST_ABORTED /;" d +STATUS_REQUEST_CANCELED third_party/libuv/src/win/winapi.h /^# define STATUS_REQUEST_CANCELED /;" d +STATUS_REQUEST_NOT_ACCEPTED third_party/libuv/src/win/winapi.h /^# define STATUS_REQUEST_NOT_ACCEPTED /;" d +STATUS_REQUEST_OUT_OF_SEQUENCE third_party/libuv/src/win/winapi.h /^# define STATUS_REQUEST_OUT_OF_SEQUENCE /;" d +STATUS_RESOURCEMANAGER_READ_ONLY third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCEMANAGER_READ_ONLY /;" d +STATUS_RESOURCE_DATA_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_DATA_NOT_FOUND /;" d +STATUS_RESOURCE_IN_USE third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_IN_USE /;" d +STATUS_RESOURCE_LANG_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_LANG_NOT_FOUND /;" d +STATUS_RESOURCE_NAME_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_NAME_NOT_FOUND /;" d +STATUS_RESOURCE_NOT_OWNED third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_NOT_OWNED /;" d +STATUS_RESOURCE_REQUIREMENTS_CHANGED third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_REQUIREMENTS_CHANGED /;" d +STATUS_RESOURCE_TYPE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_RESOURCE_TYPE_NOT_FOUND /;" d +STATUS_RESTART_BOOT_APPLICATION third_party/libuv/src/win/winapi.h /^# define STATUS_RESTART_BOOT_APPLICATION /;" d +STATUS_RESUME_HIBERNATION third_party/libuv/src/win/winapi.h /^# define STATUS_RESUME_HIBERNATION /;" d +STATUS_RETRY third_party/libuv/src/win/winapi.h /^# define STATUS_RETRY /;" d +STATUS_REVISION_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_REVISION_MISMATCH /;" d +STATUS_REVOCATION_OFFLINE_C third_party/libuv/src/win/winapi.h /^# define STATUS_REVOCATION_OFFLINE_C /;" d +STATUS_REVOCATION_OFFLINE_KDC third_party/libuv/src/win/winapi.h /^# define STATUS_REVOCATION_OFFLINE_KDC /;" d +STATUS_RING_NEWLY_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_RING_NEWLY_EMPTY /;" d +STATUS_RING_PREVIOUSLY_ABOVE_QUOTA third_party/libuv/src/win/winapi.h /^# define STATUS_RING_PREVIOUSLY_ABOVE_QUOTA /;" d +STATUS_RING_PREVIOUSLY_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_RING_PREVIOUSLY_EMPTY /;" d +STATUS_RING_PREVIOUSLY_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_RING_PREVIOUSLY_FULL /;" d +STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT third_party/libuv/src/win/winapi.h /^# define STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT /;" d +STATUS_RXACT_COMMITTED third_party/libuv/src/win/winapi.h /^# define STATUS_RXACT_COMMITTED /;" d +STATUS_RXACT_COMMIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_RXACT_COMMIT_FAILURE /;" d +STATUS_RXACT_COMMIT_NECESSARY third_party/libuv/src/win/winapi.h /^# define STATUS_RXACT_COMMIT_NECESSARY /;" d +STATUS_RXACT_INVALID_STATE third_party/libuv/src/win/winapi.h /^# define STATUS_RXACT_INVALID_STATE /;" d +STATUS_RXACT_STATE_CREATED third_party/libuv/src/win/winapi.h /^# define STATUS_RXACT_STATE_CREATED /;" d +STATUS_SAM_INIT_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_SAM_INIT_FAILURE /;" d +STATUS_SAM_NEED_BOOTKEY_FLOPPY third_party/libuv/src/win/winapi.h /^# define STATUS_SAM_NEED_BOOTKEY_FLOPPY /;" d +STATUS_SAM_NEED_BOOTKEY_PASSWORD third_party/libuv/src/win/winapi.h /^# define STATUS_SAM_NEED_BOOTKEY_PASSWORD /;" d +STATUS_SECRET_TOO_LONG third_party/libuv/src/win/winapi.h /^# define STATUS_SECRET_TOO_LONG /;" d +STATUS_SECTION_NOT_EXTENDED third_party/libuv/src/win/winapi.h /^# define STATUS_SECTION_NOT_EXTENDED /;" d +STATUS_SECTION_NOT_IMAGE third_party/libuv/src/win/winapi.h /^# define STATUS_SECTION_NOT_IMAGE /;" d +STATUS_SECTION_PROTECTION third_party/libuv/src/win/winapi.h /^# define STATUS_SECTION_PROTECTION /;" d +STATUS_SECTION_TOO_BIG third_party/libuv/src/win/winapi.h /^# define STATUS_SECTION_TOO_BIG /;" d +STATUS_SECURITY_STREAM_IS_INCONSISTENT third_party/libuv/src/win/winapi.h /^# define STATUS_SECURITY_STREAM_IS_INCONSISTENT /;" d +STATUS_SEGMENT_NOTIFICATION third_party/libuv/src/win/winapi.h /^# define STATUS_SEGMENT_NOTIFICATION /;" d +STATUS_SEMAPHORE_LIMIT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_SEMAPHORE_LIMIT_EXCEEDED /;" d +STATUS_SERIAL_COUNTER_TIMEOUT third_party/libuv/src/win/winapi.h /^# define STATUS_SERIAL_COUNTER_TIMEOUT /;" d +STATUS_SERIAL_MORE_WRITES third_party/libuv/src/win/winapi.h /^# define STATUS_SERIAL_MORE_WRITES /;" d +STATUS_SERIAL_NO_DEVICE_INITED third_party/libuv/src/win/winapi.h /^# define STATUS_SERIAL_NO_DEVICE_INITED /;" d +STATUS_SERVER_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_SERVER_DISABLED /;" d +STATUS_SERVER_HAS_OPEN_HANDLES third_party/libuv/src/win/winapi.h /^# define STATUS_SERVER_HAS_OPEN_HANDLES /;" d +STATUS_SERVER_NOT_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_SERVER_NOT_DISABLED /;" d +STATUS_SERVER_SHUTDOWN_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_SERVER_SHUTDOWN_IN_PROGRESS /;" d +STATUS_SERVER_SID_MISMATCH third_party/libuv/src/win/winapi.h /^# define STATUS_SERVER_SID_MISMATCH /;" d +STATUS_SERVICE_NOTIFICATION third_party/libuv/src/win/winapi.h /^# define STATUS_SERVICE_NOTIFICATION /;" d +STATUS_SETMARK_DETECTED third_party/libuv/src/win/winapi.h /^# define STATUS_SETMARK_DETECTED /;" d +STATUS_SEVERITY_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_SEVERITY_ERROR /;" d +STATUS_SEVERITY_INFORMATIONAL third_party/libuv/src/win/winapi.h /^# define STATUS_SEVERITY_INFORMATIONAL /;" d +STATUS_SEVERITY_SUCCESS third_party/libuv/src/win/winapi.h /^# define STATUS_SEVERITY_SUCCESS /;" d +STATUS_SEVERITY_WARNING third_party/libuv/src/win/winapi.h /^# define STATUS_SEVERITY_WARNING /;" d +STATUS_SHARED_IRQ_BUSY third_party/libuv/src/win/winapi.h /^# define STATUS_SHARED_IRQ_BUSY /;" d +STATUS_SHARED_POLICY third_party/libuv/src/win/winapi.h /^# define STATUS_SHARED_POLICY /;" d +STATUS_SHARING_PAUSED third_party/libuv/src/win/winapi.h /^# define STATUS_SHARING_PAUSED /;" d +STATUS_SHARING_VIOLATION third_party/libuv/src/win/winapi.h /^# define STATUS_SHARING_VIOLATION /;" d +STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME third_party/libuv/src/win/winapi.h /^# define STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME /;" d +STATUS_SHUTDOWN_IN_PROGRESS third_party/libuv/src/win/winapi.h /^# define STATUS_SHUTDOWN_IN_PROGRESS /;" d +STATUS_SINGLE_STEP third_party/libuv/src/win/winapi.h /^# define STATUS_SINGLE_STEP /;" d +STATUS_SMARTCARD_CARD_BLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_CARD_BLOCKED /;" d +STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED /;" d +STATUS_SMARTCARD_CERT_EXPIRED third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_CERT_EXPIRED /;" d +STATUS_SMARTCARD_CERT_REVOKED third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_CERT_REVOKED /;" d +STATUS_SMARTCARD_IO_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_IO_ERROR /;" d +STATUS_SMARTCARD_LOGON_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_LOGON_REQUIRED /;" d +STATUS_SMARTCARD_NO_CARD third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_NO_CARD /;" d +STATUS_SMARTCARD_NO_CERTIFICATE third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_NO_CERTIFICATE /;" d +STATUS_SMARTCARD_NO_KEYSET third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_NO_KEYSET /;" d +STATUS_SMARTCARD_NO_KEY_CONTAINER third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_NO_KEY_CONTAINER /;" d +STATUS_SMARTCARD_SILENT_CONTEXT third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_SILENT_CONTEXT /;" d +STATUS_SMARTCARD_SUBSYSTEM_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_SUBSYSTEM_FAILURE /;" d +STATUS_SMARTCARD_WRONG_PIN third_party/libuv/src/win/winapi.h /^# define STATUS_SMARTCARD_WRONG_PIN /;" d +STATUS_SOME_NOT_MAPPED third_party/libuv/src/win/winapi.h /^# define STATUS_SOME_NOT_MAPPED /;" d +STATUS_SOURCE_ELEMENT_EMPTY third_party/libuv/src/win/winapi.h /^# define STATUS_SOURCE_ELEMENT_EMPTY /;" d +STATUS_SPECIAL_ACCOUNT third_party/libuv/src/win/winapi.h /^# define STATUS_SPECIAL_ACCOUNT /;" d +STATUS_SPECIAL_GROUP third_party/libuv/src/win/winapi.h /^# define STATUS_SPECIAL_GROUP /;" d +STATUS_SPECIAL_USER third_party/libuv/src/win/winapi.h /^# define STATUS_SPECIAL_USER /;" d +STATUS_STACK_BUFFER_OVERRUN third_party/libuv/src/win/winapi.h /^# define STATUS_STACK_BUFFER_OVERRUN /;" d +STATUS_STACK_OVERFLOW third_party/libuv/src/win/winapi.h /^# define STATUS_STACK_OVERFLOW /;" d +STATUS_STACK_OVERFLOW_READ third_party/libuv/src/win/winapi.h /^# define STATUS_STACK_OVERFLOW_READ /;" d +STATUS_STOPPED_ON_SYMLINK third_party/libuv/src/win/winapi.h /^# define STATUS_STOPPED_ON_SYMLINK /;" d +STATUS_STRONG_CRYPTO_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_STRONG_CRYPTO_NOT_SUPPORTED /;" d +STATUS_SUCCESS third_party/libuv/src/win/winapi.h /^# define STATUS_SUCCESS /;" d +STATUS_SUSPEND_COUNT_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_SUSPEND_COUNT_EXCEEDED /;" d +STATUS_SYMLINK_CLASS_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_SYMLINK_CLASS_DISABLED /;" d +STATUS_SYNCHRONIZATION_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_SYNCHRONIZATION_REQUIRED /;" d +STATUS_SYSTEM_DEVICE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_DEVICE_NOT_FOUND /;" d +STATUS_SYSTEM_HIVE_TOO_LARGE third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_HIVE_TOO_LARGE /;" d +STATUS_SYSTEM_IMAGE_BAD_SIGNATURE third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_IMAGE_BAD_SIGNATURE /;" d +STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION /;" d +STATUS_SYSTEM_POWERSTATE_TRANSITION third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_POWERSTATE_TRANSITION /;" d +STATUS_SYSTEM_PROCESS_TERMINATED third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_PROCESS_TERMINATED /;" d +STATUS_SYSTEM_SHUTDOWN third_party/libuv/src/win/winapi.h /^# define STATUS_SYSTEM_SHUTDOWN /;" d +STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED /;" d +STATUS_THREADPOOL_HANDLE_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_HANDLE_EXCEPTION /;" d +STATUS_THREADPOOL_RELEASED_DURING_OPERATION third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_RELEASED_DURING_OPERATION /;" d +STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED /;" d +STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED /;" d +STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED third_party/libuv/src/win/winapi.h /^# define STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED /;" d +STATUS_THREAD_ALREADY_IN_TASK third_party/libuv/src/win/winapi.h /^# define STATUS_THREAD_ALREADY_IN_TASK /;" d +STATUS_THREAD_IS_TERMINATING third_party/libuv/src/win/winapi.h /^# define STATUS_THREAD_IS_TERMINATING /;" d +STATUS_THREAD_NOT_IN_PROCESS third_party/libuv/src/win/winapi.h /^# define STATUS_THREAD_NOT_IN_PROCESS /;" d +STATUS_THREAD_WAS_SUSPENDED third_party/libuv/src/win/winapi.h /^# define STATUS_THREAD_WAS_SUSPENDED /;" d +STATUS_TIMEOUT third_party/libuv/src/win/winapi.h /^# define STATUS_TIMEOUT /;" d +STATUS_TIMER_NOT_CANCELED third_party/libuv/src/win/winapi.h /^# define STATUS_TIMER_NOT_CANCELED /;" d +STATUS_TIMER_RESOLUTION_NOT_SET third_party/libuv/src/win/winapi.h /^# define STATUS_TIMER_RESOLUTION_NOT_SET /;" d +STATUS_TIMER_RESUME_IGNORED third_party/libuv/src/win/winapi.h /^# define STATUS_TIMER_RESUME_IGNORED /;" d +STATUS_TIME_DIFFERENCE_AT_DC third_party/libuv/src/win/winapi.h /^# define STATUS_TIME_DIFFERENCE_AT_DC /;" d +STATUS_TOKEN_ALREADY_IN_USE third_party/libuv/src/win/winapi.h /^# define STATUS_TOKEN_ALREADY_IN_USE /;" d +STATUS_TOO_LATE third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_LATE /;" d +STATUS_TOO_MANY_ADDRESSES third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_ADDRESSES /;" d +STATUS_TOO_MANY_COMMANDS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_COMMANDS /;" d +STATUS_TOO_MANY_CONTEXT_IDS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_CONTEXT_IDS /;" d +STATUS_TOO_MANY_GUIDS_REQUESTED third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_GUIDS_REQUESTED /;" d +STATUS_TOO_MANY_LINKS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_LINKS /;" d +STATUS_TOO_MANY_LUIDS_REQUESTED third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_LUIDS_REQUESTED /;" d +STATUS_TOO_MANY_NAMES third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_NAMES /;" d +STATUS_TOO_MANY_NODES third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_NODES /;" d +STATUS_TOO_MANY_OPENED_FILES third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_OPENED_FILES /;" d +STATUS_TOO_MANY_PAGING_FILES third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_PAGING_FILES /;" d +STATUS_TOO_MANY_PRINCIPALS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_PRINCIPALS /;" d +STATUS_TOO_MANY_SECRETS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_SECRETS /;" d +STATUS_TOO_MANY_SESSIONS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_SESSIONS /;" d +STATUS_TOO_MANY_SIDS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_SIDS /;" d +STATUS_TOO_MANY_THREADS third_party/libuv/src/win/winapi.h /^# define STATUS_TOO_MANY_THREADS /;" d +STATUS_TRANSACTION_ABORTED third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_ABORTED /;" d +STATUS_TRANSACTION_INVALID_ID third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_INVALID_ID /;" d +STATUS_TRANSACTION_INVALID_TYPE third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_INVALID_TYPE /;" d +STATUS_TRANSACTION_NO_MATCH third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_NO_MATCH /;" d +STATUS_TRANSACTION_NO_RELEASE third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_NO_RELEASE /;" d +STATUS_TRANSACTION_RESPONDED third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_RESPONDED /;" d +STATUS_TRANSACTION_TIMED_OUT third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSACTION_TIMED_OUT /;" d +STATUS_TRANSLATION_COMPLETE third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSLATION_COMPLETE /;" d +STATUS_TRANSPORT_FULL third_party/libuv/src/win/winapi.h /^# define STATUS_TRANSPORT_FULL /;" d +STATUS_TRUSTED_DOMAIN_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_TRUSTED_DOMAIN_FAILURE /;" d +STATUS_TRUSTED_RELATIONSHIP_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_TRUSTED_RELATIONSHIP_FAILURE /;" d +STATUS_TRUST_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_TRUST_FAILURE /;" d +STATUS_UNABLE_TO_DECOMMIT_VM third_party/libuv/src/win/winapi.h /^# define STATUS_UNABLE_TO_DECOMMIT_VM /;" d +STATUS_UNABLE_TO_DELETE_SECTION third_party/libuv/src/win/winapi.h /^# define STATUS_UNABLE_TO_DELETE_SECTION /;" d +STATUS_UNABLE_TO_FREE_VM third_party/libuv/src/win/winapi.h /^# define STATUS_UNABLE_TO_FREE_VM /;" d +STATUS_UNABLE_TO_LOCK_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_UNABLE_TO_LOCK_MEDIA /;" d +STATUS_UNABLE_TO_UNLOAD_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_UNABLE_TO_UNLOAD_MEDIA /;" d +STATUS_UNDEFINED_CHARACTER third_party/libuv/src/win/winapi.h /^# define STATUS_UNDEFINED_CHARACTER /;" d +STATUS_UNEXPECTED_IO_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_UNEXPECTED_IO_ERROR /;" d +STATUS_UNEXPECTED_MM_CREATE_ERR third_party/libuv/src/win/winapi.h /^# define STATUS_UNEXPECTED_MM_CREATE_ERR /;" d +STATUS_UNEXPECTED_MM_EXTEND_ERR third_party/libuv/src/win/winapi.h /^# define STATUS_UNEXPECTED_MM_EXTEND_ERR /;" d +STATUS_UNEXPECTED_MM_MAP_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_UNEXPECTED_MM_MAP_ERROR /;" d +STATUS_UNEXPECTED_NETWORK_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_UNEXPECTED_NETWORK_ERROR /;" d +STATUS_UNFINISHED_CONTEXT_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_UNFINISHED_CONTEXT_DELETED /;" d +STATUS_UNHANDLED_EXCEPTION third_party/libuv/src/win/winapi.h /^# define STATUS_UNHANDLED_EXCEPTION /;" d +STATUS_UNKNOWN_REVISION third_party/libuv/src/win/winapi.h /^# define STATUS_UNKNOWN_REVISION /;" d +STATUS_UNMAPPABLE_CHARACTER third_party/libuv/src/win/winapi.h /^# define STATUS_UNMAPPABLE_CHARACTER /;" d +STATUS_UNRECOGNIZED_MEDIA third_party/libuv/src/win/winapi.h /^# define STATUS_UNRECOGNIZED_MEDIA /;" d +STATUS_UNRECOGNIZED_VOLUME third_party/libuv/src/win/winapi.h /^# define STATUS_UNRECOGNIZED_VOLUME /;" d +STATUS_UNSUCCESSFUL third_party/libuv/src/win/winapi.h /^# define STATUS_UNSUCCESSFUL /;" d +STATUS_UNSUPPORTED_COMPRESSION third_party/libuv/src/win/winapi.h /^# define STATUS_UNSUPPORTED_COMPRESSION /;" d +STATUS_UNSUPPORTED_PREAUTH third_party/libuv/src/win/winapi.h /^# define STATUS_UNSUPPORTED_PREAUTH /;" d +STATUS_UNWIND third_party/libuv/src/win/winapi.h /^# define STATUS_UNWIND /;" d +STATUS_UNWIND_CONSOLIDATE third_party/libuv/src/win/winapi.h /^# define STATUS_UNWIND_CONSOLIDATE /;" d +STATUS_USER2USER_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_USER2USER_REQUIRED /;" d +STATUS_USER_APC third_party/libuv/src/win/winapi.h /^# define STATUS_USER_APC /;" d +STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED third_party/libuv/src/win/winapi.h /^# define STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED /;" d +STATUS_USER_EXISTS third_party/libuv/src/win/winapi.h /^# define STATUS_USER_EXISTS /;" d +STATUS_USER_MAPPED_FILE third_party/libuv/src/win/winapi.h /^# define STATUS_USER_MAPPED_FILE /;" d +STATUS_USER_SESSION_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_USER_SESSION_DELETED /;" d +STATUS_VALIDATE_CONTINUE third_party/libuv/src/win/winapi.h /^# define STATUS_VALIDATE_CONTINUE /;" d +STATUS_VARIABLE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_VARIABLE_NOT_FOUND /;" d +STATUS_VDM_DISALLOWED third_party/libuv/src/win/winapi.h /^# define STATUS_VDM_DISALLOWED /;" d +STATUS_VDM_HARD_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_VDM_HARD_ERROR /;" d +STATUS_VERIFIER_STOP third_party/libuv/src/win/winapi.h /^# define STATUS_VERIFIER_STOP /;" d +STATUS_VERIFY_REQUIRED third_party/libuv/src/win/winapi.h /^# define STATUS_VERIFY_REQUIRED /;" d +STATUS_VIRTUAL_CIRCUIT_CLOSED third_party/libuv/src/win/winapi.h /^# define STATUS_VIRTUAL_CIRCUIT_CLOSED /;" d +STATUS_VIRUS_DELETED third_party/libuv/src/win/winapi.h /^# define STATUS_VIRUS_DELETED /;" d +STATUS_VIRUS_INFECTED third_party/libuv/src/win/winapi.h /^# define STATUS_VIRUS_INFECTED /;" d +STATUS_VOLSNAP_HIBERNATE_READY third_party/libuv/src/win/winapi.h /^# define STATUS_VOLSNAP_HIBERNATE_READY /;" d +STATUS_VOLSNAP_PREPARE_HIBERNATE third_party/libuv/src/win/winapi.h /^# define STATUS_VOLSNAP_PREPARE_HIBERNATE /;" d +STATUS_VOLUME_DIRTY third_party/libuv/src/win/winapi.h /^# define STATUS_VOLUME_DIRTY /;" d +STATUS_VOLUME_DISMOUNTED third_party/libuv/src/win/winapi.h /^# define STATUS_VOLUME_DISMOUNTED /;" d +STATUS_VOLUME_MOUNTED third_party/libuv/src/win/winapi.h /^# define STATUS_VOLUME_MOUNTED /;" d +STATUS_VOLUME_NOT_UPGRADED third_party/libuv/src/win/winapi.h /^# define STATUS_VOLUME_NOT_UPGRADED /;" d +STATUS_WAIT_0 third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_0 /;" d +STATUS_WAIT_1 third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_1 /;" d +STATUS_WAIT_2 third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_2 /;" d +STATUS_WAIT_3 third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_3 /;" d +STATUS_WAIT_63 third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_63 /;" d +STATUS_WAIT_FOR_OPLOCK third_party/libuv/src/win/winapi.h /^# define STATUS_WAIT_FOR_OPLOCK /;" d +STATUS_WAKE_SYSTEM third_party/libuv/src/win/winapi.h /^# define STATUS_WAKE_SYSTEM /;" d +STATUS_WAKE_SYSTEM_DEBUGGER third_party/libuv/src/win/winapi.h /^# define STATUS_WAKE_SYSTEM_DEBUGGER /;" d +STATUS_WAS_LOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_WAS_LOCKED /;" d +STATUS_WAS_UNLOCKED third_party/libuv/src/win/winapi.h /^# define STATUS_WAS_UNLOCKED /;" d +STATUS_WMI_ALREADY_DISABLED third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_ALREADY_DISABLED /;" d +STATUS_WMI_ALREADY_ENABLED third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_ALREADY_ENABLED /;" d +STATUS_WMI_GUID_DISCONNECTED third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_GUID_DISCONNECTED /;" d +STATUS_WMI_GUID_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_GUID_NOT_FOUND /;" d +STATUS_WMI_INSTANCE_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_INSTANCE_NOT_FOUND /;" d +STATUS_WMI_ITEMID_NOT_FOUND third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_ITEMID_NOT_FOUND /;" d +STATUS_WMI_NOT_SUPPORTED third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_NOT_SUPPORTED /;" d +STATUS_WMI_READ_ONLY third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_READ_ONLY /;" d +STATUS_WMI_SET_FAILURE third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_SET_FAILURE /;" d +STATUS_WMI_TRY_AGAIN third_party/libuv/src/win/winapi.h /^# define STATUS_WMI_TRY_AGAIN /;" d +STATUS_WORKING_SET_LIMIT_RANGE third_party/libuv/src/win/winapi.h /^# define STATUS_WORKING_SET_LIMIT_RANGE /;" d +STATUS_WORKING_SET_QUOTA third_party/libuv/src/win/winapi.h /^# define STATUS_WORKING_SET_QUOTA /;" d +STATUS_WOW_ASSERTION third_party/libuv/src/win/winapi.h /^# define STATUS_WOW_ASSERTION /;" d +STATUS_WRONG_COMPARTMENT third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_COMPARTMENT /;" d +STATUS_WRONG_CREDENTIAL_HANDLE third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_CREDENTIAL_HANDLE /;" d +STATUS_WRONG_EFS third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_EFS /;" d +STATUS_WRONG_PASSWORD third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_PASSWORD /;" d +STATUS_WRONG_PASSWORD_CORE third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_PASSWORD_CORE /;" d +STATUS_WRONG_VOLUME third_party/libuv/src/win/winapi.h /^# define STATUS_WRONG_VOLUME /;" d +STATUS_WX86_BREAKPOINT third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_BREAKPOINT /;" d +STATUS_WX86_CONTINUE third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_CONTINUE /;" d +STATUS_WX86_CREATEWX86TIB third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_CREATEWX86TIB /;" d +STATUS_WX86_EXCEPTION_CHAIN third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_EXCEPTION_CHAIN /;" d +STATUS_WX86_EXCEPTION_CONTINUE third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_EXCEPTION_CONTINUE /;" d +STATUS_WX86_EXCEPTION_LASTCHANCE third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_EXCEPTION_LASTCHANCE /;" d +STATUS_WX86_FLOAT_STACK_CHECK third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_FLOAT_STACK_CHECK /;" d +STATUS_WX86_INTERNAL_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_INTERNAL_ERROR /;" d +STATUS_WX86_SINGLE_STEP third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_SINGLE_STEP /;" d +STATUS_WX86_UNSIMULATE third_party/libuv/src/win/winapi.h /^# define STATUS_WX86_UNSIMULATE /;" d +STATUS_XMLDSIG_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_XMLDSIG_ERROR /;" d +STATUS_XML_PARSE_ERROR third_party/libuv/src/win/winapi.h /^# define STATUS_XML_PARSE_ERROR /;" d STBDS_ADDRESSOF dowa/stb_ds.h /^ #define STBDS_ADDRESSOF(/;" d STBDS_ADDRESSOF dowa/stb_ds.h /^#define STBDS_ADDRESSOF(/;" d STBDS_ALIGN_FWD dowa/stb_ds.h /^#define STBDS_ALIGN_FWD(/;" d @@ -5702,6 +7336,13 @@ STBDS_STATS dowa/stb_ds.h /^#define STBDS_STATS(/;" d STBDS_STRING_ARENA_BLOCKSIZE_MAX dowa/stb_ds.h /^#define STBDS_STRING_ARENA_BLOCKSIZE_MAX /;" d STBDS_STRING_ARENA_BLOCKSIZE_MIN dowa/stb_ds.h /^#define STBDS_STRING_ARENA_BLOCKSIZE_MIN /;" d +SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE third_party/libuv/src/win/winapi.h /^# define SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE /;" d +SYMBOLIC_LINK_FLAG_DIRECTORY third_party/libuv/src/win/winapi.h /^# define SYMBOLIC_LINK_FLAG_DIRECTORY /;" d +SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION third_party/libuv/src/win/winapi.h /^} SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION, *PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION;$/;" t typeref:struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION +S_IFIFO third_party/libuv/include/uv/win.h /^# define S_IFIFO _S_IFIFO$/;" d +S_IFLNK third_party/libuv/include/uv/win.h /^# define S_IFLNK /;" d +S_IRUSR third_party/libuv/test/task.h /^# define S_IRUSR /;" d +S_IWUSR third_party/libuv/test/task.h /^# define S_IWUSR /;" d SaveFileData third_party/raylib/include/raylib.h /^RLAPI bool SaveFileData(const char *fileName, void *data, int dataSize); \/\/ Save data to file /;" p typeref:typename:RLAPI bool SaveFileData third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI bool SaveFileData(const char *fileName, void *data, int dataSize); \/\/ Save data to file /;" p typeref:typename:RLAPI bool SaveFileData third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI bool SaveFileData(const char *fileName, void *data, int dataSize); \/\/ Save data to file /;" p typeref:typename:RLAPI bool @@ -5718,6 +7359,8 @@ SaveFileTextCallback third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef bool (*SaveFileTextCallback)(const char *fileName, char *text); \/\/ FileIO: Save text d/;" t typeref:typename:bool (*)(const char * fileName,char * text) SaveFileTextCallback third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef bool (*SaveFileTextCallback)(const char *fileName, char *text); \/\/ FileIO: Save text d/;" t typeref:typename:bool (*)(const char * fileName,char * text) SaveFileTextCallback third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef bool (*SaveFileTextCallback)(const char *fileName, char *text); \/\/ FileIO: Save text d/;" t typeref:typename:bool (*)(const char * fileName,char * text) +SectorsPerAllocationUnit third_party/libuv/src/win/winapi.h /^ ULONG SectorsPerAllocationUnit;$/;" m struct:_FILE_FS_FULL_SIZE_INFORMATION typeref:typename:ULONG +SectorsPerAllocationUnit third_party/libuv/src/win/winapi.h /^ ULONG SectorsPerAllocationUnit;$/;" m struct:_FILE_FS_SIZE_INFORMATION typeref:typename:ULONG SeekMusicStream third_party/raylib/include/raylib.h /^RLAPI void SeekMusicStream(Music music, float position); \/\/ Seek music to a posit/;" p typeref:typename:RLAPI void SeekMusicStream third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void SeekMusicStream(Music music, float position); \/\/ Seek music to a posit/;" p typeref:typename:RLAPI void SeekMusicStream third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void SeekMusicStream(Music music, float position); \/\/ Seek music to a posit/;" p typeref:typename:RLAPI void @@ -6066,6 +7709,8 @@ ShaderUniformDataType third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} ShaderUniformDataType;$/;" t typeref:enum:__anon9d42b9dd0b03 ShaderUniformDataType third_party/raylib/raylib-5.5_macos/include/raylib.h /^} ShaderUniformDataType;$/;" t typeref:enum:__anon255619050b03 ShaderUniformDataType third_party/raylib/raylib-5.5_win64/include/raylib.h /^} ShaderUniformDataType;$/;" t typeref:enum:__anonf614aaea0b03 +ShortName third_party/libuv/src/win/winapi.h /^ WCHAR ShortName[12];$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:WCHAR[12] +ShortNameLength third_party/libuv/src/win/winapi.h /^ CCHAR ShortNameLength;$/;" m struct:_FILE_BOTH_DIR_INFORMATION typeref:typename:CCHAR ShowCursor third_party/raylib/include/raylib.h /^RLAPI void ShowCursor(void); \/\/ Shows cursor$/;" p typeref:typename:RLAPI void ShowCursor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void ShowCursor(void); \/\/ Shows cursor$/;" p typeref:typename:RLAPI void ShowCursor third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void ShowCursor(void); \/\/ Shows cursor$/;" p typeref:typename:RLAPI void @@ -6079,6 +7724,7 @@ Sound third_party/raylib/raylib-5.5_macos/include/raylib.h /^} Sound;$/;" t typeref:struct:Sound Sound third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct Sound {$/;" s Sound third_party/raylib/raylib-5.5_win64/include/raylib.h /^} Sound;$/;" t typeref:struct:Sound +StandardInformation third_party/libuv/src/win/winapi.h /^ FILE_STANDARD_INFORMATION StandardInformation;$/;" m struct:_FILE_ALL_INFORMATION typeref:typename:FILE_STANDARD_INFORMATION StartAutomationEventRecording third_party/raylib/include/raylib.h /^RLAPI void StartAutomationEventRecording(void); \/\/ Sta/;" p typeref:typename:RLAPI void StartAutomationEventRecording third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void StartAutomationEventRecording(void); \/\/ Sta/;" p typeref:typename:RLAPI void StartAutomationEventRecording third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void StartAutomationEventRecording(void); \/\/ Sta/;" p typeref:typename:RLAPI void @@ -6087,6 +7733,8 @@ State third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ } State; \/\/ Renderer state$/;" m struct:rlglData typeref:struct:rlglData::__anon0cdf4ceb0d08 State third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ } State; \/\/ Renderer state$/;" m struct:rlglData typeref:struct:rlglData::__anon96c0c2130d08 State third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ } State; \/\/ Renderer state$/;" m struct:rlglData typeref:struct:rlglData::__anon9e7796b80d08 +Status third_party/libuv/include/uv/win.h /^ NTSTATUS Status;$/;" m struct:_AFD_POLL_HANDLE_INFO typeref:typename:NTSTATUS +Status third_party/libuv/src/win/winapi.h /^ NTSTATUS Status;$/;" m union:_IO_STATUS_BLOCK::__anon941c3301060a typeref:typename:NTSTATUS StopAudioStream third_party/raylib/include/raylib.h /^RLAPI void StopAudioStream(AudioStream stream); \/\/ Stop audio stream$/;" p typeref:typename:RLAPI void StopAudioStream third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void StopAudioStream(AudioStream stream); \/\/ Stop audio stream$/;" p typeref:typename:RLAPI void StopAudioStream third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void StopAudioStream(AudioStream stream); \/\/ Stop audio stream$/;" p typeref:typename:RLAPI void @@ -6103,12 +7751,58 @@ StopSound third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void StopSound(Sound sound); \/\/ Stop playing a sound$/;" p typeref:typename:RLAPI void StopSound third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void StopSound(Sound sound); \/\/ Stop playing a sound$/;" p typeref:typename:RLAPI void StopSound third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void StopSound(Sound sound); \/\/ Stop playing a sound$/;" p typeref:typename:RLAPI void +StringCount third_party/libuv/src/win/winapi.h /^ ULONG StringCount;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010508 typeref:typename:ULONG +StringList third_party/libuv/src/win/winapi.h /^ WCHAR StringList[1];$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010508 typeref:typename:WCHAR[1] +SubstituteNameLength third_party/libuv/src/win/winapi.h /^ USHORT SubstituteNameLength;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:USHORT +SubstituteNameLength third_party/libuv/src/win/winapi.h /^ USHORT SubstituteNameLength;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 typeref:typename:USHORT +SubstituteNameOffset third_party/libuv/src/win/winapi.h /^ USHORT SubstituteNameOffset;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 typeref:typename:USHORT +SubstituteNameOffset third_party/libuv/src/win/winapi.h /^ USHORT SubstituteNameOffset;$/;" m struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010308 typeref:typename:USHORT +SupportsObjects third_party/libuv/src/win/winapi.h /^ BOOLEAN SupportsObjects;$/;" m struct:_FILE_FS_VOLUME_INFORMATION typeref:typename:BOOLEAN SwapScreenBuffer third_party/raylib/include/raylib.h /^RLAPI void SwapScreenBuffer(void); \/\/ Swap back buffer with fro/;" p typeref:typename:RLAPI void SwapScreenBuffer third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void SwapScreenBuffer(void); \/\/ Swap back buffer with fro/;" p typeref:typename:RLAPI void SwapScreenBuffer third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void SwapScreenBuffer(void); \/\/ Swap back buffer with fro/;" p typeref:typename:RLAPI void SwapScreenBuffer third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void SwapScreenBuffer(void); \/\/ Swap back buffer with fro/;" p typeref:typename:RLAPI void +SymbolicLinkReparseBuffer third_party/libuv/src/win/winapi.h /^ } SymbolicLinkReparseBuffer;$/;" m union:_REPARSE_DATA_BUFFER::__anon941c3301010a typeref:struct:_REPARSE_DATA_BUFFER::__anon941c3301010a::__anon941c33010208 +SystemProcessorPerformanceInformation third_party/libuv/src/win/winapi.h /^# define SystemProcessorPerformanceInformation /;" d +TASK_H_ third_party/libuv/test/task.h /^#define TASK_H_$/;" d +TASK_LIST_END third_party/libuv/test/runner.h /^#define TASK_LIST_END /;" d +TASK_LIST_START third_party/libuv/test/runner.h /^#define TASK_LIST_START /;" d +TCP third_party/libuv/test/task.h /^ TCP = 0,$/;" e enum:__anon53cf48870103 +TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS third_party/libuv/src/win/winapi.h /^# define TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS /;" d +TCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#define TCP_INITIAL_RTO_PARAMETERS TCP_INITIAL_RTO_PARAMETERS_/;" d +TCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#undef TCP_INITIAL_RTO_PARAMETERS$/;" d +TCP_INITIAL_RTO_PARAMETERS third_party/libuv/src/win/winapi.h /^} TCP_INITIAL_RTO_PARAMETERS, *PTCP_INITIAL_RTO_PARAMETERS;$/;" t typeref:struct:_TCP_INITIAL_RTO_PARAMETERS +TCP_KEEPALIVE third_party/libuv/src/win/winsock.h /^# define TCP_KEEPALIVE /;" d +TDI_RECEIVE_AT_DISPATCH_LEVEL third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_AT_DISPATCH_LEVEL /;" d +TDI_RECEIVE_BROADCAST third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_BROADCAST /;" d +TDI_RECEIVE_CONTROL_INFO third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_CONTROL_INFO /;" d +TDI_RECEIVE_COPY_LOOKAHEAD third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_COPY_LOOKAHEAD /;" d +TDI_RECEIVE_ENTIRE_MESSAGE third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_ENTIRE_MESSAGE /;" d +TDI_RECEIVE_EXPEDITED third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_EXPEDITED /;" d +TDI_RECEIVE_FORCE_INDICATION third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_FORCE_INDICATION /;" d +TDI_RECEIVE_MULTICAST third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_MULTICAST /;" d +TDI_RECEIVE_NORMAL third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_NORMAL /;" d +TDI_RECEIVE_NO_PUSH third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_NO_PUSH /;" d +TDI_RECEIVE_NO_RESPONSE_EXP third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_NO_RESPONSE_EXP /;" d +TDI_RECEIVE_PARTIAL third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_PARTIAL /;" d +TDI_RECEIVE_PEEK third_party/libuv/src/win/winsock.h /^ #define TDI_RECEIVE_PEEK /;" d +TEST_DECLARE third_party/libuv/test/runner.h /^#define TEST_DECLARE(/;" d +TEST_ENTRY third_party/libuv/test/runner.h /^#define TEST_ENTRY(/;" d +TEST_ENTRY_CUSTOM third_party/libuv/test/runner.h /^#define TEST_ENTRY_CUSTOM(/;" d +TEST_FILE_LIMIT third_party/libuv/test/task.h /^# define TEST_FILE_LIMIT(/;" d +TEST_HELPER third_party/libuv/test/runner.h /^#define TEST_HELPER /;" d TEST_HOST mrjunejune/test/test.h /^#define TEST_HOST /;" d +TEST_IMPL third_party/libuv/test/task.h /^#define TEST_IMPL(/;" d +TEST_OK third_party/libuv/test/task.h /^ TEST_OK = 0,$/;" e enum:test_status +TEST_PIPENAME third_party/libuv/test/task.h /^# define TEST_PIPENAME /;" d +TEST_PIPENAME_2 third_party/libuv/test/task.h /^# define TEST_PIPENAME_2 /;" d +TEST_PIPENAME_3 third_party/libuv/test/task.h /^# define TEST_PIPENAME_3 /;" d TEST_PORT mrjunejune/test/test.h /^#define TEST_PORT /;" d +TEST_PORT third_party/libuv/test/task.h /^#define TEST_PORT /;" d +TEST_PORT_2 third_party/libuv/test/task.h /^#define TEST_PORT_2 /;" d +TEST_PORT_3 third_party/libuv/test/task.h /^#define TEST_PORT_3 /;" d +TEST_RUNNER_UNIX_H third_party/libuv/test/runner-unix.h /^#define TEST_RUNNER_UNIX_H$/;" d +TEST_SKIP third_party/libuv/test/task.h /^ TEST_SKIP = 7$/;" e enum:test_status TEST_URL mrjunejune/test/test.h /^#define TEST_URL /;" d TEXT third_party/raylib/include/raygui.h /^typedef enum { BORDER = 0, BASE, TEXT, OTHER } GuiPropertyElement;$/;" e enum:__anonbfe71a2a1503 TEXTBOX third_party/raylib/include/raygui.h /^ TEXTBOX, \/\/ Used also for: TEXTBOXMULTI$/;" e enum:__anonbfe71a2a0603 @@ -6188,6 +7882,9 @@ TakeScreenshot third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void TakeScreenshot(const char *fileName); \/\/ Takes a screenshot of cur/;" p typeref:typename:RLAPI void TakeScreenshot third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void TakeScreenshot(const char *fileName); \/\/ Takes a screenshot of cur/;" p typeref:typename:RLAPI void TakeScreenshot third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void TakeScreenshot(const char *fileName); \/\/ Takes a screenshot of cur/;" p typeref:typename:RLAPI void +TargetConditionals.h third_party/libuv/include/uv/darwin.h /^# include <TargetConditionals.h>/;" h +TdiFlags third_party/libuv/src/win/winsock.h /^ ULONG TdiFlags;$/;" m struct:_AFD_RECV_DATAGRAM_INFO typeref:typename:ULONG +TdiFlags third_party/libuv/src/win/winsock.h /^ ULONG TdiFlags;$/;" m struct:_AFD_RECV_INFO typeref:typename:ULONG TextAppend third_party/raylib/include/raylib.h /^RLAPI void TextAppend(char *text, const char *append, int *position); \/\//;" p typeref:typename:RLAPI void TextAppend third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void TextAppend(char *text, const char *append, int *position); \/\//;" p typeref:typename:RLAPI void TextAppend third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void TextAppend(char *text, const char *append, int *position); \/\//;" p typeref:typename:RLAPI void @@ -6295,6 +7992,7 @@ TextureWrap third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^} TextureWrap;$/;" t typeref:enum:__anon9d42b9dd0f03 TextureWrap third_party/raylib/raylib-5.5_macos/include/raylib.h /^} TextureWrap;$/;" t typeref:enum:__anon255619050f03 TextureWrap third_party/raylib/raylib-5.5_win64/include/raylib.h /^} TextureWrap;$/;" t typeref:enum:__anonf614aaea0f03 +Timeout third_party/libuv/include/uv/win.h /^ LARGE_INTEGER Timeout;$/;" m struct:_AFD_POLL_INFO typeref:typename:LARGE_INTEGER ToggleBorderlessWindowed third_party/raylib/include/raylib.h /^RLAPI void ToggleBorderlessWindowed(void); \/\/ Toggle window state: bord/;" p typeref:typename:RLAPI void ToggleBorderlessWindowed third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void ToggleBorderlessWindowed(void); \/\/ Toggle window state: bord/;" p typeref:typename:RLAPI void ToggleBorderlessWindowed third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void ToggleBorderlessWindowed(void); \/\/ Toggle window state: bord/;" p typeref:typename:RLAPI void @@ -6303,6 +8001,8 @@ ToggleFullscreen third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void ToggleFullscreen(void); \/\/ Toggle window state: full/;" p typeref:typename:RLAPI void ToggleFullscreen third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void ToggleFullscreen(void); \/\/ Toggle window state: full/;" p typeref:typename:RLAPI void ToggleFullscreen third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void ToggleFullscreen(void); \/\/ Toggle window state: full/;" p typeref:typename:RLAPI void +TotalAllocationUnits third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER TotalAllocationUnits;$/;" m struct:_FILE_FS_FULL_SIZE_INFORMATION typeref:typename:LARGE_INTEGER +TotalAllocationUnits third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER TotalAllocationUnits;$/;" m struct:_FILE_FS_SIZE_INFORMATION typeref:typename:LARGE_INTEGER TraceLog third_party/raylib/include/raylib.h /^RLAPI void TraceLog(int logLevel, const char *text, ...); \/\/ Show trace log messages (/;" p typeref:typename:RLAPI void TraceLog third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void TraceLog(int logLevel, const char *text, ...); \/\/ Show trace log messages (/;" p typeref:typename:RLAPI void TraceLog third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void TraceLog(int logLevel, const char *text, ...); \/\/ Show trace log messages (/;" p typeref:typename:RLAPI void @@ -6323,6 +8023,513 @@ Transform third_party/raylib/raylib-5.5_macos/include/raylib.h /^} Transform;$/;" t typeref:struct:Transform Transform third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef struct Transform {$/;" s Transform third_party/raylib/raylib-5.5_win64/include/raylib.h /^} Transform;$/;" t typeref:struct:Transform +UDP third_party/libuv/test/task.h /^ UDP,$/;" e enum:__anon53cf48870103 +UNICODE_STRING third_party/libuv/src/win/winapi.h /^} UNICODE_STRING, *PUNICODE_STRING;$/;" t typeref:struct:_UNICODE_STRING +UNREACHABLE third_party/libuv/src/unix/internal.h /^#define UNREACHABLE(/;" d +UNREGISTER_HANDLE_REQ third_party/libuv/src/win/req-inl.h /^#define UNREGISTER_HANDLE_REQ(/;" d +UNUSED third_party/libuv/test/task.h /^# define UNUSED /;" d +UNUSED third_party/libuv/test/task.h /^# define UNUSED$/;" d +UVBOOK_PLUGIN_SYSTEM third_party/libuv/docs/code/plugin/plugin.h /^#define UVBOOK_PLUGIN_SYSTEM$/;" d +UV_AIX_H third_party/libuv/include/uv/aix.h /^#define UV_AIX_H$/;" d +UV_ASYNC_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_ASYNC_PRIVATE_FIELDS$/;" d +UV_ASYNC_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_ASYNC_PRIVATE_FIELDS /;" d +UV_ASYNC_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_ASYNC_PRIVATE_FIELDS /;" d +UV_BEGIN_DISABLE_CRT_ASSERT third_party/libuv/src/win/internal.h /^#define UV_BEGIN_DISABLE_CRT_ASSERT(/;" d +UV_BSD_H third_party/libuv/include/uv/bsd.h /^#define UV_BSD_H$/;" d +UV_CHANGE third_party/libuv/include/uv.h /^ UV_CHANGE = 2$/;" e enum:uv_fs_event +UV_CHECK_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_CHECK_PRIVATE_FIELDS$/;" d +UV_CHECK_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_CHECK_PRIVATE_FIELDS /;" d +UV_CHECK_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_CHECK_PRIVATE_FIELDS /;" d +UV_CLOCK_FAST third_party/libuv/src/unix/internal.h /^ UV_CLOCK_FAST = 1 \/* Use the fastest clock with <= 1ms granularity. *\/$/;" e enum:__anona662544c0303 +UV_CLOCK_MONOTONIC third_party/libuv/include/uv.h /^ UV_CLOCK_MONOTONIC,$/;" e enum:__anon4de24c230603 +UV_CLOCK_PRECISE third_party/libuv/src/unix/internal.h /^ UV_CLOCK_PRECISE = 0, \/* Use the highest resolution clock available. *\/$/;" e enum:__anona662544c0303 +UV_CLOCK_REALTIME third_party/libuv/include/uv.h /^ UV_CLOCK_REALTIME$/;" e enum:__anon4de24c230603 +UV_COMMON_H_ third_party/libuv/src/uv-common.h /^#define UV_COMMON_H_$/;" d +UV_CONNECT_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_CONNECT_PRIVATE_FIELDS /;" d +UV_CONNECT_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_CONNECT_PRIVATE_FIELDS /;" d +UV_CREATE_PIPE third_party/libuv/include/uv.h /^ UV_CREATE_PIPE = 0x01,$/;" e enum:__anon4de24c231003 +UV_DARWIN_H third_party/libuv/include/uv/darwin.h /^#define UV_DARWIN_H$/;" d +UV_DARWIN_STUB_H_ third_party/libuv/src/unix/darwin-stub.h /^#define UV_DARWIN_STUB_H_$/;" d +UV_DARWIN_SYSCALLS_H_ third_party/libuv/src/unix/darwin-syscalls.h /^#define UV_DARWIN_SYSCALLS_H_$/;" d +UV_DIRENT_BLOCK third_party/libuv/include/uv.h /^ UV_DIRENT_BLOCK$/;" e enum:__anon4de24c231403 +UV_DIRENT_CHAR third_party/libuv/include/uv.h /^ UV_DIRENT_CHAR,$/;" e enum:__anon4de24c231403 +UV_DIRENT_DIR third_party/libuv/include/uv.h /^ UV_DIRENT_DIR,$/;" e enum:__anon4de24c231403 +UV_DIRENT_FIFO third_party/libuv/include/uv.h /^ UV_DIRENT_FIFO,$/;" e enum:__anon4de24c231403 +UV_DIRENT_FILE third_party/libuv/include/uv.h /^ UV_DIRENT_FILE,$/;" e enum:__anon4de24c231403 +UV_DIRENT_LINK third_party/libuv/include/uv.h /^ UV_DIRENT_LINK,$/;" e enum:__anon4de24c231403 +UV_DIRENT_SOCKET third_party/libuv/include/uv.h /^ UV_DIRENT_SOCKET,$/;" e enum:__anon4de24c231403 +UV_DIRENT_UNKNOWN third_party/libuv/include/uv.h /^ UV_DIRENT_UNKNOWN,$/;" e enum:__anon4de24c231403 +UV_DIR_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_DIR_PRIVATE_FIELDS /;" d +UV_DIR_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_DIR_PRIVATE_FIELDS /;" d +UV_DISCONNECT third_party/libuv/include/uv.h /^ UV_DISCONNECT = 4,$/;" e enum:uv_poll_event +UV_DYNAMIC third_party/libuv/include/uv/unix.h /^#define UV_DYNAMIC /;" d +UV_DYNAMIC third_party/libuv/include/uv/win.h /^#define UV_DYNAMIC /;" d +UV_END_DISABLE_CRT_ASSERT third_party/libuv/src/win/internal.h /^#define UV_END_DISABLE_CRT_ASSERT(/;" d +UV_ERRNO_H_ third_party/libuv/include/uv/errno.h /^#define UV_ERRNO_H_$/;" d +UV_ERRNO_MAP third_party/libuv/include/uv.h /^ UV_ERRNO_MAP(XX)$/;" e enum:__anon4de24c230103 +UV_ERRNO_MAP third_party/libuv/include/uv.h /^#define UV_ERRNO_MAP(/;" d +UV_EXTERN third_party/libuv/include/uv.h /^# define UV_EXTERN /;" d +UV_FS_ACCESS third_party/libuv/include/uv.h /^ UV_FS_ACCESS,$/;" e enum:__anon4de24c231703 +UV_FS_CHMOD third_party/libuv/include/uv.h /^ UV_FS_CHMOD,$/;" e enum:__anon4de24c231703 +UV_FS_CHOWN third_party/libuv/include/uv.h /^ UV_FS_CHOWN,$/;" e enum:__anon4de24c231703 +UV_FS_CLOSE third_party/libuv/include/uv.h /^ UV_FS_CLOSE,$/;" e enum:__anon4de24c231703 +UV_FS_CLOSEDIR third_party/libuv/include/uv.h /^ UV_FS_CLOSEDIR,$/;" e enum:__anon4de24c231703 +UV_FS_COPYFILE third_party/libuv/include/uv.h /^ UV_FS_COPYFILE,$/;" e enum:__anon4de24c231703 +UV_FS_COPYFILE_EXCL third_party/libuv/include/uv.h /^#define UV_FS_COPYFILE_EXCL /;" d +UV_FS_COPYFILE_FICLONE third_party/libuv/include/uv.h /^#define UV_FS_COPYFILE_FICLONE /;" d +UV_FS_COPYFILE_FICLONE_FORCE third_party/libuv/include/uv.h /^#define UV_FS_COPYFILE_FICLONE_FORCE /;" d +UV_FS_CUSTOM third_party/libuv/include/uv.h /^ UV_FS_CUSTOM,$/;" e enum:__anon4de24c231703 +UV_FS_EVENT_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_FS_EVENT_PRIVATE_FIELDS$/;" d +UV_FS_EVENT_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_FS_EVENT_PRIVATE_FIELDS /;" d +UV_FS_EVENT_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_FS_EVENT_PRIVATE_FIELDS /;" d +UV_FS_EVENT_RECURSIVE third_party/libuv/include/uv.h /^ UV_FS_EVENT_RECURSIVE = 4$/;" e enum:uv_fs_event_flags +UV_FS_EVENT_STAT third_party/libuv/include/uv.h /^ UV_FS_EVENT_STAT = 2,$/;" e enum:uv_fs_event_flags +UV_FS_EVENT_WATCH_ENTRY third_party/libuv/include/uv.h /^ UV_FS_EVENT_WATCH_ENTRY = 1,$/;" e enum:uv_fs_event_flags +UV_FS_FCHMOD third_party/libuv/include/uv.h /^ UV_FS_FCHMOD,$/;" e enum:__anon4de24c231703 +UV_FS_FCHOWN third_party/libuv/include/uv.h /^ UV_FS_FCHOWN,$/;" e enum:__anon4de24c231703 +UV_FS_FDATASYNC third_party/libuv/include/uv.h /^ UV_FS_FDATASYNC,$/;" e enum:__anon4de24c231703 +UV_FS_FSTAT third_party/libuv/include/uv.h /^ UV_FS_FSTAT,$/;" e enum:__anon4de24c231703 +UV_FS_FSYNC third_party/libuv/include/uv.h /^ UV_FS_FSYNC,$/;" e enum:__anon4de24c231703 +UV_FS_FTRUNCATE third_party/libuv/include/uv.h /^ UV_FS_FTRUNCATE,$/;" e enum:__anon4de24c231703 +UV_FS_FUTIME third_party/libuv/include/uv.h /^ UV_FS_FUTIME,$/;" e enum:__anon4de24c231703 +UV_FS_LCHOWN third_party/libuv/include/uv.h /^ UV_FS_LCHOWN,$/;" e enum:__anon4de24c231703 +UV_FS_LINK third_party/libuv/include/uv.h /^ UV_FS_LINK,$/;" e enum:__anon4de24c231703 +UV_FS_LSTAT third_party/libuv/include/uv.h /^ UV_FS_LSTAT,$/;" e enum:__anon4de24c231703 +UV_FS_LUTIME third_party/libuv/include/uv.h /^ UV_FS_LUTIME$/;" e enum:__anon4de24c231703 +UV_FS_MKDIR third_party/libuv/include/uv.h /^ UV_FS_MKDIR,$/;" e enum:__anon4de24c231703 +UV_FS_MKDTEMP third_party/libuv/include/uv.h /^ UV_FS_MKDTEMP,$/;" e enum:__anon4de24c231703 +UV_FS_MKSTEMP third_party/libuv/include/uv.h /^ UV_FS_MKSTEMP,$/;" e enum:__anon4de24c231703 +UV_FS_OPEN third_party/libuv/include/uv.h /^ UV_FS_OPEN,$/;" e enum:__anon4de24c231703 +UV_FS_OPENDIR third_party/libuv/include/uv.h /^ UV_FS_OPENDIR,$/;" e enum:__anon4de24c231703 +UV_FS_O_APPEND third_party/libuv/include/uv/unix.h /^# define UV_FS_O_APPEND /;" d +UV_FS_O_APPEND third_party/libuv/include/uv/win.h /^#define UV_FS_O_APPEND /;" d +UV_FS_O_CREAT third_party/libuv/include/uv/unix.h /^# define UV_FS_O_CREAT /;" d +UV_FS_O_CREAT third_party/libuv/include/uv/win.h /^#define UV_FS_O_CREAT /;" d +UV_FS_O_DIRECT third_party/libuv/include/uv/unix.h /^# define UV_FS_O_DIRECT /;" d +UV_FS_O_DIRECT third_party/libuv/include/uv/win.h /^#define UV_FS_O_DIRECT /;" d +UV_FS_O_DIRECTORY third_party/libuv/include/uv/unix.h /^# define UV_FS_O_DIRECTORY /;" d +UV_FS_O_DIRECTORY third_party/libuv/include/uv/win.h /^#define UV_FS_O_DIRECTORY /;" d +UV_FS_O_DSYNC third_party/libuv/include/uv/unix.h /^# define UV_FS_O_DSYNC /;" d +UV_FS_O_DSYNC third_party/libuv/include/uv/win.h /^#define UV_FS_O_DSYNC /;" d +UV_FS_O_EXCL third_party/libuv/include/uv/unix.h /^# define UV_FS_O_EXCL /;" d +UV_FS_O_EXCL third_party/libuv/include/uv/win.h /^#define UV_FS_O_EXCL /;" d +UV_FS_O_EXLOCK third_party/libuv/include/uv/unix.h /^# define UV_FS_O_EXLOCK /;" d +UV_FS_O_EXLOCK third_party/libuv/include/uv/win.h /^#define UV_FS_O_EXLOCK /;" d +UV_FS_O_FILEMAP third_party/libuv/include/uv/unix.h /^#define UV_FS_O_FILEMAP /;" d +UV_FS_O_FILEMAP third_party/libuv/include/uv/win.h /^#define UV_FS_O_FILEMAP /;" d +UV_FS_O_NOATIME third_party/libuv/include/uv/unix.h /^# define UV_FS_O_NOATIME /;" d +UV_FS_O_NOATIME third_party/libuv/include/uv/win.h /^#define UV_FS_O_NOATIME /;" d +UV_FS_O_NOCTTY third_party/libuv/include/uv/unix.h /^# define UV_FS_O_NOCTTY /;" d +UV_FS_O_NOCTTY third_party/libuv/include/uv/win.h /^#define UV_FS_O_NOCTTY /;" d +UV_FS_O_NOFOLLOW third_party/libuv/include/uv/unix.h /^# define UV_FS_O_NOFOLLOW /;" d +UV_FS_O_NOFOLLOW third_party/libuv/include/uv/win.h /^#define UV_FS_O_NOFOLLOW /;" d +UV_FS_O_NONBLOCK third_party/libuv/include/uv/unix.h /^# define UV_FS_O_NONBLOCK /;" d +UV_FS_O_NONBLOCK third_party/libuv/include/uv/win.h /^#define UV_FS_O_NONBLOCK /;" d +UV_FS_O_RANDOM third_party/libuv/include/uv/unix.h /^#define UV_FS_O_RANDOM /;" d +UV_FS_O_RANDOM third_party/libuv/include/uv/win.h /^#define UV_FS_O_RANDOM /;" d +UV_FS_O_RDONLY third_party/libuv/include/uv/unix.h /^# define UV_FS_O_RDONLY /;" d +UV_FS_O_RDONLY third_party/libuv/include/uv/win.h /^#define UV_FS_O_RDONLY /;" d +UV_FS_O_RDWR third_party/libuv/include/uv/unix.h /^# define UV_FS_O_RDWR /;" d +UV_FS_O_RDWR third_party/libuv/include/uv/win.h /^#define UV_FS_O_RDWR /;" d +UV_FS_O_SEQUENTIAL third_party/libuv/include/uv/unix.h /^#define UV_FS_O_SEQUENTIAL /;" d +UV_FS_O_SEQUENTIAL third_party/libuv/include/uv/win.h /^#define UV_FS_O_SEQUENTIAL /;" d +UV_FS_O_SHORT_LIVED third_party/libuv/include/uv/unix.h /^#define UV_FS_O_SHORT_LIVED /;" d +UV_FS_O_SHORT_LIVED third_party/libuv/include/uv/win.h /^#define UV_FS_O_SHORT_LIVED /;" d +UV_FS_O_SYMLINK third_party/libuv/include/uv/unix.h /^# define UV_FS_O_SYMLINK /;" d +UV_FS_O_SYMLINK third_party/libuv/include/uv/win.h /^#define UV_FS_O_SYMLINK /;" d +UV_FS_O_SYNC third_party/libuv/include/uv/unix.h /^# define UV_FS_O_SYNC /;" d +UV_FS_O_SYNC third_party/libuv/include/uv/win.h /^#define UV_FS_O_SYNC /;" d +UV_FS_O_TEMPORARY third_party/libuv/include/uv/unix.h /^#define UV_FS_O_TEMPORARY /;" d +UV_FS_O_TEMPORARY third_party/libuv/include/uv/win.h /^#define UV_FS_O_TEMPORARY /;" d +UV_FS_O_TRUNC third_party/libuv/include/uv/unix.h /^# define UV_FS_O_TRUNC /;" d +UV_FS_O_TRUNC third_party/libuv/include/uv/win.h /^#define UV_FS_O_TRUNC /;" d +UV_FS_O_WRONLY third_party/libuv/include/uv/unix.h /^# define UV_FS_O_WRONLY /;" d +UV_FS_O_WRONLY third_party/libuv/include/uv/win.h /^#define UV_FS_O_WRONLY /;" d +UV_FS_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_FS_PRIVATE_FIELDS /;" d +UV_FS_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_FS_PRIVATE_FIELDS /;" d +UV_FS_READ third_party/libuv/include/uv.h /^ UV_FS_READ,$/;" e enum:__anon4de24c231703 +UV_FS_READDIR third_party/libuv/include/uv.h /^ UV_FS_READDIR,$/;" e enum:__anon4de24c231703 +UV_FS_READLINK third_party/libuv/include/uv.h /^ UV_FS_READLINK,$/;" e enum:__anon4de24c231703 +UV_FS_REALPATH third_party/libuv/include/uv.h /^ UV_FS_REALPATH,$/;" e enum:__anon4de24c231703 +UV_FS_RENAME third_party/libuv/include/uv.h /^ UV_FS_RENAME,$/;" e enum:__anon4de24c231703 +UV_FS_REQ_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_FS_REQ_PRIVATE_FIELDS$/;" d +UV_FS_RMDIR third_party/libuv/include/uv.h /^ UV_FS_RMDIR,$/;" e enum:__anon4de24c231703 +UV_FS_SCANDIR third_party/libuv/include/uv.h /^ UV_FS_SCANDIR,$/;" e enum:__anon4de24c231703 +UV_FS_SENDFILE third_party/libuv/include/uv.h /^ UV_FS_SENDFILE,$/;" e enum:__anon4de24c231703 +UV_FS_STAT third_party/libuv/include/uv.h /^ UV_FS_STAT,$/;" e enum:__anon4de24c231703 +UV_FS_STATFS third_party/libuv/include/uv.h /^ UV_FS_STATFS,$/;" e enum:__anon4de24c231703 +UV_FS_SYMLINK third_party/libuv/include/uv.h /^ UV_FS_SYMLINK,$/;" e enum:__anon4de24c231703 +UV_FS_SYMLINK_DIR third_party/libuv/include/uv.h /^#define UV_FS_SYMLINK_DIR /;" d +UV_FS_SYMLINK_JUNCTION third_party/libuv/include/uv.h /^#define UV_FS_SYMLINK_JUNCTION /;" d +UV_FS_UNKNOWN third_party/libuv/include/uv.h /^ UV_FS_UNKNOWN = -1,$/;" e enum:__anon4de24c231703 +UV_FS_UNLINK third_party/libuv/include/uv.h /^ UV_FS_UNLINK,$/;" e enum:__anon4de24c231703 +UV_FS_UTIME third_party/libuv/include/uv.h /^ UV_FS_UTIME,$/;" e enum:__anon4de24c231703 +UV_FS_UTIME_NOW third_party/libuv/include/uv.h /^#define UV_FS_UTIME_NOW /;" d +UV_FS_UTIME_OMIT third_party/libuv/include/uv.h /^#define UV_FS_UTIME_OMIT /;" d +UV_FS_WRITE third_party/libuv/include/uv.h /^ UV_FS_WRITE,$/;" e enum:__anon4de24c231703 +UV_GETADDRINFO_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_GETADDRINFO_PRIVATE_FIELDS$/;" d +UV_GETADDRINFO_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_GETADDRINFO_PRIVATE_FIELDS /;" d +UV_GETADDRINFO_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_GETADDRINFO_PRIVATE_FIELDS /;" d +UV_GETNAMEINFO_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_GETNAMEINFO_PRIVATE_FIELDS$/;" d +UV_GETNAMEINFO_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_GETNAMEINFO_PRIVATE_FIELDS /;" d +UV_GETNAMEINFO_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_GETNAMEINFO_PRIVATE_FIELDS /;" d +UV_H third_party/libuv/include/uv.h /^#define UV_H$/;" d +UV_HANDLE_ACTIVE third_party/libuv/src/uv-common.h /^ UV_HANDLE_ACTIVE = 0x00000004,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_BLOCKING_WRITES third_party/libuv/src/uv-common.h /^ UV_HANDLE_BLOCKING_WRITES = 0x00100000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_BOUND third_party/libuv/src/uv-common.h /^ UV_HANDLE_BOUND = 0x00002000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_CANCELLATION_PENDING third_party/libuv/src/uv-common.h /^ UV_HANDLE_CANCELLATION_PENDING = 0x00200000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_CLOSED third_party/libuv/src/uv-common.h /^ UV_HANDLE_CLOSED = 0x00000002,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_CLOSING third_party/libuv/src/uv-common.h /^ UV_HANDLE_CLOSING = 0x00000001,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_CONNECTION third_party/libuv/src/uv-common.h /^ UV_HANDLE_CONNECTION = 0x00000080,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_EMULATE_IOCP third_party/libuv/src/uv-common.h /^ UV_HANDLE_EMULATE_IOCP = 0x00080000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_ENDGAME_QUEUED third_party/libuv/src/uv-common.h /^ UV_HANDLE_ENDGAME_QUEUED = 0x00000020,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_FIELDS third_party/libuv/include/uv.h /^#define UV_HANDLE_FIELDS /;" d +UV_HANDLE_INTERNAL third_party/libuv/src/uv-common.h /^ UV_HANDLE_INTERNAL = 0x00000010,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_IPV6 third_party/libuv/src/uv-common.h /^ UV_HANDLE_IPV6 = 0x00400000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_LISTENING third_party/libuv/src/uv-common.h /^ UV_HANDLE_LISTENING = 0x00000040,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_NON_OVERLAPPED_PIPE third_party/libuv/src/uv-common.h /^ UV_HANDLE_NON_OVERLAPPED_PIPE = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_PIPESERVER third_party/libuv/src/uv-common.h /^ UV_HANDLE_PIPESERVER = 0x02000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_POLL_SLOW third_party/libuv/src/uv-common.h /^ UV_HANDLE_POLL_SLOW = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_HANDLE_PRIVATE_FIELDS /;" d +UV_HANDLE_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_HANDLE_PRIVATE_FIELDS /;" d +UV_HANDLE_READABLE third_party/libuv/src/uv-common.h /^ UV_HANDLE_READABLE = 0x00004000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_READING third_party/libuv/src/uv-common.h /^ UV_HANDLE_READING = 0x00001000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_READ_EOF third_party/libuv/src/uv-common.h /^ UV_HANDLE_READ_EOF = 0x00000800,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_READ_PARTIAL third_party/libuv/src/uv-common.h /^ UV_HANDLE_READ_PARTIAL = 0x00000400,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_READ_PENDING third_party/libuv/src/uv-common.h /^ UV_HANDLE_READ_PENDING = 0x00010000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_REAP third_party/libuv/src/uv-common.h /^ UV_HANDLE_REAP = 0x10000000$/;" e enum:__anond4b2857d0103 +UV_HANDLE_REF third_party/libuv/src/uv-common.h /^ UV_HANDLE_REF = 0x00000008,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_SHARED_TCP_SOCKET third_party/libuv/src/uv-common.h /^ UV_HANDLE_SHARED_TCP_SOCKET = 0x10000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_SHUT third_party/libuv/src/uv-common.h /^ UV_HANDLE_SHUT = 0x00000200,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_SYNC_BYPASS_IOCP third_party/libuv/src/uv-common.h /^ UV_HANDLE_SYNC_BYPASS_IOCP = 0x00020000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TCP_ACCEPT_STATE_CHANGING third_party/libuv/src/uv-common.h /^ UV_HANDLE_TCP_ACCEPT_STATE_CHANGING = 0x08000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TCP_KEEPALIVE third_party/libuv/src/uv-common.h /^ UV_HANDLE_TCP_KEEPALIVE = 0x02000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TCP_NODELAY third_party/libuv/src/uv-common.h /^ UV_HANDLE_TCP_NODELAY = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TCP_SINGLE_ACCEPT third_party/libuv/src/uv-common.h /^ UV_HANDLE_TCP_SINGLE_ACCEPT = 0x04000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TTY_READABLE third_party/libuv/src/uv-common.h /^ UV_HANDLE_TTY_READABLE = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TTY_SAVED_ATTRIBUTES third_party/libuv/src/uv-common.h /^ UV_HANDLE_TTY_SAVED_ATTRIBUTES = 0x08000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TTY_SAVED_POSITION third_party/libuv/src/uv-common.h /^ UV_HANDLE_TTY_SAVED_POSITION = 0x04000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_TYPE_MAP third_party/libuv/include/uv.h /^ UV_HANDLE_TYPE_MAP(XX)$/;" e enum:__anon4de24c230203 +UV_HANDLE_TYPE_MAP third_party/libuv/include/uv.h /^#define UV_HANDLE_TYPE_MAP(/;" d +UV_HANDLE_TYPE_MAX third_party/libuv/include/uv.h /^ UV_HANDLE_TYPE_MAX$/;" e enum:__anon4de24c230203 +UV_HANDLE_TYPE_PRIVATE third_party/libuv/include/uv.h /^#undef UV_HANDLE_TYPE_PRIVATE$/;" d +UV_HANDLE_UDP_CONNECTED third_party/libuv/src/uv-common.h /^ UV_HANDLE_UDP_CONNECTED = 0x02000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_UDP_PROCESSING third_party/libuv/src/uv-common.h /^ UV_HANDLE_UDP_PROCESSING = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_UDP_RECVMMSG third_party/libuv/src/uv-common.h /^ UV_HANDLE_UDP_RECVMMSG = 0x04000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_UNUSED0 third_party/libuv/src/uv-common.h /^ UV_HANDLE_UNUSED0 = 0x02000000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_WRITABLE third_party/libuv/src/uv-common.h /^ UV_HANDLE_WRITABLE = 0x00008000,$/;" e enum:__anond4b2857d0103 +UV_HANDLE_ZERO_READ third_party/libuv/src/uv-common.h /^ UV_HANDLE_ZERO_READ = 0x00040000,$/;" e enum:__anond4b2857d0103 +UV_HAVE_KQUEUE third_party/libuv/include/uv/bsd.h /^#define UV_HAVE_KQUEUE /;" d +UV_HAVE_KQUEUE third_party/libuv/include/uv/darwin.h /^#define UV_HAVE_KQUEUE /;" d +UV_IDLE_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_IDLE_PRIVATE_FIELDS$/;" d +UV_IDLE_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_IDLE_PRIVATE_FIELDS /;" d +UV_IDLE_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_IDLE_PRIVATE_FIELDS /;" d +UV_IF_NAMESIZE third_party/libuv/include/uv.h /^# define UV_IF_NAMESIZE /;" d +UV_IGNORE third_party/libuv/include/uv.h /^ UV_IGNORE = 0x00,$/;" e enum:__anon4de24c231003 +UV_INHERIT_FD third_party/libuv/include/uv.h /^ UV_INHERIT_FD = 0x02,$/;" e enum:__anon4de24c231003 +UV_INHERIT_STREAM third_party/libuv/include/uv.h /^ UV_INHERIT_STREAM = 0x04,$/;" e enum:__anon4de24c231003 +UV_IO_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv/bsd.h /^#define UV_IO_PRIVATE_PLATFORM_FIELDS /;" d +UV_IO_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv/darwin.h /^#define UV_IO_PRIVATE_PLATFORM_FIELDS /;" d +UV_IO_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv/unix.h /^# define UV_IO_PRIVATE_PLATFORM_FIELDS /;" d +UV_JOIN_GROUP third_party/libuv/include/uv.h /^ UV_JOIN_GROUP$/;" e enum:__anon4de24c230c03 +UV_LEAVE_GROUP third_party/libuv/include/uv.h /^ UV_LEAVE_GROUP = 0,$/;" e enum:__anon4de24c230c03 +UV_LINUX_H third_party/libuv/include/uv/linux.h /^#define UV_LINUX_H$/;" d +UV_LOOP_BLOCK_SIGNAL third_party/libuv/include/uv.h /^ UV_LOOP_BLOCK_SIGNAL = 0,$/;" e enum:__anon4de24c230403 +UV_LOOP_BLOCK_SIGPROF third_party/libuv/src/unix/internal.h /^ UV_LOOP_BLOCK_SIGPROF = 0x1,$/;" e enum:__anona662544c0103 +UV_LOOP_ENABLE_IO_URING_SQPOLL third_party/libuv/src/unix/internal.h /^ UV_LOOP_ENABLE_IO_URING_SQPOLL = 0x4$/;" e enum:__anona662544c0103 +UV_LOOP_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_LOOP_PRIVATE_FIELDS$/;" d +UV_LOOP_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_LOOP_PRIVATE_FIELDS /;" d +UV_LOOP_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_LOOP_PRIVATE_FIELDS /;" d +UV_LOOP_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv.h /^#undef UV_LOOP_PRIVATE_PLATFORM_FIELDS$/;" d +UV_LOOP_REAP_CHILDREN third_party/libuv/src/unix/internal.h /^ UV_LOOP_REAP_CHILDREN = 0x2,$/;" e enum:__anona662544c0103 +UV_LOOP_USE_IO_URING_SQPOLL third_party/libuv/include/uv.h /^ UV_LOOP_USE_IO_URING_SQPOLL$/;" e enum:__anon4de24c230403 +UV_LOOP_USE_IO_URING_SQPOLL third_party/libuv/include/uv.h /^#define UV_LOOP_USE_IO_URING_SQPOLL UV_LOOP_USE_IO_URING_SQPOLL$/;" d +UV_MAXHOSTNAMESIZE third_party/libuv/include/uv.h /^# define UV_MAXHOSTNAMESIZE /;" d +UV_METRICS_IDLE_TIME third_party/libuv/include/uv.h /^ UV_METRICS_IDLE_TIME,$/;" e enum:__anon4de24c230403 +UV_MSAFD_PROVIDER_COUNT third_party/libuv/include/uv/win.h /^#define UV_MSAFD_PROVIDER_COUNT /;" d +UV_MVS_H third_party/libuv/include/uv/os390.h /^#define UV_MVS_H$/;" d +UV_NONBLOCK_PIPE third_party/libuv/include/uv.h /^ UV_NONBLOCK_PIPE = 0x40,$/;" e enum:__anon4de24c231003 +UV_ONCE_INIT third_party/libuv/include/uv/unix.h /^#define UV_ONCE_INIT /;" d +UV_ONCE_INIT third_party/libuv/include/uv/win.h /^#define UV_ONCE_INIT /;" d +UV_OS390_SYSCALL_H_ third_party/libuv/src/unix/os390-syscalls.h /^#define UV_OS390_SYSCALL_H_$/;" d +UV_OVERLAPPED_PIPE third_party/libuv/include/uv.h /^ UV_OVERLAPPED_PIPE = 0x40 \/* old name, for compatibility *\/$/;" e enum:__anon4de24c231003 +UV_PIPE_NO_TRUNCATE third_party/libuv/include/uv.h /^ UV_PIPE_NO_TRUNCATE = 1u << 0$/;" e enum:__anon4de24c230f03 +UV_PIPE_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_PIPE_PRIVATE_FIELDS /;" d +UV_PIPE_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_PIPE_PRIVATE_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/aix.h /^#define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/bsd.h /^#define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/darwin.h /^#define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/linux.h /^#define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/os390.h /^#define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/sunos.h /^# define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_FS_EVENT_FIELDS third_party/libuv/include/uv/unix.h /^# define UV_PLATFORM_FS_EVENT_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/aix.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/darwin.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/linux.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/os390.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/posix.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/sunos.h /^#define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_LOOP_FIELDS third_party/libuv/include/uv/unix.h /^# define UV_PLATFORM_LOOP_FIELDS /;" d +UV_PLATFORM_SEM_T third_party/libuv/include/uv/darwin.h /^# define UV_PLATFORM_SEM_T /;" d +UV_PLATFORM_SEM_T third_party/libuv/include/uv/os390.h /^#define UV_PLATFORM_SEM_T /;" d +UV_PLATFORM_SEM_T third_party/libuv/include/uv/unix.h /^# define UV_PLATFORM_SEM_T /;" d +UV_POLL_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_POLL_PRIVATE_FIELDS /;" d +UV_POLL_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_POLL_PRIVATE_FIELDS /;" d +UV_POSIX_H third_party/libuv/include/uv/posix.h /^#define UV_POSIX_H$/;" d +UV_PREPARE_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_PREPARE_PRIVATE_FIELDS$/;" d +UV_PREPARE_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_PREPARE_PRIVATE_FIELDS /;" d +UV_PREPARE_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_PREPARE_PRIVATE_FIELDS /;" d +UV_PRIORITIZED third_party/libuv/include/uv.h /^ UV_PRIORITIZED = 8$/;" e enum:uv_poll_event +UV_PRIORITY_ABOVE_NORMAL third_party/libuv/include/uv.h /^# define UV_PRIORITY_ABOVE_NORMAL /;" d +UV_PRIORITY_BELOW_NORMAL third_party/libuv/include/uv.h /^# define UV_PRIORITY_BELOW_NORMAL /;" d +UV_PRIORITY_HIGH third_party/libuv/include/uv.h /^# define UV_PRIORITY_HIGH /;" d +UV_PRIORITY_HIGHEST third_party/libuv/include/uv.h /^# define UV_PRIORITY_HIGHEST /;" d +UV_PRIORITY_LOW third_party/libuv/include/uv.h /^# define UV_PRIORITY_LOW /;" d +UV_PRIORITY_NORMAL third_party/libuv/include/uv.h /^# define UV_PRIORITY_NORMAL /;" d +UV_PRIVATE_REQ_TYPES third_party/libuv/include/uv/unix.h /^#define UV_PRIVATE_REQ_TYPES /;" d +UV_PRIVATE_REQ_TYPES third_party/libuv/include/uv/win.h /^#define UV_PRIVATE_REQ_TYPES /;" d +UV_PROCESS_DETACHED third_party/libuv/include/uv.h /^ UV_PROCESS_DETACHED = (1 << 3),$/;" e enum:uv_process_flags +UV_PROCESS_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_PROCESS_PRIVATE_FIELDS /;" d +UV_PROCESS_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_PROCESS_PRIVATE_FIELDS /;" d +UV_PROCESS_SETGID third_party/libuv/include/uv.h /^ UV_PROCESS_SETGID = (1 << 1),$/;" e enum:uv_process_flags +UV_PROCESS_SETUID third_party/libuv/include/uv.h /^ UV_PROCESS_SETUID = (1 << 0),$/;" e enum:uv_process_flags +UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME third_party/libuv/include/uv.h /^ UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME = (1 << 7)$/;" e enum:uv_process_flags +UV_PROCESS_WINDOWS_HIDE third_party/libuv/include/uv.h /^ UV_PROCESS_WINDOWS_HIDE = (1 << 4),$/;" e enum:uv_process_flags +UV_PROCESS_WINDOWS_HIDE_CONSOLE third_party/libuv/include/uv.h /^ UV_PROCESS_WINDOWS_HIDE_CONSOLE = (1 << 5),$/;" e enum:uv_process_flags +UV_PROCESS_WINDOWS_HIDE_GUI third_party/libuv/include/uv.h /^ UV_PROCESS_WINDOWS_HIDE_GUI = (1 << 6),$/;" e enum:uv_process_flags +UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS third_party/libuv/include/uv.h /^ UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS = (1 << 2),$/;" e enum:uv_process_flags +UV_PTHREAD_MAX_NAMELEN_NP third_party/libuv/src/uv-common.h /^# define UV_PTHREAD_MAX_NAMELEN_NP /;" d +UV_READABLE third_party/libuv/include/uv.h /^ UV_READABLE = 1,$/;" e enum:uv_poll_event +UV_READABLE_PIPE third_party/libuv/include/uv.h /^ UV_READABLE_PIPE = 0x10,$/;" e enum:__anon4de24c231003 +UV_RENAME third_party/libuv/include/uv.h /^ UV_RENAME = 1,$/;" e enum:uv_fs_event +UV_REQ_FIELDS third_party/libuv/include/uv.h /^#define UV_REQ_FIELDS /;" d +UV_REQ_INIT third_party/libuv/src/uv-common.h /^# define UV_REQ_INIT(/;" d +UV_REQ_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_REQ_PRIVATE_FIELDS$/;" d +UV_REQ_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_REQ_PRIVATE_FIELDS /;" d +UV_REQ_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_REQ_PRIVATE_FIELDS /;" d +UV_REQ_TYPE_MAP third_party/libuv/include/uv.h /^ UV_REQ_TYPE_MAP(XX)$/;" e enum:__anon4de24c230303 +UV_REQ_TYPE_MAP third_party/libuv/include/uv.h /^#define UV_REQ_TYPE_MAP(/;" d +UV_REQ_TYPE_PRIVATE third_party/libuv/include/uv.h /^#undef UV_REQ_TYPE_PRIVATE$/;" d +UV_REQ_TYPE_PRIVATE third_party/libuv/include/uv/unix.h /^#define UV_REQ_TYPE_PRIVATE /;" d +UV_REQ_TYPE_PRIVATE third_party/libuv/include/uv/win.h /^#define UV_REQ_TYPE_PRIVATE /;" d +UV_RUN_DEFAULT third_party/libuv/include/uv.h /^ UV_RUN_DEFAULT = 0,$/;" e enum:__anon4de24c230503 +UV_RUN_NOWAIT third_party/libuv/include/uv.h /^ UV_RUN_NOWAIT$/;" e enum:__anon4de24c230503 +UV_RUN_ONCE third_party/libuv/include/uv.h /^ UV_RUN_ONCE,$/;" e enum:__anon4de24c230503 +UV_SHUTDOWN_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_SHUTDOWN_PRIVATE_FIELDS /;" d +UV_SHUTDOWN_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_SHUTDOWN_PRIVATE_FIELDS /;" d +UV_SIGNAL_ONE_SHOT third_party/libuv/src/uv-common.h /^ UV_SIGNAL_ONE_SHOT = 0x02000000,$/;" e enum:__anond4b2857d0103 +UV_SIGNAL_ONE_SHOT_DISPATCHED third_party/libuv/src/uv-common.h /^ UV_SIGNAL_ONE_SHOT_DISPATCHED = 0x01000000,$/;" e enum:__anond4b2857d0103 +UV_SIGNAL_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_SIGNAL_PRIVATE_FIELDS$/;" d +UV_SIGNAL_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_SIGNAL_PRIVATE_FIELDS /;" d +UV_SIGNAL_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_SIGNAL_PRIVATE_FIELDS /;" d +UV_SRC_HEAP_H_ third_party/libuv/src/heap-inl.h /^#define UV_SRC_HEAP_H_$/;" d +UV_SRC_IDNA_H_ third_party/libuv/src/idna.h /^#define UV_SRC_IDNA_H_$/;" d +UV_STREAM_FIELDS third_party/libuv/include/uv.h /^#define UV_STREAM_FIELDS /;" d +UV_STREAM_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_STREAM_PRIVATE_FIELDS$/;" d +UV_STREAM_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_STREAM_PRIVATE_FIELDS /;" d +UV_STREAM_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_STREAM_PRIVATE_FIELDS /;" d +UV_STREAM_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv/darwin.h /^#define UV_STREAM_PRIVATE_PLATFORM_FIELDS /;" d +UV_STREAM_PRIVATE_PLATFORM_FIELDS third_party/libuv/include/uv/unix.h /^# define UV_STREAM_PRIVATE_PLATFORM_FIELDS /;" d +UV_STRSCPY_H_ third_party/libuv/src/strscpy.h /^#define UV_STRSCPY_H_$/;" d +UV_STRTOK_H_ third_party/libuv/src/strtok.h /^#define UV_STRTOK_H_$/;" d +UV_SUCCEEDED_WITHOUT_IOCP third_party/libuv/src/win/req-inl.h /^#define UV_SUCCEEDED_WITHOUT_IOCP(/;" d +UV_SUCCEEDED_WITH_IOCP third_party/libuv/src/win/req-inl.h /^#define UV_SUCCEEDED_WITH_IOCP(/;" d +UV_SUNOS_H third_party/libuv/include/uv/sunos.h /^#define UV_SUNOS_H$/;" d +UV_TCP_IPV6ONLY third_party/libuv/include/uv.h /^ UV_TCP_IPV6ONLY = 1,$/;" e enum:uv_tcp_flags +UV_TCP_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_TCP_PRIVATE_FIELDS$/;" d +UV_TCP_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_TCP_PRIVATE_FIELDS /;" d +UV_TCP_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_TCP_PRIVATE_FIELDS /;" d +UV_TCP_REUSEPORT third_party/libuv/include/uv.h /^ UV_TCP_REUSEPORT = 2,$/;" e enum:uv_tcp_flags +UV_THREADPOOL_H_ third_party/libuv/include/uv/threadpool.h /^#define UV_THREADPOOL_H_$/;" d +UV_THREAD_HAS_STACK_SIZE third_party/libuv/include/uv.h /^ UV_THREAD_HAS_STACK_SIZE = 0x01$/;" e enum:__anon4de24c231803 +UV_THREAD_LOCAL third_party/libuv/src/win/internal.h /^# define UV_THREAD_LOCAL /;" d +UV_THREAD_NO_FLAGS third_party/libuv/include/uv.h /^ UV_THREAD_NO_FLAGS = 0x00,$/;" e enum:__anon4de24c231803 +UV_THREAD_PRIORITY_ABOVE_NORMAL third_party/libuv/include/uv.h /^ UV_THREAD_PRIORITY_ABOVE_NORMAL = 1,$/;" e enum:__anon4de24c231603 +UV_THREAD_PRIORITY_BELOW_NORMAL third_party/libuv/include/uv.h /^ UV_THREAD_PRIORITY_BELOW_NORMAL = -1,$/;" e enum:__anon4de24c231603 +UV_THREAD_PRIORITY_HIGHEST third_party/libuv/include/uv.h /^ UV_THREAD_PRIORITY_HIGHEST = 2,$/;" e enum:__anon4de24c231603 +UV_THREAD_PRIORITY_LOWEST third_party/libuv/include/uv.h /^ UV_THREAD_PRIORITY_LOWEST = -2,$/;" e enum:__anon4de24c231603 +UV_THREAD_PRIORITY_NORMAL third_party/libuv/include/uv.h /^ UV_THREAD_PRIORITY_NORMAL = 0,$/;" e enum:__anon4de24c231603 +UV_TIMER_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_TIMER_PRIVATE_FIELDS$/;" d +UV_TIMER_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_TIMER_PRIVATE_FIELDS /;" d +UV_TIMER_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_TIMER_PRIVATE_FIELDS /;" d +UV_TREE_H_ third_party/libuv/include/uv/tree.h /^#define UV_TREE_H_$/;" d +UV_TTY_MODE_IO third_party/libuv/include/uv.h /^ UV_TTY_MODE_IO,$/;" e enum:__anon4de24c230d03 +UV_TTY_MODE_NORMAL third_party/libuv/include/uv.h /^ UV_TTY_MODE_NORMAL,$/;" e enum:__anon4de24c230d03 +UV_TTY_MODE_RAW third_party/libuv/include/uv.h /^ UV_TTY_MODE_RAW,$/;" e enum:__anon4de24c230d03 +UV_TTY_MODE_RAW_VT third_party/libuv/include/uv.h /^ UV_TTY_MODE_RAW_VT$/;" e enum:__anon4de24c230d03 +UV_TTY_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_TTY_PRIVATE_FIELDS /;" d +UV_TTY_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_TTY_PRIVATE_FIELDS /;" d +UV_TTY_SUPPORTED third_party/libuv/include/uv.h /^ UV_TTY_SUPPORTED,$/;" e enum:__anon4de24c230e03 +UV_TTY_UNSUPPORTED third_party/libuv/include/uv.h /^ UV_TTY_UNSUPPORTED$/;" e enum:__anon4de24c230e03 +UV_UDP_IPV6ONLY third_party/libuv/include/uv.h /^ UV_UDP_IPV6ONLY = 1,$/;" e enum:uv_udp_flags +UV_UDP_LINUX_RECVERR third_party/libuv/include/uv.h /^ UV_UDP_LINUX_RECVERR = 32,$/;" e enum:uv_udp_flags +UV_UDP_MMSG_CHUNK third_party/libuv/include/uv.h /^ UV_UDP_MMSG_CHUNK = 8,$/;" e enum:uv_udp_flags +UV_UDP_MMSG_FREE third_party/libuv/include/uv.h /^ UV_UDP_MMSG_FREE = 16,$/;" e enum:uv_udp_flags +UV_UDP_PARTIAL third_party/libuv/include/uv.h /^ UV_UDP_PARTIAL = 2,$/;" e enum:uv_udp_flags +UV_UDP_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_UDP_PRIVATE_FIELDS /;" d +UV_UDP_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_UDP_PRIVATE_FIELDS /;" d +UV_UDP_RECVMMSG third_party/libuv/include/uv.h /^ UV_UDP_RECVMMSG = 256$/;" e enum:uv_udp_flags +UV_UDP_REUSEADDR third_party/libuv/include/uv.h /^ UV_UDP_REUSEADDR = 4,$/;" e enum:uv_udp_flags +UV_UDP_REUSEPORT third_party/libuv/include/uv.h /^ UV_UDP_REUSEPORT = 64,$/;" e enum:uv_udp_flags +UV_UDP_SEND_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_UDP_SEND_PRIVATE_FIELDS /;" d +UV_UDP_SEND_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_UDP_SEND_PRIVATE_FIELDS /;" d +UV_UNIX_H third_party/libuv/include/uv/unix.h /^#define UV_UNIX_H$/;" d +UV_UNIX_INTERNAL_H_ third_party/libuv/src/unix/internal.h /^#define UV_UNIX_INTERNAL_H_$/;" d +UV_UNKNOWN_HANDLE third_party/libuv/include/uv.h /^ UV_UNKNOWN_HANDLE = 0,$/;" e enum:__anon4de24c230203 +UV_UNKNOWN_REQ third_party/libuv/include/uv.h /^ UV_UNKNOWN_REQ = 0,$/;" e enum:__anon4de24c230303 +UV_UNUSED third_party/libuv/src/unix/internal.h /^# define UV_UNUSED(/;" d +UV_UNUSED third_party/libuv/src/unix/internal.h /^UV_UNUSED(static char* uv__basename_r(const char* path)) {$/;" f +UV_UNUSED third_party/libuv/src/unix/internal.h /^UV_UNUSED(static int uv__fstat(int fd, struct stat* s)) {$/;" f +UV_UNUSED third_party/libuv/src/unix/internal.h /^UV_UNUSED(static int uv__lstat(const char* path, struct stat* s)) {$/;" f +UV_UNUSED third_party/libuv/src/unix/internal.h /^UV_UNUSED(static int uv__stat(const char* path, struct stat* s)) {$/;" f +UV_UNUSED third_party/libuv/src/unix/internal.h /^UV_UNUSED(static void uv__update_time(uv_loop_t* loop)) {$/;" f +UV_VERSION_H third_party/libuv/include/uv/version.h /^#define UV_VERSION_H$/;" d +UV_VERSION_HEX third_party/libuv/include/uv/version.h /^#define UV_VERSION_HEX /;" d +UV_VERSION_IS_RELEASE third_party/libuv/include/uv/version.h /^#define UV_VERSION_IS_RELEASE /;" d +UV_VERSION_MAJOR third_party/libuv/include/uv/version.h /^#define UV_VERSION_MAJOR /;" d +UV_VERSION_MINOR third_party/libuv/include/uv/version.h /^#define UV_VERSION_MINOR /;" d +UV_VERSION_PATCH third_party/libuv/include/uv/version.h /^#define UV_VERSION_PATCH /;" d +UV_VERSION_SUFFIX third_party/libuv/include/uv/version.h /^#define UV_VERSION_SUFFIX /;" d +UV_WIN_ATOMICOPS_INL_H_ third_party/libuv/src/win/atomicops-inl.h /^#define UV_WIN_ATOMICOPS_INL_H_$/;" d +UV_WIN_FS_FD_HASH_INL_H_ third_party/libuv/src/win/fs-fd-hash-inl.h /^#define UV_WIN_FS_FD_HASH_INL_H_$/;" d +UV_WIN_HANDLE_INL_H_ third_party/libuv/src/win/handle-inl.h /^#define UV_WIN_HANDLE_INL_H_$/;" d +UV_WIN_INTERNAL_H_ third_party/libuv/src/win/internal.h /^#define UV_WIN_INTERNAL_H_$/;" d +UV_WIN_REQ_INL_H_ third_party/libuv/src/win/req-inl.h /^#define UV_WIN_REQ_INL_H_$/;" d +UV_WIN_STREAM_INL_H_ third_party/libuv/src/win/stream-inl.h /^#define UV_WIN_STREAM_INL_H_$/;" d +UV_WIN_WINAPI_H_ third_party/libuv/src/win/winapi.h /^#define UV_WIN_WINAPI_H_$/;" d +UV_WIN_WINSOCK_H_ third_party/libuv/src/win/winsock.h /^#define UV_WIN_WINSOCK_H_$/;" d +UV_WORK_PRIVATE_FIELDS third_party/libuv/include/uv.h /^#undef UV_WORK_PRIVATE_FIELDS$/;" d +UV_WORK_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_WORK_PRIVATE_FIELDS /;" d +UV_WORK_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_WORK_PRIVATE_FIELDS /;" d +UV_WRITABLE third_party/libuv/include/uv.h /^ UV_WRITABLE = 2,$/;" e enum:uv_poll_event +UV_WRITABLE_PIPE third_party/libuv/include/uv.h /^ UV_WRITABLE_PIPE = 0x20,$/;" e enum:__anon4de24c231003 +UV_WRITE_PRIVATE_FIELDS third_party/libuv/include/uv/unix.h /^#define UV_WRITE_PRIVATE_FIELDS /;" d +UV_WRITE_PRIVATE_FIELDS third_party/libuv/include/uv/win.h /^#define UV_WRITE_PRIVATE_FIELDS /;" d +UV__CPU_AFFINITY_SUPPORTED third_party/libuv/src/unix/internal.h /^#define UV__CPU_AFFINITY_SUPPORTED /;" d +UV__DT_BLOCK third_party/libuv/include/uv/unix.h /^# define UV__DT_BLOCK /;" d +UV__DT_BLOCK third_party/libuv/include/uv/win.h /^#define UV__DT_BLOCK /;" d +UV__DT_CHAR third_party/libuv/include/uv/unix.h /^# define UV__DT_CHAR /;" d +UV__DT_CHAR third_party/libuv/include/uv/win.h /^#define UV__DT_CHAR /;" d +UV__DT_DIR third_party/libuv/include/uv/unix.h /^# define UV__DT_DIR /;" d +UV__DT_DIR third_party/libuv/include/uv/win.h /^#define UV__DT_DIR /;" d +UV__DT_FIFO third_party/libuv/include/uv/unix.h /^# define UV__DT_FIFO /;" d +UV__DT_FIFO third_party/libuv/include/uv/win.h /^#define UV__DT_FIFO /;" d +UV__DT_FILE third_party/libuv/include/uv/unix.h /^# define UV__DT_FILE /;" d +UV__DT_FILE third_party/libuv/include/uv/win.h /^#define UV__DT_FILE /;" d +UV__DT_LINK third_party/libuv/include/uv/unix.h /^# define UV__DT_LINK /;" d +UV__DT_LINK third_party/libuv/include/uv/win.h /^#define UV__DT_LINK /;" d +UV__DT_SOCKET third_party/libuv/include/uv/unix.h /^# define UV__DT_SOCKET /;" d +UV__DT_SOCKET third_party/libuv/include/uv/win.h /^#define UV__DT_SOCKET /;" d +UV__E2BIG third_party/libuv/include/uv/errno.h /^# define UV__E2BIG /;" d +UV__EACCES third_party/libuv/include/uv/errno.h /^# define UV__EACCES /;" d +UV__EADDRINUSE third_party/libuv/include/uv/errno.h /^# define UV__EADDRINUSE /;" d +UV__EADDRNOTAVAIL third_party/libuv/include/uv/errno.h /^# define UV__EADDRNOTAVAIL /;" d +UV__EAFNOSUPPORT third_party/libuv/include/uv/errno.h /^# define UV__EAFNOSUPPORT /;" d +UV__EAGAIN third_party/libuv/include/uv/errno.h /^# define UV__EAGAIN /;" d +UV__EAI_ADDRFAMILY third_party/libuv/include/uv/errno.h /^#define UV__EAI_ADDRFAMILY /;" d +UV__EAI_AGAIN third_party/libuv/include/uv/errno.h /^#define UV__EAI_AGAIN /;" d +UV__EAI_BADFLAGS third_party/libuv/include/uv/errno.h /^#define UV__EAI_BADFLAGS /;" d +UV__EAI_BADHINTS third_party/libuv/include/uv/errno.h /^#define UV__EAI_BADHINTS /;" d +UV__EAI_CANCELED third_party/libuv/include/uv/errno.h /^#define UV__EAI_CANCELED /;" d +UV__EAI_FAIL third_party/libuv/include/uv/errno.h /^#define UV__EAI_FAIL /;" d +UV__EAI_FAMILY third_party/libuv/include/uv/errno.h /^#define UV__EAI_FAMILY /;" d +UV__EAI_MEMORY third_party/libuv/include/uv/errno.h /^#define UV__EAI_MEMORY /;" d +UV__EAI_NODATA third_party/libuv/include/uv/errno.h /^#define UV__EAI_NODATA /;" d +UV__EAI_NONAME third_party/libuv/include/uv/errno.h /^#define UV__EAI_NONAME /;" d +UV__EAI_OVERFLOW third_party/libuv/include/uv/errno.h /^#define UV__EAI_OVERFLOW /;" d +UV__EAI_PROTOCOL third_party/libuv/include/uv/errno.h /^#define UV__EAI_PROTOCOL /;" d +UV__EAI_SERVICE third_party/libuv/include/uv/errno.h /^#define UV__EAI_SERVICE /;" d +UV__EAI_SOCKTYPE third_party/libuv/include/uv/errno.h /^#define UV__EAI_SOCKTYPE /;" d +UV__EALREADY third_party/libuv/include/uv/errno.h /^# define UV__EALREADY /;" d +UV__EBADF third_party/libuv/include/uv/errno.h /^# define UV__EBADF /;" d +UV__EBUSY third_party/libuv/include/uv/errno.h /^# define UV__EBUSY /;" d +UV__ECANCELED third_party/libuv/include/uv/errno.h /^# define UV__ECANCELED /;" d +UV__ECHARSET third_party/libuv/include/uv/errno.h /^# define UV__ECHARSET /;" d +UV__ECONNABORTED third_party/libuv/include/uv/errno.h /^# define UV__ECONNABORTED /;" d +UV__ECONNREFUSED third_party/libuv/include/uv/errno.h /^# define UV__ECONNREFUSED /;" d +UV__ECONNRESET third_party/libuv/include/uv/errno.h /^# define UV__ECONNRESET /;" d +UV__EDESTADDRREQ third_party/libuv/include/uv/errno.h /^# define UV__EDESTADDRREQ /;" d +UV__EEXIST third_party/libuv/include/uv/errno.h /^# define UV__EEXIST /;" d +UV__EFAULT third_party/libuv/include/uv/errno.h /^# define UV__EFAULT /;" d +UV__EFBIG third_party/libuv/include/uv/errno.h /^# define UV__EFBIG /;" d +UV__EFTYPE third_party/libuv/include/uv/errno.h /^# define UV__EFTYPE /;" d +UV__EHOSTDOWN third_party/libuv/include/uv/errno.h /^# define UV__EHOSTDOWN /;" d +UV__EHOSTUNREACH third_party/libuv/include/uv/errno.h /^# define UV__EHOSTUNREACH /;" d +UV__EILSEQ third_party/libuv/include/uv/errno.h /^# define UV__EILSEQ /;" d +UV__EINTR third_party/libuv/include/uv/errno.h /^# define UV__EINTR /;" d +UV__EINVAL third_party/libuv/include/uv/errno.h /^# define UV__EINVAL /;" d +UV__EIO third_party/libuv/include/uv/errno.h /^# define UV__EIO /;" d +UV__EISCONN third_party/libuv/include/uv/errno.h /^# define UV__EISCONN /;" d +UV__EISDIR third_party/libuv/include/uv/errno.h /^# define UV__EISDIR /;" d +UV__ELOOP third_party/libuv/include/uv/errno.h /^# define UV__ELOOP /;" d +UV__EMFILE third_party/libuv/include/uv/errno.h /^# define UV__EMFILE /;" d +UV__EMLINK third_party/libuv/include/uv/errno.h /^# define UV__EMLINK /;" d +UV__EMSGSIZE third_party/libuv/include/uv/errno.h /^# define UV__EMSGSIZE /;" d +UV__ENAMETOOLONG third_party/libuv/include/uv/errno.h /^# define UV__ENAMETOOLONG /;" d +UV__ENETDOWN third_party/libuv/include/uv/errno.h /^# define UV__ENETDOWN /;" d +UV__ENETUNREACH third_party/libuv/include/uv/errno.h /^# define UV__ENETUNREACH /;" d +UV__ENFILE third_party/libuv/include/uv/errno.h /^# define UV__ENFILE /;" d +UV__ENOBUFS third_party/libuv/include/uv/errno.h /^# define UV__ENOBUFS /;" d +UV__ENODATA third_party/libuv/include/uv/errno.h /^# define UV__ENODATA /;" d +UV__ENODEV third_party/libuv/include/uv/errno.h /^# define UV__ENODEV /;" d +UV__ENOENT third_party/libuv/include/uv/errno.h /^# define UV__ENOENT /;" d +UV__ENOEXEC third_party/libuv/include/uv/errno.h /^# define UV__ENOEXEC /;" d +UV__ENOMEM third_party/libuv/include/uv/errno.h /^# define UV__ENOMEM /;" d +UV__ENONET third_party/libuv/include/uv/errno.h /^# define UV__ENONET /;" d +UV__ENOPROTOOPT third_party/libuv/include/uv/errno.h /^# define UV__ENOPROTOOPT /;" d +UV__ENOSPC third_party/libuv/include/uv/errno.h /^# define UV__ENOSPC /;" d +UV__ENOSYS third_party/libuv/include/uv/errno.h /^# define UV__ENOSYS /;" d +UV__ENOTCONN third_party/libuv/include/uv/errno.h /^# define UV__ENOTCONN /;" d +UV__ENOTDIR third_party/libuv/include/uv/errno.h /^# define UV__ENOTDIR /;" d +UV__ENOTEMPTY third_party/libuv/include/uv/errno.h /^# define UV__ENOTEMPTY /;" d +UV__ENOTSOCK third_party/libuv/include/uv/errno.h /^# define UV__ENOTSOCK /;" d +UV__ENOTSUP third_party/libuv/include/uv/errno.h /^# define UV__ENOTSUP /;" d +UV__ENOTTY third_party/libuv/include/uv/errno.h /^# define UV__ENOTTY /;" d +UV__ENXIO third_party/libuv/include/uv/errno.h /^# define UV__ENXIO /;" d +UV__EOF third_party/libuv/include/uv/errno.h /^#define UV__EOF /;" d +UV__EOVERFLOW third_party/libuv/include/uv/errno.h /^# define UV__EOVERFLOW /;" d +UV__EPERM third_party/libuv/include/uv/errno.h /^# define UV__EPERM /;" d +UV__EPIPE third_party/libuv/include/uv/errno.h /^# define UV__EPIPE /;" d +UV__EPROTO third_party/libuv/include/uv/errno.h /^# define UV__EPROTO /;" d +UV__EPROTONOSUPPORT third_party/libuv/include/uv/errno.h /^# define UV__EPROTONOSUPPORT /;" d +UV__EPROTOTYPE third_party/libuv/include/uv/errno.h /^# define UV__EPROTOTYPE /;" d +UV__ERANGE third_party/libuv/include/uv/errno.h /^# define UV__ERANGE /;" d +UV__EREMOTEIO third_party/libuv/include/uv/errno.h /^# define UV__EREMOTEIO /;" d +UV__EROFS third_party/libuv/include/uv/errno.h /^# define UV__EROFS /;" d +UV__ERR third_party/libuv/include/uv.h /^#undef UV__ERR$/;" d +UV__ERR third_party/libuv/include/uv/errno.h /^# define UV__ERR(/;" d +UV__ERR third_party/libuv/src/uv-common.h /^# define UV__ERR(/;" d +UV__ESHUTDOWN third_party/libuv/include/uv/errno.h /^# define UV__ESHUTDOWN /;" d +UV__ESOCKTNOSUPPORT third_party/libuv/include/uv/errno.h /^# define UV__ESOCKTNOSUPPORT /;" d +UV__ESPIPE third_party/libuv/include/uv/errno.h /^# define UV__ESPIPE /;" d +UV__ESRCH third_party/libuv/include/uv/errno.h /^# define UV__ESRCH /;" d +UV__ETIMEDOUT third_party/libuv/include/uv/errno.h /^# define UV__ETIMEDOUT /;" d +UV__ETXTBSY third_party/libuv/include/uv/errno.h /^# define UV__ETXTBSY /;" d +UV__EUNATCH third_party/libuv/include/uv/errno.h /^# define UV__EUNATCH /;" d +UV__EXCLUDE_IFADDR third_party/libuv/src/unix/internal.h /^ UV__EXCLUDE_IFADDR$/;" e enum:__anona662544c0203 +UV__EXCLUDE_IFPHYS third_party/libuv/src/unix/internal.h /^ UV__EXCLUDE_IFPHYS,$/;" e enum:__anona662544c0203 +UV__EXDEV third_party/libuv/include/uv/errno.h /^# define UV__EXDEV /;" d +UV__FD_HASH_GROUP_SIZE third_party/libuv/src/win/fs-fd-hash-inl.h /^#define UV__FD_HASH_GROUP_SIZE /;" d +UV__FD_HASH_SIZE third_party/libuv/src/win/fs-fd-hash-inl.h /^#define UV__FD_HASH_SIZE /;" d +UV__IPC_SOCKET_XFER_NONE third_party/libuv/src/win/internal.h /^ UV__IPC_SOCKET_XFER_NONE = 0,$/;" e enum:__anondc6407360103 +UV__IPC_SOCKET_XFER_TCP_CONNECTION third_party/libuv/src/win/internal.h /^ UV__IPC_SOCKET_XFER_TCP_CONNECTION,$/;" e enum:__anondc6407360103 +UV__IPC_SOCKET_XFER_TCP_SERVER third_party/libuv/src/win/internal.h /^ UV__IPC_SOCKET_XFER_TCP_SERVER$/;" e enum:__anondc6407360103 +UV__KQUEUE_EVFILT_USER third_party/libuv/src/unix/internal.h /^#define UV__KQUEUE_EVFILT_USER /;" d +UV__KQUEUE_EVFILT_USER_IDENT third_party/libuv/src/unix/internal.h /^#define UV__KQUEUE_EVFILT_USER_IDENT /;" d +UV__NONBLOCK_IS_IOCTL third_party/libuv/src/unix/internal.h /^#define UV__NONBLOCK_IS_IOCTL /;" d +UV__O_CLOEXEC third_party/libuv/src/unix/os390-syscalls.h /^#define UV__O_CLOEXEC /;" d +UV__PATH_MAX third_party/libuv/src/unix/internal.h /^# define UV__PATH_MAX /;" d +UV__POLLPRI third_party/libuv/src/unix/internal.h /^# define UV__POLLPRI /;" d +UV__POLLRDHUP third_party/libuv/src/unix/internal.h /^# define UV__POLLRDHUP /;" d +UV__SOLARIS_11_4 third_party/libuv/src/unix/internal.h /^#define UV__SOLARIS_11_4 /;" d +UV__UDP_DGRAM_MAXSIZE third_party/libuv/src/uv-common.h /^#define UV__UDP_DGRAM_MAXSIZE /;" d +UV__UNKNOWN third_party/libuv/include/uv/errno.h /^#define UV__UNKNOWN /;" d +UV__UNUSED third_party/libuv/include/uv/tree.h /^# define UV__UNUSED /;" d +UV__UNUSED third_party/libuv/include/uv/tree.h /^# define UV__UNUSED$/;" d +UV__WORK_CPU third_party/libuv/src/uv-common.h /^ UV__WORK_CPU,$/;" e enum:uv__work_kind +UV__WORK_FAST_IO third_party/libuv/src/uv-common.h /^ UV__WORK_FAST_IO,$/;" e enum:uv__work_kind +UV__WORK_SLOW_IO third_party/libuv/src/uv-common.h /^ UV__WORK_SLOW_IO$/;" e enum:uv__work_kind +UniqueProcessId third_party/libuv/src/win/winapi.h /^ ULONG_PTR UniqueProcessId;$/;" m struct:_PROCESS_BASIC_INFORMATION typeref:typename:ULONG_PTR UnloadAudioStream third_party/raylib/include/raylib.h /^RLAPI void UnloadAudioStream(AudioStream stream); \/\/ Unload audio stream a/;" p typeref:typename:RLAPI void UnloadAudioStream third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void UnloadAudioStream(AudioStream stream); \/\/ Unload audio stream a/;" p typeref:typename:RLAPI void UnloadAudioStream third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void UnloadAudioStream(AudioStream stream); \/\/ Unload audio stream a/;" p typeref:typename:RLAPI void @@ -6481,6 +8688,7 @@ UploadMesh third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void UploadMesh(Mesh *mesh, bool dynamic); \/\//;" p typeref:typename:RLAPI void UploadMesh third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void UploadMesh(Mesh *mesh, bool dynamic); \/\//;" p typeref:typename:RLAPI void UploadMesh third_party/raylib/raylib-5.5_win64/include/raylib.h /^RLAPI void UploadMesh(Mesh *mesh, bool dynamic); \/\//;" p typeref:typename:RLAPI void +UserTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER UserTime;$/;" m struct:_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION typeref:typename:LARGE_INTEGER VALUEBOX third_party/raylib/include/raygui.h /^ VALUEBOX,$/;" e enum:__anonbfe71a2a0603 VIOLET third_party/raylib/include/raylib.h /^#define VIOLET /;" d VIOLET third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define VIOLET /;" d @@ -6966,6 +9174,13 @@ Vector4Zeros third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^static constexpr Vector4 Vector4Zeros = { 0, 0, 0, 0 };$/;" v typeref:typename:constexpr Vector4 Vector4Zeros third_party/raylib/raylib-5.5_macos/include/raymath.h /^static constexpr Vector4 Vector4Zeros = { 0, 0, 0, 0 };$/;" v typeref:typename:constexpr Vector4 Vector4Zeros third_party/raylib/raylib-5.5_win64/include/raymath.h /^static constexpr Vector4 Vector4Zeros = { 0, 0, 0, 0 };$/;" v typeref:typename:constexpr Vector4 +VolumeCreationTime third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER VolumeCreationTime;$/;" m struct:_FILE_FS_VOLUME_INFORMATION typeref:typename:LARGE_INTEGER +VolumeLabel third_party/libuv/src/win/winapi.h /^ WCHAR VolumeLabel[1];$/;" m struct:_FILE_FS_VOLUME_INFORMATION typeref:typename:WCHAR[1] +VolumeLabel third_party/libuv/src/win/winapi.h /^ WCHAR VolumeLabel[1];$/;" m struct:_FILE_FS_LABEL_INFORMATION typeref:typename:WCHAR[1] +VolumeLabelLength third_party/libuv/src/win/winapi.h /^ ULONG VolumeLabelLength;$/;" m struct:_FILE_FS_VOLUME_INFORMATION typeref:typename:ULONG +VolumeLabelLength third_party/libuv/src/win/winapi.h /^ ULONG VolumeLabelLength;$/;" m struct:_FILE_FS_LABEL_INFORMATION typeref:typename:ULONG +VolumeSerialNumber third_party/libuv/src/win/winapi.h /^ LARGE_INTEGER VolumeSerialNumber;$/;" m struct:_FILE_STAT_BASIC_INFORMATION typeref:typename:LARGE_INTEGER +VolumeSerialNumber third_party/libuv/src/win/winapi.h /^ ULONG VolumeSerialNumber;$/;" m struct:_FILE_FS_VOLUME_INFORMATION typeref:typename:ULONG VrDeviceInfo third_party/raylib/include/raylib.h /^typedef struct VrDeviceInfo {$/;" s VrDeviceInfo third_party/raylib/include/raylib.h /^} VrDeviceInfo;$/;" t typeref:struct:VrDeviceInfo VrDeviceInfo third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^typedef struct VrDeviceInfo {$/;" s @@ -6986,10 +9201,17 @@ WHITE third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define WHITE /;" d WHITE third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define WHITE /;" d WHITE third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define WHITE /;" d +WINEVENTPROC third_party/libuv/src/win/winapi.h /^typedef VOID (CALLBACK* WINEVENTPROC)$/;" t typeref:typename:VOID (CALLBACK *)(HWINEVENTHOOK hWinEventHook,DWORD event,HWND hwnd,LONG idObject,LONG idChild,DWORD idEventThread,DWORD dwmsEventTime) WINGDIAPI third_party/raylib/include/rlgl.h /^ #define WINGDIAPI /;" d WINGDIAPI third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #define WINGDIAPI /;" d WINGDIAPI third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ #define WINGDIAPI /;" d WINGDIAPI third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ #define WINGDIAPI /;" d +WSAID_ACCEPTEX third_party/libuv/include/uv/win.h /^# define WSAID_ACCEPTEX /;" d +WSAID_CONNECTEX third_party/libuv/include/uv/win.h /^# define WSAID_CONNECTEX /;" d +WSAID_DISCONNECTEX third_party/libuv/include/uv/win.h /^# define WSAID_DISCONNECTEX /;" d +WSAID_GETACCEPTEXSOCKADDRS third_party/libuv/include/uv/win.h /^# define WSAID_GETACCEPTEXSOCKADDRS /;" d +WSAID_TRANSMITFILE third_party/libuv/include/uv/win.h /^# define WSAID_TRANSMITFILE /;" d +W_OK third_party/libuv/include/uv/win.h /^#define W_OK /;" d WaitTime third_party/raylib/include/raylib.h /^RLAPI void WaitTime(double seconds); \/\/ Wait for some time (halt /;" p typeref:typename:RLAPI void WaitTime third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^RLAPI void WaitTime(double seconds); \/\/ Wait for some time (halt /;" p typeref:typename:RLAPI void WaitTime third_party/raylib/raylib-5.5_macos/include/raylib.h /^RLAPI void WaitTime(double seconds); \/\/ Wait for some time (halt /;" p typeref:typename:RLAPI void @@ -7023,11 +9245,72 @@ Wrap third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^RMAPI float Wrap(float value, float min, float max)$/;" f typeref:typename:RMAPI float Wrap third_party/raylib/raylib-5.5_macos/include/raymath.h /^RMAPI float Wrap(float value, float min, float max)$/;" f typeref:typename:RMAPI float Wrap third_party/raylib/raylib-5.5_win64/include/raymath.h /^RMAPI float Wrap(float value, float min, float max)$/;" f typeref:typename:RMAPI float +WriteQuotaAvailable third_party/libuv/src/win/winapi.h /^ ULONG WriteQuotaAvailable;$/;" m struct:_FILE_PIPE_LOCAL_INFORMATION typeref:typename:ULONG +XX third_party/libuv/include/uv.h /^#define XX(/;" d +XX third_party/libuv/include/uv.h /^#undef XX$/;" d +X_OK third_party/libuv/include/uv/win.h /^#define X_OK /;" d YELLOW third_party/raylib/include/raylib.h /^#define YELLOW /;" d YELLOW third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#define YELLOW /;" d YELLOW third_party/raylib/raylib-5.5_macos/include/raylib.h /^#define YELLOW /;" d YELLOW third_party/raylib/raylib-5.5_win64/include/raylib.h /^#define YELLOW /;" d +_AFD_CONTROL_CODE third_party/libuv/src/win/winsock.h /^#define _AFD_CONTROL_CODE(/;" d +_AFD_POLL_HANDLE_INFO third_party/libuv/include/uv/win.h /^typedef struct _AFD_POLL_HANDLE_INFO {$/;" s +_AFD_POLL_INFO third_party/libuv/include/uv/win.h /^typedef struct _AFD_POLL_INFO {$/;" s +_AFD_RECV_DATAGRAM_INFO third_party/libuv/src/win/winsock.h /^typedef struct _AFD_RECV_DATAGRAM_INFO {$/;" s +_AFD_RECV_INFO third_party/libuv/src/win/winsock.h /^typedef struct _AFD_RECV_INFO {$/;" s _CRT_SECURE_NO_WARNINGS dowa/stb_ds.h /^#define _CRT_SECURE_NO_WARNINGS$/;" d +_DEVICE_NOTIFY_CALLBACK_ROUTINE third_party/libuv/src/win/winapi.h /^typedef ULONG CALLBACK _DEVICE_NOTIFY_CALLBACK_ROUTINE($/;" t typeref:typename:ULONG CALLBACK ()(PVOID Context,ULONG Type,PVOID Setting) +_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS third_party/libuv/src/win/winapi.h /^typedef struct _DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS {$/;" s +_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS third_party/libuv/src/win/winapi.h /^} _DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS, *_PDEVICE_NOTIFY_SUBSCRIBE_PARAMETERS;$/;" t typeref:struct:_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS +_FILE_ACCESS_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_ACCESS_INFORMATION {$/;" s +_FILE_ALIGNMENT_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_ALIGNMENT_INFORMATION {$/;" s +_FILE_ALL_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_ALL_INFORMATION {$/;" s +_FILE_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_BASIC_INFORMATION {$/;" s +_FILE_BOTH_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_BOTH_DIR_INFORMATION {$/;" s +_FILE_DIRECTORY_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_DIRECTORY_INFORMATION {$/;" s +_FILE_DISPOSITION_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_DISPOSITION_INFORMATION {$/;" s +_FILE_DISPOSITION_INFORMATION_EX third_party/libuv/src/win/winapi.h /^typedef struct _FILE_DISPOSITION_INFORMATION_EX {$/;" s +_FILE_EA_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_EA_INFORMATION {$/;" s +_FILE_END_OF_FILE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_END_OF_FILE_INFORMATION {$/;" s +_FILE_FS_ATTRIBUTE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_ATTRIBUTE_INFORMATION {$/;" s +_FILE_FS_CONTROL_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_CONTROL_INFORMATION {$/;" s +_FILE_FS_DEVICE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_DEVICE_INFORMATION {$/;" s +_FILE_FS_DRIVER_PATH_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_DRIVER_PATH_INFORMATION {$/;" s +_FILE_FS_FULL_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_FULL_SIZE_INFORMATION {$/;" s +_FILE_FS_LABEL_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_LABEL_INFORMATION {$/;" s +_FILE_FS_OBJECTID_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_OBJECTID_INFORMATION {$/;" s +_FILE_FS_SECTOR_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_SECTOR_SIZE_INFORMATION {$/;" s +_FILE_FS_SIZE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_SIZE_INFORMATION {$/;" s +_FILE_FS_VOLUME_FLAGS_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_VOLUME_FLAGS_INFORMATION {$/;" s +_FILE_FS_VOLUME_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_FS_VOLUME_INFORMATION {$/;" s +_FILE_ID_FULL_DIR_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_ID_FULL_DIR_INFORMATION {$/;" s +_FILE_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^typedef enum _FILE_INFORMATION_CLASS {$/;" g +_FILE_INFO_BY_NAME_CLASS third_party/libuv/src/win/winapi.h /^typedef enum _FILE_INFO_BY_NAME_CLASS {$/;" g +_FILE_INTERNAL_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_INTERNAL_INFORMATION {$/;" s +_FILE_MODE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_MODE_INFORMATION {$/;" s +_FILE_NAME_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_NAME_INFORMATION {$/;" s +_FILE_PIPE_LOCAL_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_PIPE_LOCAL_INFORMATION {$/;" s +_FILE_POSITION_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_POSITION_INFORMATION {$/;" s +_FILE_STANDARD_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_STANDARD_INFORMATION {$/;" s +_FILE_STAT_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _FILE_STAT_BASIC_INFORMATION {$/;" s +_FS_INFORMATION_CLASS third_party/libuv/src/win/winapi.h /^typedef enum _FS_INFORMATION_CLASS {$/;" g +_HPOWERNOTIFY third_party/libuv/src/win/winapi.h /^typedef PVOID _HPOWERNOTIFY;$/;" t typeref:typename:PVOID +_IO_STATUS_BLOCK third_party/libuv/src/win/winapi.h /^typedef struct _IO_STATUS_BLOCK {$/;" s +_PDEVICE_NOTIFY_CALLBACK_ROUTINE third_party/libuv/src/win/winapi.h /^typedef _DEVICE_NOTIFY_CALLBACK_ROUTINE* _PDEVICE_NOTIFY_CALLBACK_ROUTINE;$/;" t typeref:typename:_DEVICE_NOTIFY_CALLBACK_ROUTINE * +_PDEVICE_NOTIFY_SUBSCRIBE_PARAMETERS third_party/libuv/src/win/winapi.h /^} _DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS, *_PDEVICE_NOTIFY_SUBSCRIBE_PARAMETERS;$/;" t typeref:struct:_DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS * +_PHPOWERNOTIFY third_party/libuv/src/win/winapi.h /^typedef _HPOWERNOTIFY *_PHPOWERNOTIFY;$/;" t typeref:typename:_HPOWERNOTIFY * +_PROCESS_BASIC_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _PROCESS_BASIC_INFORMATION {$/;" s +_REPARSE_DATA_BUFFER third_party/libuv/src/win/winapi.h /^typedef struct _REPARSE_DATA_BUFFER {$/;" s +_SSIZE_T_ third_party/libuv/include/uv/win.h /^# define _SSIZE_T_$/;" d +_SSIZE_T_DEFINED third_party/libuv/include/uv/win.h /^# define _SSIZE_T_DEFINED$/;" d +_SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION third_party/libuv/src/win/winapi.h /^typedef struct _SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION {$/;" s +_TCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#define _TCP_INITIAL_RTO_PARAMETERS _TCP_INITIAL_RTO_PARAMETERS_/;" d +_TCP_INITIAL_RTO_PARAMETERS third_party/libuv/include/uv/win.h /^#undef _TCP_INITIAL_RTO_PARAMETERS$/;" d +_TCP_INITIAL_RTO_PARAMETERS third_party/libuv/src/win/winapi.h /^typedef struct _TCP_INITIAL_RTO_PARAMETERS {$/;" s +_UNICODE_STRING third_party/libuv/src/win/winapi.h /^typedef struct _UNICODE_STRING {$/;" s +_WIN32_WINNT third_party/libuv/include/uv/win.h /^# define _WIN32_WINNT /;" d +__SANITIZE_THREAD__ third_party/libuv/src/unix/internal.h /^# define __SANITIZE_THREAD__ /;" d +__UNICODE_STRING_DEFINED third_party/libuv/src/win/winapi.h /^#define __UNICODE_STRING_DEFINED$/;" d __anon0cdf4ceb0103 third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" g __anon0cdf4ceb0103 third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" t typeref:enum:bool __anon0cdf4ceb0203 third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^typedef enum {$/;" g @@ -7067,6 +9350,35 @@ __anon255619051403 third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef enum {$/;" g __anon255619051503 third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef enum {$/;" g __anon255619051603 third_party/raylib/raylib-5.5_macos/include/raylib.h /^typedef enum {$/;" g +__anon343b4fa90108 third_party/libuv/test/runner-win.h /^typedef struct {$/;" s +__anon4de24c230103 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230203 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230303 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230403 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230503 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230603 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230708 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c230808 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c230908 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c230a08 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c230b08 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c230c03 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230d03 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230e03 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c230f03 third_party/libuv/include/uv.h /^enum {$/;" g +__anon4de24c231003 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c23110a third_party/libuv/include/uv.h /^ union {$/;" u struct:uv_stdio_container_s +__anon4de24c23120a third_party/libuv/include/uv.h /^ union {$/;" u struct:uv_interface_address_s +__anon4de24c23130a third_party/libuv/include/uv.h /^ union {$/;" u struct:uv_interface_address_s +__anon4de24c231403 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c231508 third_party/libuv/include/uv.h /^typedef struct {$/;" s +__anon4de24c231603 third_party/libuv/include/uv.h /^enum {$/;" g +__anon4de24c231703 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c231803 third_party/libuv/include/uv.h /^typedef enum {$/;" g +__anon4de24c23190a third_party/libuv/include/uv.h /^ union {$/;" u struct:uv_loop_s +__anon53cf48870103 third_party/libuv/test/task.h /^typedef enum {$/;" g +__anon5825c6f60108 third_party/libuv/include/uv/unix.h /^typedef struct {$/;" s +__anon5825c6f60208 third_party/libuv/include/uv/unix.h /^typedef struct {$/;" s __anon7a4da8400103 seobeo/seobeo_internal.h /^typedef enum {$/;" g __anon7a4da8400208 seobeo/seobeo_internal.h /^typedef struct {$/;" s __anon7a4da8400308 seobeo/seobeo_internal.h /^typedef struct {$/;" s @@ -7090,6 +9402,12 @@ __anon82503da00308 dowa/dowa.h /^typedef struct {$/;" s __anon82503da00408 dowa/dowa.h /^typedef struct {$/;" s __anon82503da00508 dowa/dowa.h /^typedef struct {$/;" s +__anon941c3301010a third_party/libuv/src/win/winapi.h /^ union {$/;" u struct:_REPARSE_DATA_BUFFER +__anon941c33010208 third_party/libuv/src/win/winapi.h /^ struct {$/;" s union:_REPARSE_DATA_BUFFER::__anon941c3301010a +__anon941c33010308 third_party/libuv/src/win/winapi.h /^ struct {$/;" s union:_REPARSE_DATA_BUFFER::__anon941c3301010a +__anon941c33010408 third_party/libuv/src/win/winapi.h /^ struct {$/;" s union:_REPARSE_DATA_BUFFER::__anon941c3301010a +__anon941c33010508 third_party/libuv/src/win/winapi.h /^ struct {$/;" s union:_REPARSE_DATA_BUFFER::__anon941c3301010a +__anon941c3301060a third_party/libuv/src/win/winapi.h /^ union {$/;" u struct:_IO_STATUS_BLOCK __anon96c0c2130103 third_party/raylib/raylib-5.5_macos/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" g __anon96c0c2130103 third_party/raylib/raylib-5.5_macos/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" t typeref:enum:bool __anon96c0c2130203 third_party/raylib/raylib-5.5_macos/include/rlgl.h /^typedef enum {$/;" g @@ -7143,6 +9461,10 @@ __anon9e7796b80c03 third_party/raylib/raylib-5.5_win64/include/rlgl.h /^typedef enum {$/;" g __anon9e7796b80d08 third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ struct {$/;" s struct:rlglData __anon9e7796b80e08 third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ struct {$/;" s struct:rlglData +__anona47773ae0108 third_party/libuv/test/runner.h /^typedef struct {$/;" s +__anona662544c0103 third_party/libuv/src/unix/internal.h /^enum {$/;" g +__anona662544c0203 third_party/libuv/src/unix/internal.h /^enum {$/;" g +__anona662544c0303 third_party/libuv/src/unix/internal.h /^typedef enum {$/;" g __anonb66549aa0103 third_party/raylib/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" g __anonb66549aa0103 third_party/raylib/include/rlgl.h /^typedef enum bool { false = 0, true = !false } bool;$/;" t typeref:enum:bool __anonb66549aa0203 third_party/raylib/include/rlgl.h /^typedef enum {$/;" g @@ -7158,6 +9480,7 @@ __anonb66549aa0c03 third_party/raylib/include/rlgl.h /^typedef enum {$/;" g __anonb66549aa0d08 third_party/raylib/include/rlgl.h /^ struct {$/;" s struct:rlglData __anonb66549aa0e08 third_party/raylib/include/rlgl.h /^ struct {$/;" s struct:rlglData +__anonb753e3df0108 third_party/libuv/test/runner-unix.h /^typedef struct {$/;" s __anonbfe71a2a0103 third_party/raylib/include/raygui.h /^ typedef enum { false, true } bool;$/;" g __anonbfe71a2a0103 third_party/raylib/include/raygui.h /^ typedef enum { false, true } bool;$/;" t typeref:enum:bool __anonbfe71a2a0203 third_party/raylib/include/raygui.h /^typedef enum {$/;" g @@ -7207,6 +9530,15 @@ __anoncb6fd9740108 postdog/gui_window_file_dialog.h /^typedef struct {$/;" s __anonce31f2d80103 deita/deita.h /^{$/;" g __anonce31f2d80203 deita/deita.h /^{$/;" g +__anond441abe0010a third_party/libuv/include/uv/win.h /^typedef union {$/;" u +__anond441abe00208 third_party/libuv/include/uv/win.h /^ struct {$/;" s union:__anond441abe0010a +__anond441abe00308 third_party/libuv/include/uv/win.h /^typedef struct {$/;" s +__anond441abe00408 third_party/libuv/include/uv/win.h /^typedef struct {$/;" s +__anond441abe00508 third_party/libuv/include/uv/win.h /^typedef struct {$/;" s +__anond441abe00608 third_party/libuv/include/uv/win.h /^typedef struct {$/;" s +__anond4b2857d0103 third_party/libuv/src/uv-common.h /^enum {$/;" g +__anondc6407360103 third_party/libuv/src/win/internal.h /^typedef enum {$/;" g +__anondc6407360208 third_party/libuv/src/win/internal.h /^typedef struct {$/;" s __anonf614aaea0103 third_party/raylib/raylib-5.5_win64/include/raylib.h /^ typedef enum bool { false = 0, true = !false } bool;$/;" g __anonf614aaea0103 third_party/raylib/raylib-5.5_win64/include/raylib.h /^ typedef enum bool { false = 0, true = !false } bool;$/;" t typeref:enum:bool __anonf614aaea0203 third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef enum {$/;" g @@ -7230,10 +9562,12 @@ __anonf614aaea1403 third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef enum {$/;" g __anonf614aaea1503 third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef enum {$/;" g __anonf614aaea1603 third_party/raylib/raylib-5.5_win64/include/raylib.h /^typedef enum {$/;" g +__anonf6e20ee80108 third_party/libuv/src/unix/os390-syscalls.h /^typedef struct {$/;" s __declspec third_party/raylib/include/raylib.h /^ #define __declspec(/;" d __declspec third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ #define __declspec(/;" d __declspec third_party/raylib/raylib-5.5_macos/include/raylib.h /^ #define __declspec(/;" d __declspec third_party/raylib/raylib-5.5_win64/include/raylib.h /^ #define __declspec(/;" d +_uv_barrier third_party/libuv/include/uv/unix.h /^struct _uv_barrier {$/;" s a third_party/raylib/include/raygui.h /^ unsigned char a;$/;" m struct:Color typeref:typename:unsigned char a third_party/raylib/include/raylib.h /^ unsigned char a; \/\/ Color alpha value$/;" m struct:Color typeref:typename:unsigned char a third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned char a; \/\/ Color alpha value$/;" m struct:Color typeref:typename:unsigned char @@ -7243,11 +9577,18 @@ activeTextureId third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ unsigned int activeTextureId[RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS]; \/\/ Active texture/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:unsigned int[] activeTextureId third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ unsigned int activeTextureId[RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS]; \/\/ Active texture/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:unsigned int[] activeTextureId third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ unsigned int activeTextureId[RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS]; \/\/ Active texture/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:unsigned int[] +active_handles third_party/libuv/include/uv.h /^ unsigned int active_handles;$/;" m struct:uv_loop_s typeref:typename:unsigned int +active_reqs third_party/libuv/include/uv.h /^ } active_reqs;$/;" m struct:uv_loop_s typeref:union:uv_loop_s::__anon4de24c23190a +addr third_party/libuv/src/unix/internal.h /^ struct sockaddr addr;$/;" m union:uv__sockaddr typeref:struct:sockaddr +address third_party/libuv/include/uv.h /^ } address;$/;" m struct:uv_interface_address_s typeref:union:uv_interface_address_s::__anon4de24c23120a +address4 third_party/libuv/include/uv.h /^ struct sockaddr_in address4;$/;" m union:uv_interface_address_s::__anon4de24c23120a typeref:struct:sockaddr_in +address6 third_party/libuv/include/uv.h /^ struct sockaddr_in6 address6;$/;" m union:uv_interface_address_s::__anon4de24c23120a typeref:struct:sockaddr_in6 advanceX third_party/raylib/include/raygui.h /^ int advanceX; \/\/ Character advance position X$/;" m struct:GlyphInfo typeref:typename:int advanceX third_party/raylib/include/raylib.h /^ int advanceX; \/\/ Character advance position X$/;" m struct:GlyphInfo typeref:typename:int advanceX third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int advanceX; \/\/ Character advance position X$/;" m struct:GlyphInfo typeref:typename:int advanceX third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int advanceX; \/\/ Character advance position X$/;" m struct:GlyphInfo typeref:typename:int advanceX third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int advanceX; \/\/ Character advance position X$/;" m struct:GlyphInfo typeref:typename:int +after_work_cb third_party/libuv/include/uv.h /^ uv_after_work_cb after_work_cb;$/;" m struct:uv_work_s typeref:typename:uv_after_work_cb allocator_type dowa/dowa.h /^ uint8 allocator_type;$/;" m struct:__anon82503da00308 typeref:typename:uint8 allocator_type dowa/dowa.h /^ uint8 allocator_type;$/;" m struct:__anon82503da00508 typeref:typename:uint8 animNormals third_party/raylib/include/raylib.h /^ float *animNormals; \/\/ Animated normals (after bones transformations)$/;" m struct:Mesh typeref:typename:float * @@ -7258,7 +9599,9 @@ animVertices third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float *animVertices; \/\/ Animated vertex positions (after bones transformations)$/;" m struct:Mesh typeref:typename:float * animVertices third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float *animVertices; \/\/ Animated vertex positions (after bones transformations)$/;" m struct:Mesh typeref:typename:float * animVertices third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float *animVertices; \/\/ Animated vertex positions (after bones transformations)$/;" m struct:Mesh typeref:typename:float * +args third_party/libuv/include/uv.h /^ char** args;$/;" m struct:uv_process_options_s typeref:typename:char ** arpa/inet.h seobeo/seobeo.h /^#include <arpa\/inet.h>/;" h +arpa/inet.h third_party/libuv/include/uv/unix.h /^#include <arpa\/inet.h>/;" h arraddn dowa/stb_ds.h /^#define arraddn stbds_arraddn /;" d arraddnindex dowa/stb_ds.h /^#define arraddnindex stbds_arraddnindex$/;" d arraddnptr dowa/stb_ds.h /^#define arraddnptr stbds_arraddnptr$/;" d @@ -7279,19 +9622,28 @@ arrsetlen dowa/stb_ds.h /^#define arrsetlen stbds_arrsetlen$/;" d assert.h dowa/dowa.h /^#include <assert.h>/;" h assert.h dowa/stb_ds.h /^#include <assert.h>/;" h +assert.h third_party/libuv/src/unix/internal.h /^#include <assert.h>/;" h +assert.h third_party/libuv/src/uv-common.h /^#include <assert.h>/;" h +assert.h third_party/libuv/src/win/handle-inl.h /^#include <assert.h>/;" h +assert.h third_party/libuv/src/win/req-inl.h /^#include <assert.h>/;" h +assert.h third_party/libuv/src/win/stream-inl.h /^#include <assert.h>/;" h autoCursorCounter third_party/raylib/include/raygui.h /^static int autoCursorCounter = 0; \/\/ Frame counter for automatic repeated cursor/;" v typeref:typename:int b dowa/stb_ds.h /^typedef struct { int key,b,c,d; } stbds_struct;$/;" m struct:__anon7f1219f40508 typeref:typename:int b dowa/stb_ds.h /^typedef struct { int key[2],b,c,d; } stbds_struct2;$/;" m struct:__anon7f1219f40608 typeref:typename:int +b third_party/libuv/include/uv/unix.h /^ struct _uv_barrier* b;$/;" m struct:__anon5825c6f60108 typeref:struct:_uv_barrier * b third_party/raylib/include/raygui.h /^ unsigned char b;$/;" m struct:Color typeref:typename:unsigned char b third_party/raylib/include/raylib.h /^ unsigned char b; \/\/ Color blue value$/;" m struct:Color typeref:typename:unsigned char b third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned char b; \/\/ Color blue value$/;" m struct:Color typeref:typename:unsigned char b third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned char b; \/\/ Color blue value$/;" m struct:Color typeref:typename:unsigned char b third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned char b; \/\/ Color blue value$/;" m struct:Color typeref:typename:unsigned char +base third_party/libuv/include/uv/unix.h /^ char* base;$/;" m struct:uv_buf_t typeref:typename:char * +base third_party/libuv/include/uv/win.h /^ char* base;$/;" m struct:uv_buf_t typeref:typename:char * baseSize third_party/raylib/include/raygui.h /^ int baseSize; \/\/ Base size (default chars height)$/;" m struct:Font typeref:typename:int baseSize third_party/raylib/include/raylib.h /^ int baseSize; \/\/ Base size (default chars height)$/;" m struct:Font typeref:typename:int baseSize third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int baseSize; \/\/ Base size (default chars height)$/;" m struct:Font typeref:typename:int baseSize third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int baseSize; \/\/ Base size (default chars height)$/;" m struct:Font typeref:typename:int baseSize third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int baseSize; \/\/ Base size (default chars height)$/;" m struct:Font typeref:typename:int +bench_entry_t third_party/libuv/test/runner.h /^} task_entry_t, bench_entry_t;$/;" t typeref:struct:__anona47773ae0108 bindPose third_party/raylib/include/raylib.h /^ Transform *bindPose; \/\/ Bones base transformation (pose)$/;" m struct:Model typeref:typename:Transform * bindPose third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Transform *bindPose; \/\/ Bones base transformation (pose)$/;" m struct:Model typeref:typename:Transform * bindPose third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Transform *bindPose; \/\/ Bones base transformation (pose)$/;" m struct:Model typeref:typename:Transform * @@ -7338,7 +9690,9 @@ bottom third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int bottom; \/\/ Bottom border offset$/;" m struct:NPatchInfo typeref:typename:int bottom third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int bottom; \/\/ Bottom border offset$/;" m struct:NPatchInfo typeref:typename:int bottom third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int bottom; \/\/ Bottom border offset$/;" m struct:NPatchInfo typeref:typename:int +broadcast_event third_party/libuv/include/uv/win.h /^ HANDLE broadcast_event;$/;" m struct:__anond441abe0010a::__anond441abe00208 typeref:typename:HANDLE bucket_count dowa/dowa.h /^ size_t bucket_count;$/;" m struct:__anon82503da00508 typeref:typename:size_t +buf third_party/libuv/include/uv.h /^ void* buf;$/;" m struct:uv_random_s typeref:typename:void * buffer dowa/dowa.h /^ char *buffer;$/;" m struct:__anon82503da00108 typeref:typename:char * buffer dowa/stb_ds.h /^static char buffer[256];$/;" v typeref:typename:char[256] buffer third_party/raylib/include/raylib.h /^ rAudioBuffer *buffer; \/\/ Pointer to internal data used by the audio system$/;" m struct:AudioStream typeref:typename:rAudioBuffer * @@ -7349,9 +9703,11 @@ bufferCount third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int bufferCount; \/\/ Number of vertex buffers (multi-buffering support)$/;" m struct:rlRenderBatch typeref:typename:int bufferCount third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int bufferCount; \/\/ Number of vertex buffers (multi-buffering support)$/;" m struct:rlRenderBatch typeref:typename:int bufferCount third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int bufferCount; \/\/ Number of vertex buffers (multi-buffering support)$/;" m struct:rlRenderBatch typeref:typename:int +buflen third_party/libuv/include/uv.h /^ size_t buflen;$/;" m struct:uv_random_s typeref:typename:size_t c dowa/stb_ds.h /^typedef struct { int key,b,c,d; } stbds_struct;$/;" m struct:__anon7f1219f40508 typeref:typename:int c dowa/stb_ds.h /^typedef struct { int key[2],b,c,d; } stbds_struct2;$/;" m struct:__anon7f1219f40608 typeref:typename:int cache seobeo/seobeo_internal.h /^ Seobeo_Cache_Entry *cache;$/;" m struct:__anon7a4da8400408 typeref:typename:Seobeo_Cache_Entry * +can_ipv6 third_party/libuv/test/task.h /^UNUSED static int can_ipv6(void) {$/;" f typeref:typename:UNUSED int capacity dowa/dowa.h /^ size_t capacity;$/;" m struct:__anon82503da00108 typeref:typename:size_t capacity dowa/dowa.h /^ size_t capacity;$/;" m struct:__anon82503da00308 typeref:typename:size_t capacity dowa/stb_ds.h /^ size_t capacity;$/;" m struct:__anon7f1219f40108 typeref:typename:size_t @@ -7363,6 +9719,13 @@ capacity third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned int capacity; \/\/ Filepaths max entries$/;" m struct:FilePathList typeref:typename:unsigned int capacity third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int capacity; \/\/ Events max entries (MAX_AUTOMATION_EVENTS)$/;" m struct:AutomationEventList typeref:typename:unsigned int capacity third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int capacity; \/\/ Filepaths max entries$/;" m struct:FilePathList typeref:typename:unsigned int +cb third_party/libuv/include/uv.h /^ uv_connect_cb cb;$/;" m struct:uv_connect_s typeref:typename:UV_REQ_FIELDS uv_connect_cb +cb third_party/libuv/include/uv.h /^ uv_fs_cb cb;$/;" m struct:uv_fs_s typeref:typename:uv_fs_cb +cb third_party/libuv/include/uv.h /^ uv_random_cb cb;$/;" m struct:uv_random_s typeref:typename:uv_random_cb +cb third_party/libuv/include/uv.h /^ uv_shutdown_cb cb;$/;" m struct:uv_shutdown_s typeref:typename:uv_shutdown_cb +cb third_party/libuv/include/uv.h /^ uv_udp_send_cb cb;$/;" m struct:uv_udp_send_s typeref:typename:uv_udp_send_cb +cb third_party/libuv/include/uv.h /^ uv_write_cb cb;$/;" m struct:uv_write_s typeref:typename:UV_REQ_FIELDS uv_write_cb +cb third_party/libuv/include/uv/unix.h /^ uv__io_cb cb;$/;" m struct:uv__io_s typeref:typename:uv__io_cb channels third_party/raylib/include/raylib.h /^ unsigned int channels; \/\/ Number of channels (1-mono, 2-stereo, ...)$/;" m struct:AudioStream typeref:typename:unsigned int channels third_party/raylib/include/raylib.h /^ unsigned int channels; \/\/ Number of channels (1-mono, 2-stereo, ...)$/;" m struct:Wave typeref:typename:unsigned int channels third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned int channels; \/\/ Number of channels (1-mono, 2-stereo, ...)$/;" m struct:AudioStream typeref:typename:unsigned int @@ -7376,6 +9739,8 @@ chromaAbCorrection third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float chromaAbCorrection[4]; \/\/ Chromatic aberration correction parameters$/;" m struct:VrDeviceInfo typeref:typename:float[4] chromaAbCorrection third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float chromaAbCorrection[4]; \/\/ Chromatic aberration correction parameters$/;" m struct:VrDeviceInfo typeref:typename:float[4] client_id seobeo/seobeo_internal.h /^ char *client_id;$/;" m struct:Seobeo_WebSocket_Server_Connection_Struct typeref:typename:char * +close_loop third_party/libuv/test/task.h /^UNUSED static void close_loop(uv_loop_t* loop) {$/;" f typeref:typename:UNUSED void +close_walk_cb third_party/libuv/test/task.h /^static void close_walk_cb(uv_handle_t* handle, void* arg) {$/;" f typeref:typename:void color third_party/raylib/include/raylib.h /^ Color color; \/\/ Material map color$/;" m struct:MaterialMap typeref:typename:Color color third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Color color; \/\/ Material map color$/;" m struct:MaterialMap typeref:typename:Color color third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Color color; \/\/ Material map color$/;" m struct:MaterialMap typeref:typename:Color @@ -7409,9 +9774,15 @@ computeShader third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ bool computeShader; \/\/ Compute shaders support (GL_ARB_compute_shader)$/;" m struct:rlglData::__anon0cdf4ceb0e08 typeref:typename:bool computeShader third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ bool computeShader; \/\/ Compute shaders support (GL_ARB_compute_shader)$/;" m struct:rlglData::__anon96c0c2130e08 typeref:typename:bool computeShader third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ bool computeShader; \/\/ Compute shaders support (GL_ARB_compute_shader)$/;" m struct:rlglData::__anon9e7796b80e08 typeref:typename:bool +cond third_party/libuv/include/uv/unix.h /^ uv_cond_t cond;$/;" m struct:_uv_barrier typeref:typename:uv_cond_t +cond third_party/libuv/include/uv/win.h /^ CONDITION_VARIABLE cond;$/;" m struct:__anond441abe00408 typeref:typename:CONDITION_VARIABLE +cond_var third_party/libuv/include/uv/win.h /^ CONDITION_VARIABLE cond_var;$/;" m union:__anond441abe0010a typeref:typename:CONDITION_VARIABLE connected seobeo/seobeo_internal.h /^ boolean connected; $/;" m struct:__anon7a4da8400208 typeref:typename:boolean +container_of third_party/libuv/src/uv-common.h /^#define container_of(/;" d +container_of third_party/libuv/test/task.h /^#define container_of(/;" d content seobeo/seobeo_internal.h /^ char *content;$/;" m struct:__anon7a4da8400308 typeref:typename:char * controlId third_party/raylib/include/raygui.h /^ unsigned short controlId; \/\/ Control identifier$/;" m struct:GuiStyleProp typeref:typename:unsigned short +count third_party/libuv/include/uv.h /^ unsigned int count;$/;" m union:uv_loop_s::__anon4de24c23190a typeref:typename:unsigned int count third_party/raylib/include/raylib.h /^ unsigned int count; \/\/ Events entries count$/;" m struct:AutomationEventList typeref:typename:unsigned int count third_party/raylib/include/raylib.h /^ unsigned int count; \/\/ Filepaths entries count$/;" m struct:FilePathList typeref:typename:unsigned int count third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned int count; \/\/ Events entries count$/;" m struct:AutomationEventList typeref:typename:unsigned int @@ -7420,6 +9791,13 @@ count third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned int count; \/\/ Filepaths entries count$/;" m struct:FilePathList typeref:typename:unsigned int count third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int count; \/\/ Events entries count$/;" m struct:AutomationEventList typeref:typename:unsigned int count third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int count; \/\/ Filepaths entries count$/;" m struct:FilePathList typeref:typename:unsigned int +cpu_times third_party/libuv/include/uv.h /^ struct uv_cpu_times_s cpu_times;$/;" m struct:uv_cpu_info_s typeref:struct:uv_cpu_times_s +cqe third_party/libuv/src/uv-common.h /^ void* cqe; \/* pointer to array of struct uv__io_uring_cqe *\/$/;" m struct:uv__iou typeref:typename:void * +cqhead third_party/libuv/src/uv-common.h /^ uint32_t* cqhead;$/;" m struct:uv__iou typeref:typename:uint32_t * +cqlen third_party/libuv/src/uv-common.h /^ size_t cqlen;$/;" m struct:uv__iou typeref:typename:size_t +cqmask third_party/libuv/src/uv-common.h /^ uint32_t cqmask;$/;" m struct:uv__iou typeref:typename:uint32_t +cqtail third_party/libuv/src/uv-common.h /^ uint32_t* cqtail;$/;" m struct:uv__iou typeref:typename:uint32_t * +ctl third_party/libuv/src/uv-common.h /^ struct uv__iou ctl;$/;" m struct:uv__loop_internal_fields_s typeref:struct:uv__iou ctxData third_party/raylib/include/raylib.h /^ void *ctxData; \/\/ Audio context data, depends on type$/;" m struct:Music typeref:typename:void * ctxData third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ void *ctxData; \/\/ Audio context data, depends on type$/;" m struct:Music typeref:typename:void * ctxData third_party/raylib/raylib-5.5_macos/include/raylib.h /^ void *ctxData; \/\/ Audio context data, depends on type$/;" m struct:Music typeref:typename:void * @@ -7461,9 +9839,18 @@ currentShaderLocs third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int *currentShaderLocs; \/\/ Current shader locations pointer to be used on /;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:int * currentShaderLocs third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int *currentShaderLocs; \/\/ Current shader locations pointer to be used on /;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:int * currentShaderLocs third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int *currentShaderLocs; \/\/ Current shader locations pointer to be used on /;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:int * +current_pos third_party/libuv/src/win/fs-fd-hash-inl.h /^ LARGE_INTEGER current_pos;$/;" m struct:uv__fd_info_s typeref:typename:LARGE_INTEGER +current_timeout third_party/libuv/src/uv-common.h /^ int current_timeout;$/;" m struct:uv__loop_internal_fields_s typeref:typename:int +cwd third_party/libuv/include/uv.h /^ const char* cwd;$/;" m struct:uv_process_options_s typeref:typename:const char * d dowa/stb_ds.h /^typedef struct { int key,b,c,d; } stbds_struct;$/;" m struct:__anon7f1219f40508 typeref:typename:int d dowa/stb_ds.h /^typedef struct { int key[2],b,c,d; } stbds_struct2;$/;" m struct:__anon7f1219f40608 typeref:typename:int +d_name third_party/libuv/include/uv/win.h /^ char d_name[1];$/;" m struct:uv__dirent_s typeref:typename:char[1] +d_type third_party/libuv/include/uv/win.h /^ int d_type;$/;" m struct:uv__dirent_s typeref:typename:int +darwin-syscalls.h third_party/libuv/src/unix/internal.h /^# include "darwin-syscalls.h"/;" h data seobeo/seobeo_internal.h /^ uint8 *data;$/;" m struct:__anon7a4da8400a08 typeref:typename:uint8 * +data third_party/libuv/include/uv.h /^ void* data;$/;" m struct:uv_loop_s typeref:typename:void * +data third_party/libuv/include/uv.h /^ } data;$/;" m struct:uv_stdio_container_s typeref:union:uv_stdio_container_s::__anon4de24c23110a +data third_party/libuv/src/win/fs-fd-hash-inl.h /^ struct uv__fd_hash_entry_group_s* data;$/;" m struct:uv__fd_hash_bucket_s typeref:struct:uv__fd_hash_entry_group_s * data third_party/raylib/include/raygui.h /^ void *data; \/\/ Image raw data$/;" m struct:Image typeref:typename:void * data third_party/raylib/include/raylib.h /^ void *data; \/\/ Buffer data pointer$/;" m struct:Wave typeref:typename:void * data third_party/raylib/include/raylib.h /^ void *data; \/\/ Image raw data$/;" m struct:Image typeref:typename:void * @@ -7515,6 +9902,7 @@ deita__sqlite_result_set_get_real deita/deita_internal.h /^extern double deita__sqlite_result_set_get_real(Deita_Result_Set *p_result_set, int32 column_ind/;" p typeref:typename:double deita__sqlite_result_set_get_text deita/deita_internal.h /^extern const char* deita__sqlite_result_set_get_text(Deita_Result_Set *p_result_set, int32 colum/;" p typeref:typename:const char * deita__sqlite_result_set_next deita/deita_internal.h /^extern boolean deita__sqlite_result_set_next(Deita_Result_Set *p_result_set);$/;" p typeref:typename:boolean +delayed_error third_party/libuv/src/win/internal.h /^ uint32_t delayed_error;$/;" m struct:__anondc6407360208 typeref:typename:uint32_t depth third_party/raylib/include/raylib.h /^ Texture depth; \/\/ Depth buffer attachment texture$/;" m struct:RenderTexture typeref:typename:Texture depth third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Texture depth; \/\/ Depth buffer attachment texture$/;" m struct:RenderTexture typeref:typename:Texture depth third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Texture depth; \/\/ Depth buffer attachment texture$/;" m struct:RenderTexture typeref:typename:Texture @@ -7529,10 +9917,14 @@ direction third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 direction; \/\/ Ray direction (normalized)$/;" m struct:Ray typeref:typename:Vector3 direction third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 direction; \/\/ Ray direction (normalized)$/;" m struct:Ray typeref:typename:Vector3 direction third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector3 direction; \/\/ Ray direction (normalized)$/;" m struct:Ray typeref:typename:Vector3 +dirent.h third_party/libuv/include/uv/unix.h /^#include <dirent.h>/;" h +dirent.h third_party/libuv/src/unix/os390-syscalls.h /^#include <dirent.h>/;" h +dirents third_party/libuv/include/uv.h /^ uv_dirent_t* dirents;$/;" m struct:uv_dir_s typeref:typename:uv_dirent_t * distance third_party/raylib/include/raylib.h /^ float distance; \/\/ Distance to the nearest hit$/;" m struct:RayCollision typeref:typename:float distance third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float distance; \/\/ Distance to the nearest hit$/;" m struct:RayCollision typeref:typename:float distance third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float distance; \/\/ Distance to the nearest hit$/;" m struct:RayCollision typeref:typename:float distance third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float distance; \/\/ Distance to the nearest hit$/;" m struct:RayCollision typeref:typename:float +done third_party/libuv/include/uv/threadpool.h /^ void (*done)(struct uv__work *w, int status);$/;" m struct:uv__work typeref:typename:void (*)(struct uv__work * w,int status) dowa/dowa.h deita/deita.h /^#include "dowa\/dowa.h"/;" h dowa/dowa.h seobeo/seobeo_internal.h /^#include "dowa\/dowa.h"/;" h dowa__array_free dowa/dowa.h /^DLAPI void dowa__array_free(void *p_array);$/;" p typeref:typename:DLAPI void @@ -7563,11 +9955,28 @@ elementCount third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int elementCount; \/\/ Number of elements in the buffer (QUADS)$/;" m struct:rlVertexBuffer typeref:typename:int elementCount third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int elementCount; \/\/ Number of elements in the buffer (QUADS)$/;" m struct:rlVertexBuffer typeref:typename:int emscripten.h markdown_converter/markdown_to_html.h /^ #include <emscripten.h>/;" h +entries third_party/libuv/src/win/fs-fd-hash-inl.h /^ struct uv__fd_hash_entry_s entries[UV__FD_HASH_GROUP_SIZE];$/;" m struct:uv__fd_hash_entry_group_s typeref:struct:uv__fd_hash_entry_s[] +env third_party/libuv/include/uv.h /^ char** env;$/;" m struct:uv_process_options_s typeref:typename:char ** +epoll_create1 third_party/libuv/src/unix/os390-syscalls.h /^uv__os390_epoll* epoll_create1(int flags);$/;" p typeref:typename:uv__os390_epoll * +epoll_ctl third_party/libuv/src/unix/os390-syscalls.h /^int epoll_ctl(uv__os390_epoll* ep, int op, int fd, struct epoll_event *event);$/;" p typeref:typename:int +epoll_event third_party/libuv/src/unix/os390-syscalls.h /^struct epoll_event {$/;" s +epoll_file_close third_party/libuv/src/unix/os390-syscalls.h /^int epoll_file_close(int fd);$/;" p typeref:typename:int +epoll_wait third_party/libuv/src/unix/os390-syscalls.h /^int epoll_wait(uv__os390_epoll* ep, struct epoll_event *events, int maxevents, int timeout);$/;" p typeref:typename:int +errmsg third_party/libuv/include/uv/unix.h /^ char* errmsg;$/;" m struct:__anon5825c6f60208 typeref:typename:char * +errmsg third_party/libuv/include/uv/win.h /^ char* errmsg;$/;" m struct:__anond441abe00608 typeref:typename:char * errno.h seobeo/seobeo.h /^#include <errno.h>/;" h +errno.h third_party/libuv/include/uv/errno.h /^#include <errno.h>/;" h +errno.h third_party/libuv/src/unix/internal.h /^#include <errno.h>/;" h +events third_party/libuv/include/uv.h /^ uint64_t events;$/;" m struct:uv_metrics_s typeref:typename:uint64_t +events third_party/libuv/include/uv/unix.h /^ unsigned int events; \/* Current event mask. *\/$/;" m struct:uv__io_s typeref:typename:unsigned int +events third_party/libuv/src/unix/os390-syscalls.h /^ int events;$/;" m struct:epoll_event typeref:typename:int events third_party/raylib/include/raylib.h /^ AutomationEvent *events; \/\/ Events entries$/;" m struct:AutomationEventList typeref:typename:AutomationEvent * events third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ AutomationEvent *events; \/\/ Events entries$/;" m struct:AutomationEventList typeref:typename:AutomationEvent * events third_party/raylib/raylib-5.5_macos/include/raylib.h /^ AutomationEvent *events; \/\/ Events entries$/;" m struct:AutomationEventList typeref:typename:AutomationEvent * events third_party/raylib/raylib-5.5_win64/include/raylib.h /^ AutomationEvent *events; \/\/ Events entries$/;" m struct:AutomationEventList typeref:typename:AutomationEvent * +events_waiting third_party/libuv/include/uv.h /^ uint64_t events_waiting;$/;" m struct:uv_metrics_s typeref:typename:uint64_t +exit_cb third_party/libuv/include/uv.h /^ uv_exit_cb exit_cb; \/* Called after the process exits. *\/$/;" m struct:uv_process_options_s typeref:typename:uv_exit_cb +exit_cb third_party/libuv/include/uv.h /^ uv_exit_cb exit_cb;$/;" m struct:uv_process_s typeref:typename:UV_HANDLE_FIELDS uv_exit_cb expected_status seobeo/snapshot_creator.h /^ int expected_status;$/;" m struct:__anon0d8f4d060108 typeref:typename:int external/glad.h third_party/raylib/include/rlgl.h /^ #include "external\/glad.h"/;" h external/glad.h third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ #include "external\/glad.h"/;" h @@ -7581,8 +9990,25 @@ eyeToScreenDistance third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float eyeToScreenDistance; \/\/ Distance between eye and display in meters$/;" m struct:VrDeviceInfo typeref:typename:float eyeToScreenDistance third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float eyeToScreenDistance; \/\/ Distance between eye and display in meters$/;" m struct:VrDeviceInfo typeref:typename:float eyeToScreenDistance third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float eyeToScreenDistance; \/\/ Distance between eye and display in meters$/;" m struct:VrDeviceInfo typeref:typename:float +f_bavail third_party/libuv/include/uv.h /^ uint64_t f_bavail;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_bfree third_party/libuv/include/uv.h /^ uint64_t f_bfree;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_blocks third_party/libuv/include/uv.h /^ uint64_t f_blocks;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_bsize third_party/libuv/include/uv.h /^ uint64_t f_bsize;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_ffree third_party/libuv/include/uv.h /^ uint64_t f_ffree;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_files third_party/libuv/include/uv.h /^ uint64_t f_files;$/;" m struct:uv_statfs_s typeref:typename:uint64_t +f_spare third_party/libuv/include/uv.h /^ uint64_t f_spare[4];$/;" m struct:uv_statfs_s typeref:typename:uint64_t[4] +f_type third_party/libuv/include/uv.h /^ uint64_t f_type;$/;" m struct:uv_statfs_s typeref:typename:uint64_t fcntl.h seobeo/seobeo.h /^#include <fcntl.h>/;" h +fcntl.h third_party/libuv/include/uv/unix.h /^#include <fcntl.h>/;" h +fcntl.h third_party/libuv/include/uv/win.h /^#include <fcntl.h>/;" h +fcntl.h third_party/libuv/src/unix/internal.h /^#include <fcntl.h>/;" h +fd third_party/libuv/include/uv.h /^ int fd;$/;" m union:uv_stdio_container_s::__anon4de24c23110a typeref:typename:int +fd third_party/libuv/include/uv/unix.h /^ int fd;$/;" m struct:uv__io_s typeref:typename:int +fd third_party/libuv/src/unix/os390-syscalls.h /^ int fd;$/;" m struct:epoll_event typeref:typename:int +fd third_party/libuv/src/win/fs-fd-hash-inl.h /^ uv_file fd;$/;" m struct:uv__fd_hash_entry_s typeref:typename:uv_file +fds third_party/libuv/src/unix/internal.h /^ int fds[1];$/;" m struct:uv__stream_queued_fds_s typeref:typename:int[1] file seobeo/seobeo_internal.h /^ void *file;$/;" m struct:__anon7a4da8400208 typeref:typename:void * +file third_party/libuv/include/uv.h /^ const char* file; \/* Path to program to execute. *\/$/;" m struct:uv_process_options_s typeref:typename:const char * fileNameEditMode postdog/gui_window_file_dialog.h /^ bool fileNameEditMode;$/;" m struct:__anoncb6fd9740108 typeref:typename:bool fileNameText postdog/gui_window_file_dialog.h /^ char fileNameText[1024];$/;" m struct:__anoncb6fd9740108 typeref:typename:char[1024] fileNameTextCopy postdog/gui_window_file_dialog.h /^ char fileNameTextCopy[1024];$/;" m struct:__anoncb6fd9740108 typeref:typename:char[1024] @@ -7592,6 +10018,11 @@ filesListEditMode postdog/gui_window_file_dialog.h /^ bool filesListEditMode;$/;" m struct:__anoncb6fd9740108 typeref:typename:bool filesListScrollIndex postdog/gui_window_file_dialog.h /^ int filesListScrollIndex;$/;" m struct:__anoncb6fd9740108 typeref:typename:int filterExt postdog/gui_window_file_dialog.h /^ char filterExt[256];$/;" m struct:__anoncb6fd9740108 typeref:typename:char[256] +flags third_party/libuv/include/uv.h /^ unsigned int flags;$/;" m struct:uv_process_options_s typeref:typename:unsigned int +flags third_party/libuv/include/uv.h /^ unsigned int flags;$/;" m struct:uv_thread_options_s typeref:typename:unsigned int +flags third_party/libuv/include/uv.h /^ uv_stdio_flags flags;$/;" m struct:uv_stdio_container_s typeref:typename:uv_stdio_flags +flags third_party/libuv/src/uv-common.h /^ unsigned int flags;$/;" m struct:uv__loop_internal_fields_s typeref:typename:unsigned int +flags third_party/libuv/src/win/fs-fd-hash-inl.h /^ int flags;$/;" m struct:uv__fd_info_s typeref:typename:int float16 third_party/raylib/include/raymath.h /^typedef struct float16 {$/;" s float16 third_party/raylib/include/raymath.h /^} float16;$/;" t typeref:struct:float16 float16 third_party/raylib/raylib-5.5_linux_amd64/include/raymath.h /^typedef struct float16 {$/;" s @@ -7608,6 +10039,7 @@ float3 third_party/raylib/raylib-5.5_macos/include/raymath.h /^} float3;$/;" t typeref:struct:float3 float3 third_party/raylib/raylib-5.5_win64/include/raymath.h /^typedef struct float3 {$/;" s float3 third_party/raylib/raylib-5.5_win64/include/raymath.h /^} float3;$/;" t typeref:struct:float3 +fmt third_party/libuv/test/task.h /^char* fmt(char (*buf)[32], double d);$/;" p typeref:typename:char * follow_redirects seobeo/seobeo_internal.h /^ boolean follow_redirects;$/;" m struct:__anon7a4da8400608 typeref:typename:boolean format third_party/raylib/include/raygui.h /^ int format; \/\/ Data format (PixelFormat type)$/;" m struct:Image typeref:typename:int format third_party/raylib/include/raygui.h /^ int format; \/\/ Data format (PixelFormat type)$/;" m struct:Texture typeref:typename:int @@ -7663,11 +10095,15 @@ framebufferWidth third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int framebufferWidth; \/\/ Current framebuffer width$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:int framebufferWidth third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int framebufferWidth; \/\/ Current framebuffer width$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:int framebufferWidth third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int framebufferWidth; \/\/ Current framebuffer width$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:int +fs_type third_party/libuv/include/uv.h /^ uv_fs_type fs_type;$/;" m struct:uv_fs_s typeref:typename:UV_REQ_FIELDS uv_fs_type g third_party/raylib/include/raygui.h /^ unsigned char g;$/;" m struct:Color typeref:typename:unsigned char g third_party/raylib/include/raylib.h /^ unsigned char g; \/\/ Color green value$/;" m struct:Color typeref:typename:unsigned char g third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned char g; \/\/ Color green value$/;" m struct:Color typeref:typename:unsigned char g third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned char g; \/\/ Color green value$/;" m struct:Color typeref:typename:unsigned char g third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned char g; \/\/ Color green value$/;" m struct:Color typeref:typename:unsigned char +gid third_party/libuv/include/uv.h /^ unsigned long gid;$/;" m struct:uv_group_s typeref:typename:unsigned long +gid third_party/libuv/include/uv.h /^ unsigned long gid;$/;" m struct:uv_passwd_s typeref:typename:unsigned long +gid third_party/libuv/include/uv.h /^ uv_gid_t gid;$/;" m struct:uv_process_options_s typeref:typename:uv_gid_t glBindVertexArray third_party/raylib/include/rlgl.h /^static PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray = NULL;$/;" v typeref:typename:PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^static PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray = NULL;$/;" v typeref:typename:PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray third_party/raylib/raylib-5.5_macos/include/rlgl.h /^static PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray = NULL;$/;" v typeref:typename:PFNGLBINDVERTEXARRAYOESPROC @@ -7751,6 +10187,7 @@ glyphs third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ GlyphInfo *glyphs; \/\/ Glyphs info data$/;" m struct:Font typeref:typename:GlyphInfo * glyphs third_party/raylib/raylib-5.5_macos/include/raylib.h /^ GlyphInfo *glyphs; \/\/ Glyphs info data$/;" m struct:Font typeref:typename:GlyphInfo * glyphs third_party/raylib/raylib-5.5_win64/include/raylib.h /^ GlyphInfo *glyphs; \/\/ Glyphs info data$/;" m struct:Font typeref:typename:GlyphInfo * +groupname third_party/libuv/include/uv.h /^ char* groupname;$/;" m struct:uv_group_s typeref:typename:char * guiAlpha third_party/raylib/include/raygui.h /^static float guiAlpha = 1.0f; \/\/ Gui controls transparency$/;" v typeref:typename:float guiControlExclusiveMode third_party/raylib/include/raygui.h /^static bool guiControlExclusiveMode = false; \/\/ Gui control exclusive mode (no inputs proce/;" v typeref:typename:bool guiControlExclusiveRec third_party/raylib/include/raygui.h /^static Rectangle guiControlExclusiveRec = { 0 }; \/\/ Gui control exclusive bounds rectangle, us/;" v typeref:typename:Rectangle @@ -7772,6 +10209,14 @@ hScreenSize third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float hScreenSize; \/\/ Horizontal size in meters$/;" m struct:VrDeviceInfo typeref:typename:float hScreenSize third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float hScreenSize; \/\/ Horizontal size in meters$/;" m struct:VrDeviceInfo typeref:typename:float hScreenSize third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float hScreenSize; \/\/ Horizontal size in meters$/;" m struct:VrDeviceInfo typeref:typename:float +handle third_party/libuv/include/uv.h /^ uv_stream_t* handle;$/;" m struct:uv_connect_s typeref:typename:uv_stream_t * +handle third_party/libuv/include/uv.h /^ uv_stream_t* handle;$/;" m struct:uv_shutdown_s typeref:typename:UV_REQ_FIELDS uv_stream_t * +handle third_party/libuv/include/uv.h /^ uv_stream_t* handle;$/;" m struct:uv_write_s typeref:typename:uv_stream_t * +handle third_party/libuv/include/uv.h /^ uv_udp_t* handle;$/;" m struct:uv_udp_send_s typeref:typename:UV_REQ_FIELDS uv_udp_t * +handle third_party/libuv/include/uv/unix.h /^ void* handle;$/;" m struct:__anon5825c6f60208 typeref:typename:void * +handle third_party/libuv/include/uv/win.h /^ HMODULE handle;$/;" m struct:__anond441abe00608 typeref:typename:HMODULE +handle-inl.h third_party/libuv/src/win/stream-inl.h /^#include "handle-inl.h"/;" h +handle_queue third_party/libuv/include/uv.h /^ struct uv__queue handle_queue;$/;" m struct:uv_loop_s typeref:struct:uv__queue handler seobeo/seobeo_internal.h /^ Seobeo_WebSocket_Server_Handler handler;$/;" m struct:__anon7a4da8400c08 typeref:typename:Seobeo_WebSocket_Server_Handler has_data deita/deita_internal.h /^ boolean has_data;$/;" m struct:Deita_Result_Set typeref:typename:boolean hash dowa/dowa.h /^ uint32 hash[DOWA_HASH_BUCKET_SIZE];$/;" m struct:__anon82503da00408 typeref:typename:uint32[] @@ -7780,6 +10225,10 @@ headers seobeo/seobeo_internal.h /^ Seobeo_Request_Entry *headers;$/;" m struct:__anon7a4da8400708 typeref:typename:Seobeo_Request_Entry * headers_array seobeo/seobeo_internal.h /^ char **headers_array;$/;" m struct:__anon7a4da8400608 typeref:typename:char ** headers_map seobeo/seobeo_internal.h /^ Seobeo_Request_Entry *headers_map;$/;" m struct:__anon7a4da8400608 typeref:typename:Seobeo_Request_Entry * +heap third_party/libuv/src/heap-inl.h /^struct heap {$/;" s +heap_compare_fn third_party/libuv/src/heap-inl.h /^typedef int (*heap_compare_fn)(const struct heap_node* a,$/;" t typeref:typename:int (*)(const struct heap_node * a,const struct heap_node * b) +heap_node third_party/libuv/src/heap-inl.h /^struct heap_node {$/;" s +heap_node_swap third_party/libuv/src/heap-inl.h /^static void heap_node_swap(struct heap* heap,$/;" f typeref:typename:void height third_party/raylib/include/raygui.h /^ float height;$/;" m struct:Rectangle typeref:typename:float height third_party/raylib/include/raygui.h /^ int height; \/\/ Image base height$/;" m struct:Image typeref:typename:int height third_party/raylib/include/raygui.h /^ int height; \/\/ Texture base height$/;" m struct:Texture typeref:typename:int @@ -7815,6 +10264,7 @@ hmlenu dowa/stb_ds.h /^#define hmlenu stbds_hmlenu$/;" d hmput dowa/stb_ds.h /^#define hmput stbds_hmput$/;" d hmputs dowa/stb_ds.h /^#define hmputs stbds_hmputs$/;" d +homedir third_party/libuv/include/uv.h /^ char* homedir;$/;" m struct:uv_passwd_s typeref:typename:char * host seobeo/seobeo_internal.h /^ char *host;$/;" m struct:__anon7a4da8400b08 typeref:typename:char * host seobeo/seobeo_internal.h /^ char *host;$/;" m struct:__anon7a4da8400208 typeref:typename:char * host seobeo/seobeo_internal.h /^ char *host;$/;" m struct:__anon7a4da8400608 typeref:typename:char * @@ -7833,11 +10283,17 @@ id third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int id; \/\/ OpenGL framebuffer object id$/;" m struct:RenderTexture typeref:typename:unsigned int id third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int id; \/\/ OpenGL texture id$/;" m struct:Texture typeref:typename:unsigned int id third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int id; \/\/ Shader program id$/;" m struct:Shader typeref:typename:unsigned int +idle third_party/libuv/include/uv.h /^ uint64_t idle; \/* milliseconds *\/$/;" m struct:uv_cpu_times_s typeref:typename:uint64_t image third_party/raylib/include/raygui.h /^ Image image; \/\/ Character image data$/;" m struct:GlyphInfo typeref:typename:Image image third_party/raylib/include/raylib.h /^ Image image; \/\/ Character image data$/;" m struct:GlyphInfo typeref:typename:Image image third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Image image; \/\/ Character image data$/;" m struct:GlyphInfo typeref:typename:Image image third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Image image; \/\/ Character image data$/;" m struct:GlyphInfo typeref:typename:Image image third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Image image; \/\/ Character image data$/;" m struct:GlyphInfo typeref:typename:Image +in third_party/libuv/include/uv/unix.h /^ unsigned in;$/;" m struct:_uv_barrier typeref:typename:unsigned +in third_party/libuv/include/uv/win.h /^ unsigned in;$/;" m struct:__anond441abe00408 typeref:typename:unsigned +in third_party/libuv/src/unix/internal.h /^ struct sockaddr_in in;$/;" m union:uv__sockaddr typeref:struct:sockaddr_in +in6 third_party/libuv/src/unix/internal.h /^ struct sockaddr_in6 in6;$/;" m union:uv__sockaddr typeref:struct:sockaddr_in6 +in_flight third_party/libuv/src/uv-common.h /^ uint32_t in_flight;$/;" m struct:uv__iou typeref:typename:uint32_t index dowa/dowa.h /^ uint32 index[DOWA_HASH_BUCKET_SIZE];$/;" m struct:__anon82503da00408 typeref:typename:uint32[] index dowa/stb_ds.h /^ ptrdiff_t index[STBDS_BUCKET_LENGTH];$/;" m struct:__anon7f1219f40308 typeref:typename:ptrdiff_t[] indices third_party/raylib/include/raylib.h /^ unsigned short *indices; \/\/ Vertex indices (in case vertex data comes indexed)$/;" m struct:Mesh typeref:typename:unsigned short * @@ -7852,6 +10308,11 @@ indices third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned short *indices; \/\/ Vertex indices (in case vertex data comes indexed)$/;" m struct:Mesh typeref:typename:unsigned short * indices third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ unsigned int *indices; \/\/ Vertex indices (in case vertex data comes indexed) (6 indic/;" m struct:rlVertexBuffer typeref:typename:unsigned int * indices third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ unsigned short *indices; \/\/ Vertex indices (in case vertex data comes indexed) (6 indic/;" m struct:rlVertexBuffer typeref:typename:unsigned short * +info third_party/libuv/src/unix/darwin-stub.h /^ void* info;$/;" m struct:CFRunLoopSourceContext typeref:typename:void * +info third_party/libuv/src/unix/darwin-stub.h /^ void* info;$/;" m struct:FSEventStreamContext typeref:typename:void * +info third_party/libuv/src/win/fs-fd-hash-inl.h /^ struct uv__fd_info_s info;$/;" m struct:uv__fd_hash_entry_s typeref:struct:uv__fd_info_s +init_once third_party/libuv/include/uv/win.h /^ INIT_ONCE init_once;$/;" m struct:uv_once_s typeref:typename:INIT_ONCE +inline third_party/libuv/src/unix/internal.h /^# define inline __inline$/;" d instancing third_party/raylib/include/rlgl.h /^ bool instancing; \/\/ Instancing supported (GL_ANGLE_instanced_arrays/;" m struct:rlglData::__anonb66549aa0e08 typeref:typename:bool instancing third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ bool instancing; \/\/ Instancing supported (GL_ANGLE_instanced_arrays/;" m struct:rlglData::__anon0cdf4ceb0e08 typeref:typename:bool instancing third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ bool instancing; \/\/ Instancing supported (GL_ANGLE_instanced_arrays/;" m struct:rlglData::__anon96c0c2130e08 typeref:typename:bool @@ -7860,22 +10321,63 @@ int32 dowa/dowa.h /^typedef int int32;$/;" t typeref:typename:int int64 dowa/dowa.h /^typedef long long int64;$/;" t typeref:typename:long long int8 dowa/dowa.h /^typedef char int8;$/;" t typeref:typename:char +internal.h third_party/libuv/src/unix/os390-syscalls.h /^#include "internal.h"/;" h +internal.h third_party/libuv/src/win/atomicops-inl.h /^#include "internal.h"/;" h +internal.h third_party/libuv/src/win/fs-fd-hash-inl.h /^#include "internal.h"/;" h +internal.h third_party/libuv/src/win/handle-inl.h /^#include "internal.h"/;" h +internal.h third_party/libuv/src/win/req-inl.h /^#include "internal.h"/;" h +internal.h third_party/libuv/src/win/stream-inl.h /^#include "internal.h"/;" h +internal_fields third_party/libuv/include/uv.h /^ void* internal_fields;$/;" m struct:uv_loop_s typeref:typename:void * interpupillaryDistance third_party/raylib/include/raylib.h /^ float interpupillaryDistance; \/\/ IPD (distance between pupils) in meters$/;" m struct:VrDeviceInfo typeref:typename:float interpupillaryDistance third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float interpupillaryDistance; \/\/ IPD (distance between pupils) in meters$/;" m struct:VrDeviceInfo typeref:typename:float interpupillaryDistance third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float interpupillaryDistance; \/\/ IPD (distance between pupils) in meters$/;" m struct:VrDeviceInfo typeref:typename:float interpupillaryDistance third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float interpupillaryDistance; \/\/ IPD (distance between pupils) in meters$/;" m struct:VrDeviceInfo typeref:typename:float +inttypes.h third_party/libuv/test/task.h /^#include <inttypes.h>/;" h +inv third_party/libuv/src/uv-common.h /^ void* inv; \/* used by uv__platform_invalidate_fd() *\/$/;" m struct:uv__loop_internal_fields_s typeref:typename:void * +io.h third_party/libuv/src/win/handle-inl.h /^#include <io.h>/;" h +io.h third_party/libuv/test/task.h /^# include <io.h>/;" h +iou third_party/libuv/src/uv-common.h /^ struct uv__iou iou;$/;" m struct:uv__loop_internal_fields_s typeref:struct:uv__iou +ipc third_party/libuv/include/uv.h /^ int ipc; \/* non-zero if this pipe is used for passing handles *\/$/;" m struct:uv_pipe_s typeref:typename:UV_HANDLE_FIELDS UV_STREAM_FIELDS int +iptypes.h third_party/libuv/src/win/winsock.h /^#include <iptypes.h>/;" h +irq third_party/libuv/include/uv.h /^ uint64_t irq; \/* milliseconds *\/$/;" m struct:uv_cpu_times_s typeref:typename:uint64_t is_active seobeo/seobeo_internal.h /^ boolean is_active;$/;" m struct:Seobeo_WebSocket_Server_Connection_Struct typeref:typename:boolean +is_directory third_party/libuv/src/win/fs-fd-hash-inl.h /^ BOOLEAN is_directory;$/;" m struct:uv__fd_info_s typeref:typename:BOOLEAN is_done deita/deita_internal.h /^ boolean is_done;$/;" m struct:Deita_Result_Set typeref:typename:boolean is_final seobeo/seobeo_internal.h /^ boolean is_final;$/;" m struct:__anon7a4da8400a08 typeref:typename:boolean +is_helper third_party/libuv/test/runner.h /^ int is_helper;$/;" m struct:__anona47773ae0108 typeref:typename:int +is_internal third_party/libuv/include/uv.h /^ int is_internal;$/;" m struct:uv_interface_address_s typeref:typename:int +is_msg third_party/libuv/src/unix/os390-syscalls.h /^ int is_msg;$/;" m struct:epoll_event typeref:typename:int is_open deita/deita_internal.h /^ boolean is_open;$/;" m struct:Deita_Connection typeref:typename:boolean itemFocused postdog/gui_window_file_dialog.h /^ int itemFocused;$/;" m struct:__anoncb6fd9740108 typeref:typename:int item_count dowa/dowa.h /^ size_t item_count;$/;" m struct:__anon82503da00508 typeref:typename:size_t +items third_party/libuv/src/unix/os390-syscalls.h /^ struct pollfd* items;$/;" m struct:__anonf6e20ee80108 typeref:struct:pollfd * +kCFStringEncodingUTF8 third_party/libuv/src/unix/darwin-stub.h /^static const CFStringEncoding kCFStringEncodingUTF8 = 0x8000100;$/;" v typeref:typename:const CFStringEncoding +kFSEventStreamCreateFlagFileEvents third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamCreateFlagFileEvents = 16;$/;" v typeref:typename:const int +kFSEventStreamCreateFlagNoDefer third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamCreateFlagNoDefer = 2;$/;" v typeref:typename:const int +kFSEventStreamEventFlagEventIdsWrapped third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagEventIdsWrapped = 8;$/;" v typeref:typename:const int +kFSEventStreamEventFlagHistoryDone third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagHistoryDone = 16;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemChangeOwner third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemChangeOwner = 0x4000;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemCreated third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemCreated = 0x100;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemFinderInfoMod third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemFinderInfoMod = 0x2000;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemInodeMetaMod third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemInodeMetaMod = 0x400;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemIsDir third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemIsDir = 0x20000;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemModified third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemModified = 0x1000;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemRemoved third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemRemoved = 0x200;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemRenamed third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemRenamed = 0x800;$/;" v typeref:typename:const int +kFSEventStreamEventFlagItemXattrMod third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagItemXattrMod = 0x8000;$/;" v typeref:typename:const int +kFSEventStreamEventFlagKernelDropped third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagKernelDropped = 4;$/;" v typeref:typename:const int +kFSEventStreamEventFlagMount third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagMount = 64;$/;" v typeref:typename:const int +kFSEventStreamEventFlagRootChanged third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagRootChanged = 32;$/;" v typeref:typename:const int +kFSEventStreamEventFlagUnmount third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagUnmount = 128;$/;" v typeref:typename:const int +kFSEventStreamEventFlagUserDropped third_party/libuv/src/unix/darwin-stub.h /^static const int kFSEventStreamEventFlagUserDropped = 2;$/;" v typeref:typename:const int +kFSEventStreamEventIdSinceNow third_party/libuv/src/unix/darwin-stub.h /^static const FSEventStreamEventId kFSEventStreamEventIdSinceNow = -1;$/;" v typeref:typename:const FSEventStreamEventId key dowa/stb_ds.h /^typedef struct { int key,b,c,d; } stbds_struct;$/;" m struct:__anon7f1219f40508 typeref:typename:int key dowa/stb_ds.h /^typedef struct { int key[2],b,c,d; } stbds_struct2;$/;" m struct:__anon7f1219f40608 typeref:typename:int[2] layout third_party/raylib/include/raylib.h /^ int layout; \/\/ Layout of the n-patch: 3x3, 1x3 or 3x1$/;" m struct:NPatchInfo typeref:typename:int layout third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int layout; \/\/ Layout of the n-patch: 3x3, 1x3 or 3x1$/;" m struct:NPatchInfo typeref:typename:int layout third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int layout; \/\/ Layout of the n-patch: 3x3, 1x3 or 3x1$/;" m struct:NPatchInfo typeref:typename:int layout third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int layout; \/\/ Layout of the n-patch: 3x3, 1x3 or 3x1$/;" m struct:NPatchInfo typeref:typename:int +left third_party/libuv/src/heap-inl.h /^ struct heap_node* left;$/;" m struct:heap_node typeref:struct:heap_node * left third_party/raylib/include/raylib.h /^ int left; \/\/ Left border offset$/;" m struct:NPatchInfo typeref:typename:int left third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int left; \/\/ Left border offset$/;" m struct:NPatchInfo typeref:typename:int left third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int left; \/\/ Left border offset$/;" m struct:NPatchInfo typeref:typename:int @@ -7888,6 +10390,8 @@ leftScreenCenter third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float leftScreenCenter[2]; \/\/ VR left screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] leftScreenCenter third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float leftScreenCenter[2]; \/\/ VR left screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] leftScreenCenter third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float leftScreenCenter[2]; \/\/ VR left screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] +len third_party/libuv/include/uv/unix.h /^ size_t len;$/;" m struct:uv_buf_t typeref:typename:size_t +len third_party/libuv/include/uv/win.h /^ ULONG len;$/;" m struct:uv_buf_t typeref:typename:ULONG length dowa/dowa.h /^ size_t length;$/;" m struct:__anon82503da00308 typeref:typename:size_t length dowa/stb_ds.h /^ size_t length;$/;" m struct:__anon7f1219f40108 typeref:typename:size_t length seobeo/seobeo_internal.h /^ size_t length;$/;" m struct:__anon7a4da8400a08 typeref:typename:size_t @@ -7899,10 +10403,21 @@ lensSeparationDistance third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float lensSeparationDistance; \/\/ Lens separation distance in meters$/;" m struct:VrDeviceInfo typeref:typename:float lensSeparationDistance third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float lensSeparationDistance; \/\/ Lens separation distance in meters$/;" m struct:VrDeviceInfo typeref:typename:float lensSeparationDistance third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float lensSeparationDistance; \/\/ Lens separation distance in meters$/;" m struct:VrDeviceInfo typeref:typename:float +limits.h third_party/libuv/src/unix/internal.h /^#include <limits.h>/;" h +limits.h third_party/libuv/test/runner.h /^#include <limits.h>/;" h +lock third_party/libuv/src/uv-common.h /^ uv_mutex_t lock;$/;" m struct:uv__loop_metrics_s typeref:typename:uv_mutex_t locs third_party/raylib/include/raylib.h /^ int *locs; \/\/ Shader locations array (RL_MAX_SHADER_LOCATIONS)$/;" m struct:Shader typeref:typename:int * locs third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int *locs; \/\/ Shader locations array (RL_MAX_SHADER_LOCATIONS)$/;" m struct:Shader typeref:typename:int * locs third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int *locs; \/\/ Shader locations array (RL_MAX_SHADER_LOCATIONS)$/;" m struct:Shader typeref:typename:int * locs third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int *locs; \/\/ Shader locations array (RL_MAX_SHADER_LOCATIONS)$/;" m struct:Shader typeref:typename:int * +loop third_party/libuv/include/uv.h /^ uv_loop_t* loop;$/;" m struct:uv_fs_s typeref:typename:uv_loop_t * +loop third_party/libuv/include/uv.h /^ uv_loop_t* loop;$/;" m struct:uv_getaddrinfo_s typeref:typename:UV_REQ_FIELDS uv_loop_t * +loop third_party/libuv/include/uv.h /^ uv_loop_t* loop;$/;" m struct:uv_getnameinfo_s typeref:typename:UV_REQ_FIELDS uv_loop_t * +loop third_party/libuv/include/uv.h /^ uv_loop_t* loop;$/;" m struct:uv_random_s typeref:typename:UV_REQ_FIELDS uv_loop_t * +loop third_party/libuv/include/uv.h /^ uv_loop_t* loop;$/;" m struct:uv_work_s typeref:typename:UV_REQ_FIELDS uv_loop_t * +loop third_party/libuv/include/uv/threadpool.h /^ struct uv_loop_s* loop;$/;" m struct:uv__work typeref:struct:uv_loop_s * +loop_count third_party/libuv/include/uv.h /^ uint64_t loop_count;$/;" m struct:uv_metrics_s typeref:typename:uint64_t +loop_metrics third_party/libuv/src/uv-common.h /^ uv__loop_metrics_t loop_metrics;$/;" m struct:uv__loop_internal_fields_s typeref:typename:uv__loop_metrics_t looping third_party/raylib/include/raylib.h /^ bool looping; \/\/ Music looping enable$/;" m struct:Music typeref:typename:bool looping third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ bool looping; \/\/ Music looping enable$/;" m struct:Music typeref:typename:bool looping third_party/raylib/raylib-5.5_macos/include/raylib.h /^ bool looping; \/\/ Music looping enable$/;" m struct:Music typeref:typename:bool @@ -8099,6 +10614,12 @@ m9 third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float m1, m5, m9, m13; \/\/ Matrix second row (4 components)$/;" m struct:Matrix typeref:typename:float m9 third_party/raylib/raylib-5.5_win64/include/raymath.h /^ float m1, m5, m9, m13; \/\/ Matrix second row (4 components)$/;" m struct:Matrix typeref:typename:float m9 third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ float m1, m5, m9, m13; \/\/ Matrix second row (4 components)$/;" m struct:Matrix typeref:typename:float +mach/mach.h third_party/libuv/include/uv/darwin.h /^# include <mach\/mach.h>/;" h +mach/semaphore.h third_party/libuv/include/uv/darwin.h /^# include <mach\/semaphore.h>/;" h +mach/task.h third_party/libuv/include/uv/darwin.h /^# include <mach\/task.h>/;" h +machine third_party/libuv/include/uv.h /^ char machine[256];$/;" m struct:uv_utsname_s typeref:typename:char[256] +main third_party/libuv/test/runner.h /^ int (*main)(void);$/;" m struct:__anona47773ae0108 typeref:typename:int (*)(void) +mapping third_party/libuv/src/win/fs-fd-hash-inl.h /^ HANDLE mapping;$/;" m struct:uv__fd_info_s typeref:typename:HANDLE maps third_party/raylib/include/raylib.h /^ MaterialMap *maps; \/\/ Material maps array (MAX_MATERIAL_MAPS)$/;" m struct:Material typeref:typename:MaterialMap * maps third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ MaterialMap *maps; \/\/ Material maps array (MAX_MATERIAL_MAPS)$/;" m struct:Material typeref:typename:MaterialMap * maps third_party/raylib/raylib-5.5_macos/include/raylib.h /^ MaterialMap *maps; \/\/ Material maps array (MAX_MATERIAL_MAPS)$/;" m struct:Material typeref:typename:MaterialMap * @@ -8114,6 +10635,7 @@ materials third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Material *materials; \/\/ Materials array$/;" m struct:Model typeref:typename:Material * materials third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Material *materials; \/\/ Materials array$/;" m struct:Model typeref:typename:Material * materials third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Material *materials; \/\/ Materials array$/;" m struct:Model typeref:typename:Material * +math.h third_party/libuv/include/uv.h /^#include <math.h>/;" h math.h third_party/raylib/include/raygui.h /^#include <math.h>/;" h math.h third_party/raylib/include/raymath.h /^#include <math.h>/;" h math.h third_party/raylib/include/rlgl.h /^#include <math.h>/;" h @@ -8136,6 +10658,9 @@ maxDepthBits third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int maxDepthBits; \/\/ Maximum bits for depth component$/;" m struct:rlglData::__anon96c0c2130e08 typeref:typename:int maxDepthBits third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int maxDepthBits; \/\/ Maximum bits for depth component$/;" m struct:rlglData::__anon9e7796b80e08 typeref:typename:int max_redirects seobeo/seobeo_internal.h /^ int32 max_redirects;$/;" m struct:__anon7a4da8400608 typeref:typename:int32 +maxlen third_party/libuv/src/uv-common.h /^ size_t maxlen;$/;" m struct:uv__iou typeref:typename:size_t +member third_party/libuv/src/unix/os390-syscalls.h /^ struct uv__queue member;$/;" m struct:__anonf6e20ee80108 typeref:struct:uv__queue +members third_party/libuv/include/uv.h /^ char** members;$/;" m struct:uv_group_s typeref:typename:char ** meshCount third_party/raylib/include/raylib.h /^ int meshCount; \/\/ Number of meshes$/;" m struct:Model typeref:typename:int meshCount third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int meshCount; \/\/ Number of meshes$/;" m struct:Model typeref:typename:int meshCount third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int meshCount; \/\/ Number of meshes$/;" m struct:Model typeref:typename:int @@ -8149,6 +10674,9 @@ meshes third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Mesh *meshes; \/\/ Meshes array$/;" m struct:Model typeref:typename:Mesh * meshes third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Mesh *meshes; \/\/ Meshes array$/;" m struct:Model typeref:typename:Mesh * method seobeo/seobeo_internal.h /^ char *method;$/;" m struct:__anon7a4da8400608 typeref:typename:char * +metrics third_party/libuv/src/uv-common.h /^ uv_metrics_t metrics;$/;" m struct:uv__loop_metrics_s typeref:typename:uv_metrics_t +mfp_register third_party/libuv/docs/code/plugin/plugin.h /^void mfp_register(const char *name);$/;" p typeref:typename:void +min third_party/libuv/src/heap-inl.h /^ struct heap_node* min;$/;" m struct:heap typeref:struct:heap_node * min third_party/raylib/include/raylib.h /^ Vector3 min; \/\/ Minimum vertex box-corner$/;" m struct:BoundingBox typeref:typename:Vector3 min third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 min; \/\/ Minimum vertex box-corner$/;" m struct:BoundingBox typeref:typename:Vector3 min third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 min; \/\/ Minimum vertex box-corner$/;" m struct:BoundingBox typeref:typename:Vector3 @@ -8163,17 +10691,32 @@ mipmaps third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int mipmaps; \/\/ Mipmap levels, 1 by default$/;" m struct:Texture typeref:typename:int mipmaps third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int mipmaps; \/\/ Mipmap levels, 1 by default$/;" m struct:Image typeref:typename:int mipmaps third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int mipmaps; \/\/ Mipmap levels, 1 by default$/;" m struct:Texture typeref:typename:int +mkdtemp third_party/libuv/src/unix/os390-syscalls.h /^char *mkdtemp(char* path);$/;" p typeref:typename:char * +mmsghdr third_party/libuv/src/unix/darwin-syscalls.h /^struct mmsghdr {$/;" s modTime postdog/gui_window_file_dialog.h /^ int modTime;$/;" m struct:FileInfo typeref:typename:int mode dowa/stb_ds.h /^ unsigned char mode; \/\/ this isn't used by the string arena itself$/;" m struct:stbds_string_arena typeref:typename:unsigned char mode third_party/raylib/include/rlgl.h /^ int mode; \/\/ Drawing mode: LINES, TRIANGLES, QUADS$/;" m struct:rlDrawCall typeref:typename:int mode third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int mode; \/\/ Drawing mode: LINES, TRIANGLES, QUADS$/;" m struct:rlDrawCall typeref:typename:int mode third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int mode; \/\/ Drawing mode: LINES, TRIANGLES, QUADS$/;" m struct:rlDrawCall typeref:typename:int mode third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int mode; \/\/ Drawing mode: LINES, TRIANGLES, QUADS$/;" m struct:rlDrawCall typeref:typename:int +model third_party/libuv/include/uv.h /^ char* model;$/;" m struct:uv_cpu_info_s typeref:typename:char * modelview third_party/raylib/include/rlgl.h /^ Matrix modelview; \/\/ Default modelview matrix$/;" m struct:rlglData::__anonb66549aa0d08 typeref:typename:Matrix modelview third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ Matrix modelview; \/\/ Default modelview matrix$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:Matrix modelview third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ Matrix modelview; \/\/ Default modelview matrix$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:Matrix modelview third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ Matrix modelview; \/\/ Default modelview matrix$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:Matrix +msg_hdr third_party/libuv/src/unix/darwin-syscalls.h /^ struct msghdr msg_hdr;$/;" m struct:mmsghdr typeref:struct:msghdr +msg_len third_party/libuv/src/unix/darwin-syscalls.h /^ size_t msg_len;$/;" m struct:mmsghdr typeref:typename:size_t +msg_queue third_party/libuv/src/unix/os390-syscalls.h /^ int msg_queue;$/;" m struct:__anonf6e20ee80108 typeref:typename:int +mswsock.h third_party/libuv/include/uv/win.h /^#include <mswsock.h>/;" h +mswsock.h third_party/libuv/src/win/winsock.h /^#include <mswsock.h>/;" h +mutex third_party/libuv/include/uv/unix.h /^ uv_mutex_t mutex;$/;" m struct:_uv_barrier typeref:typename:uv_mutex_t +mutex third_party/libuv/include/uv/win.h /^ uv_mutex_t mutex;$/;" m struct:__anond441abe00408 typeref:typename:uv_mutex_t name postdog/gui_window_file_dialog.h /^ const char *name;$/;" m struct:FileInfo typeref:typename:const char * +name third_party/libuv/include/uv.h /^ char* name;$/;" m struct:uv_env_item_s typeref:typename:char * +name third_party/libuv/include/uv.h /^ char* name;$/;" m struct:uv_interface_address_s typeref:typename:char * +name third_party/libuv/include/uv.h /^ const char* name;$/;" m struct:uv_dirent_s typeref:typename:const char * +name third_party/libuv/test/runner-unix.h /^ char* name;$/;" m struct:__anonb753e3df0108 typeref:typename:char * +name third_party/libuv/test/runner-win.h /^ char *name;$/;" m struct:__anon343b4fa90108 typeref:typename:char * name third_party/raylib/include/raylib.h /^ char name[32]; \/\/ Animation name$/;" m struct:ModelAnimation typeref:typename:char[32] name third_party/raylib/include/raylib.h /^ char name[32]; \/\/ Bone name$/;" m struct:BoneInfo typeref:typename:char[32] name third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ char name[32]; \/\/ Animation name$/;" m struct:ModelAnimation typeref:typename:char[32] @@ -8184,10 +10727,22 @@ name third_party/raylib/raylib-5.5_win64/include/raylib.h /^ char name[32]; \/\/ Bone name$/;" m struct:BoneInfo typeref:typename:char[32] native_handle deita/deita_internal.h /^ void *native_handle;$/;" m struct:Deita_Connection typeref:typename:void * native_result deita/deita_internal.h /^ void *native_result;$/;" m struct:Deita_Result_Set typeref:typename:void * +nelts third_party/libuv/src/heap-inl.h /^ unsigned int nelts;$/;" m struct:heap typeref:typename:unsigned int +nentries third_party/libuv/include/uv.h /^ size_t nentries;$/;" m struct:uv_dir_s typeref:typename:size_t netdb.h seobeo/seobeo.h /^#include <netdb.h>/;" h +netdb.h third_party/libuv/include/uv/unix.h /^#include <netdb.h>/;" h netinet/in.h seobeo/seobeo.h /^#include <netinet\/in.h>/;" h +netinet/in.h third_party/libuv/include/uv/unix.h /^#include <netinet\/in.h>/;" h +netinet/tcp.h third_party/libuv/include/uv/unix.h /^#include <netinet\/tcp.h>/;" h +netmask third_party/libuv/include/uv.h /^ } netmask;$/;" m struct:uv_interface_address_s typeref:union:uv_interface_address_s::__anon4de24c23130a +netmask4 third_party/libuv/include/uv.h /^ struct sockaddr_in netmask4;$/;" m union:uv_interface_address_s::__anon4de24c23130a typeref:struct:sockaddr_in +netmask6 third_party/libuv/include/uv.h /^ struct sockaddr_in6 netmask6;$/;" m union:uv_interface_address_s::__anon4de24c23130a typeref:struct:sockaddr_in6 next dowa/stb_ds.h /^ struct stbds_string_block *next;$/;" m struct:stbds_string_block typeref:struct:stbds_string_block * next seobeo/seobeo_internal.h /^ Seobeo_WebSocket_Server_Connection *next;$/;" m struct:Seobeo_WebSocket_Server_Connection_Struct typeref:typename:Seobeo_WebSocket_Server_Connection * +next third_party/libuv/include/uv.h /^ struct uv__queue* next;$/;" m struct:uv__queue typeref:struct:uv__queue * +next third_party/libuv/src/win/fs-fd-hash-inl.h /^ struct uv__fd_hash_entry_group_s* next;$/;" m struct:uv__fd_hash_entry_group_s typeref:struct:uv__fd_hash_entry_group_s * +nice third_party/libuv/include/uv.h /^ uint64_t nice; \/* milliseconds *\/$/;" m struct:uv_cpu_times_s typeref:typename:uint64_t +noErr third_party/libuv/src/unix/darwin-stub.h /^static const OSStatus noErr = 0;$/;" v typeref:typename:const OSStatus normal third_party/raylib/include/raylib.h /^ Vector3 normal; \/\/ Surface normal of hit$/;" m struct:RayCollision typeref:typename:Vector3 normal third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 normal; \/\/ Surface normal of hit$/;" m struct:RayCollision typeref:typename:Vector3 normal third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 normal; \/\/ Surface normal of hit$/;" m struct:RayCollision typeref:typename:Vector3 @@ -8212,7 +10767,10 @@ normalz third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ float normalx, normaly, normalz; \/\/ Current active normal (added on glVertex*())$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:float normalz third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ float normalx, normaly, normalz; \/\/ Current active normal (added on glVertex*())$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:float normalz third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ float normalx, normaly, normalz; \/\/ Current active normal (added on glVertex*())$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:float +notify_parent_process third_party/libuv/test/task.h /^#define notify_parent_process(/;" d +notify_parent_process third_party/libuv/test/task.h /^extern void notify_parent_process(void);$/;" p typeref:typename:void offset dowa/dowa.h /^ size_t offset;$/;" m struct:__anon82503da00108 typeref:typename:size_t +offset third_party/libuv/src/unix/internal.h /^ unsigned int offset;$/;" m struct:uv__stream_queued_fds_s typeref:typename:unsigned int offset third_party/raylib/include/raylib.h /^ Vector2 offset; \/\/ Camera offset (displacement from target)$/;" m struct:Camera2D typeref:typename:Vector2 offset third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector2 offset; \/\/ Camera offset (displacement from target)$/;" m struct:Camera2D typeref:typename:Vector2 offset third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector2 offset; \/\/ Camera offset (displacement from target)$/;" m struct:Camera2D typeref:typename:Vector2 @@ -8230,6 +10788,10 @@ opcode seobeo/seobeo_internal.h /^ Seobeo_WebSocket_Opcode opcode;$/;" m struct:__anon7a4da8400a08 typeref:typename:Seobeo_WebSocket_Opcode openssl/err.h seobeo/seobeo_internal.h /^#include <openssl\/err.h>/;" h openssl/ssl.h seobeo/seobeo_internal.h /^#include <openssl\/ssl.h>/;" h +os390-syscalls.h third_party/libuv/src/unix/internal.h /^# include "os390-syscalls.h"/;" h +os390_readlink third_party/libuv/src/unix/os390-syscalls.h /^ssize_t os390_readlink(const char* path, char* buf, size_t len);$/;" p typeref:typename:ssize_t +out third_party/libuv/include/uv/unix.h /^ unsigned out;$/;" m struct:_uv_barrier typeref:typename:unsigned +out third_party/libuv/include/uv/win.h /^ unsigned out;$/;" m struct:__anond441abe00408 typeref:typename:unsigned p_arena dowa/dowa.h /^ Dowa_Arena *p_arena;$/;" m struct:__anon82503da00308 typeref:typename:Dowa_Arena * p_arena dowa/dowa.h /^ Dowa_Arena* p_arena;$/;" m struct:__anon82503da00508 typeref:typename:Dowa_Arena * p_arena seobeo/seobeo_internal.h /^ Dowa_Arena *p_arena;$/;" m struct:__anon7a4da8400608 typeref:typename:Dowa_Arena * @@ -8240,6 +10802,11 @@ p_handle seobeo/seobeo_internal.h /^ Seobeo_Handle *p_handle;$/;" m struct:__anon7a4da8400b08 typeref:typename:Seobeo_Handle * p_hash dowa/dowa.h /^ void *p_hash;$/;" m struct:__anon82503da00308 typeref:typename:void * p_user_data seobeo/seobeo_internal.h /^ void *p_user_data;$/;" m struct:__anon7a4da8400c08 typeref:typename:void * +pad third_party/libuv/include/uv/unix.h /^ char pad[sizeof(pthread_barrier_t) - sizeof(struct _uv_barrier*)];$/;" m struct:__anon5825c6f60108 typeref:typename:char[] +pad third_party/libuv/src/unix/darwin-stub.h /^ void* pad[3];$/;" m struct:FSEventStreamContext typeref:typename:void * [3] +pad third_party/libuv/src/unix/darwin-stub.h /^ void* pad[7];$/;" m struct:CFRunLoopSourceContext typeref:typename:void * [7] +padding_ third_party/libuv/include/uv/win.h /^ unsigned char padding_[44];$/;" m struct:__anond441abe00308 typeref:typename:unsigned char[44] +padding_ third_party/libuv/include/uv/win.h /^ unsigned char padding_[72];$/;" m struct:__anond441abe00308 typeref:typename:unsigned char[72] panOffset postdog/gui_window_file_dialog.h /^ Vector2 panOffset;$/;" m struct:__anoncb6fd9740108 typeref:typename:Vector2 params third_party/raylib/include/raylib.h /^ float params[4]; \/\/ Material generic parameters (if required)$/;" m struct:Material typeref:typename:float[4] params third_party/raylib/include/raylib.h /^ int params[4]; \/\/ Event parameters (if required)$/;" m struct:AutomationEvent typeref:typename:int[4] @@ -8249,6 +10816,7 @@ params third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int params[4]; \/\/ Event parameters (if required)$/;" m struct:AutomationEvent typeref:typename:int[4] params third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float params[4]; \/\/ Material generic parameters (if required)$/;" m struct:Material typeref:typename:float[4] params third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int params[4]; \/\/ Event parameters (if required)$/;" m struct:AutomationEvent typeref:typename:int[4] +parent third_party/libuv/src/heap-inl.h /^ struct heap_node* parent;$/;" m struct:heap_node typeref:struct:heap_node * parent third_party/raylib/include/raylib.h /^ int parent; \/\/ Bone parent$/;" m struct:BoneInfo typeref:typename:int parent third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int parent; \/\/ Bone parent$/;" m struct:BoneInfo typeref:typename:int parent third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int parent; \/\/ Bone parent$/;" m struct:BoneInfo typeref:typename:int @@ -8257,18 +10825,33 @@ path seobeo/seobeo_internal.h /^ char *path;$/;" m struct:__anon7a4da8400b08 typeref:typename:char * path seobeo/seobeo_internal.h /^ char *path;$/;" m struct:__anon7a4da8400608 typeref:typename:char * path seobeo/snapshot_creator.h /^ const char *path;$/;" m struct:__anon0d8f4d060108 typeref:typename:const char * +path third_party/libuv/include/uv.h /^ char* path;$/;" m struct:uv_fs_event_s typeref:typename:UV_HANDLE_FIELDS char * +path third_party/libuv/include/uv.h /^ const char* path;$/;" m struct:uv_fs_s typeref:typename:const char * paths third_party/raylib/include/raylib.h /^ char **paths; \/\/ Filepaths entries$/;" m struct:FilePathList typeref:typename:char ** paths third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ char **paths; \/\/ Filepaths entries$/;" m struct:FilePathList typeref:typename:char ** paths third_party/raylib/raylib-5.5_macos/include/raylib.h /^ char **paths; \/\/ Filepaths entries$/;" m struct:FilePathList typeref:typename:char ** paths third_party/raylib/raylib-5.5_win64/include/raylib.h /^ char **paths; \/\/ Filepaths entries$/;" m struct:FilePathList typeref:typename:char ** +pending_queue third_party/libuv/include/uv/unix.h /^ struct uv__queue pending_queue;$/;" m struct:uv__io_s typeref:struct:uv__queue +perform third_party/libuv/src/unix/darwin-stub.h /^ void (*perform)(void*);$/;" m struct:CFRunLoopSourceContext typeref:typename:void (*)(void *) +pevents third_party/libuv/include/uv/unix.h /^ unsigned int pevents; \/* Pending event mask i.e. mask at next tick. *\/$/;" m struct:uv__io_s typeref:typename:unsigned int +phys_addr third_party/libuv/include/uv.h /^ char phys_addr[6];$/;" m struct:uv_interface_address_s typeref:typename:char[6] +pid third_party/libuv/include/uv.h /^ int pid;$/;" m struct:uv_process_s typeref:typename:int +pid third_party/libuv/test/runner-unix.h /^ pid_t pid;$/;" m struct:__anonb753e3df0108 typeref:typename:pid_t +platform_init third_party/libuv/test/runner.h /^void platform_init(int argc, char** argv);$/;" p typeref:typename:void point third_party/raylib/include/raylib.h /^ Vector3 point; \/\/ Point of the nearest hit$/;" m struct:RayCollision typeref:typename:Vector3 point third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 point; \/\/ Point of the nearest hit$/;" m struct:RayCollision typeref:typename:Vector3 point third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 point; \/\/ Point of the nearest hit$/;" m struct:RayCollision typeref:typename:Vector3 point third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector3 point; \/\/ Point of the nearest hit$/;" m struct:RayCollision typeref:typename:Vector3 +poll.h third_party/libuv/src/unix/internal.h /^# include <poll.h>/;" h +poll.h third_party/libuv/src/unix/os390-syscalls.h /^#include <poll.h>/;" h +poll_cb third_party/libuv/include/uv.h /^ uv_poll_cb poll_cb;$/;" m struct:uv_poll_s typeref:typename:UV_HANDLE_FIELDS uv_poll_cb +poll_ctx third_party/libuv/include/uv.h /^ void* poll_ctx;$/;" m struct:uv_fs_poll_s typeref:typename:UV_HANDLE_FIELDS void * port seobeo/seobeo_internal.h /^ char *port;$/;" m struct:__anon7a4da8400b08 typeref:typename:char * port seobeo/seobeo_internal.h /^ char *port;$/;" m struct:__anon7a4da8400208 typeref:typename:char * port seobeo/seobeo_internal.h /^ char *port;$/;" m struct:__anon7a4da8400608 typeref:typename:char * port seobeo/snapshot_creator.h /^ const char *port;$/;" m struct:__anon0d8f4d060108 typeref:typename:const char * +port.h third_party/libuv/include/uv/sunos.h /^#include <port.h>/;" h +port.h third_party/libuv/src/unix/internal.h /^# include <port.h>/;" h position third_party/raylib/include/raylib.h /^ Vector3 position; \/\/ Camera position$/;" m struct:Camera3D typeref:typename:Vector3 position third_party/raylib/include/raylib.h /^ Vector3 position; \/\/ Ray position (origin)$/;" m struct:Ray typeref:typename:Vector3 position third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 position; \/\/ Camera position$/;" m struct:Camera3D typeref:typename:Vector3 @@ -8277,7 +10860,24 @@ position third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 position; \/\/ Ray position (origin)$/;" m struct:Ray typeref:typename:Vector3 position third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector3 position; \/\/ Camera position$/;" m struct:Camera3D typeref:typename:Vector3 position third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector3 position; \/\/ Ray position (origin)$/;" m struct:Ray typeref:typename:Vector3 +prev third_party/libuv/include/uv.h /^ struct uv__queue* prev;$/;" m struct:uv__queue typeref:struct:uv__queue * prevFilesListActive postdog/gui_window_file_dialog.h /^ int prevFilesListActive;$/;" m struct:__anoncb6fd9740108 typeref:typename:int +print_lines third_party/libuv/test/runner.h /^int print_lines(const char* buffer, size_t size, FILE* stream, int partial);$/;" p typeref:typename:int +print_tests third_party/libuv/test/runner.h /^void print_tests(FILE* stream);$/;" p typeref:typename:void +process third_party/libuv/test/runner-win.h /^ HANDLE process;$/;" m struct:__anon343b4fa90108 typeref:typename:HANDLE +process.h third_party/libuv/include/uv/win.h /^#include <process.h>/;" h +process_cleanup third_party/libuv/test/runner.h /^void process_cleanup(process_info_t *p);$/;" p typeref:typename:void +process_copy_output third_party/libuv/test/runner.h /^int process_copy_output(process_info_t* p, FILE* stream);$/;" p typeref:typename:int +process_get_name third_party/libuv/test/runner.h /^char* process_get_name(process_info_t *p);$/;" p typeref:typename:char * +process_info_t third_party/libuv/test/runner-unix.h /^} process_info_t;$/;" t typeref:struct:__anonb753e3df0108 +process_info_t third_party/libuv/test/runner-win.h /^} process_info_t;$/;" t typeref:struct:__anon343b4fa90108 +process_name third_party/libuv/test/runner.h /^ char *process_name;$/;" m struct:__anona47773ae0108 typeref:typename:char * +process_output_size third_party/libuv/test/runner.h /^long int process_output_size(process_info_t *p);$/;" p typeref:typename:long int +process_read_last_line third_party/libuv/test/runner.h /^int process_read_last_line(process_info_t *p,$/;" p typeref:typename:int +process_reap third_party/libuv/test/runner.h /^int process_reap(process_info_t *p);$/;" p typeref:typename:int +process_start third_party/libuv/test/runner.h /^int process_start(char *name, char* part, process_info_t *p, int is_helper);$/;" p typeref:typename:int +process_terminate third_party/libuv/test/runner.h /^int process_terminate(process_info_t *p);$/;" p typeref:typename:int +process_wait third_party/libuv/test/runner.h /^int process_wait(process_info_t *vec, int n, int timeout);$/;" p typeref:typename:int processor third_party/raylib/include/raylib.h /^ rAudioProcessor *processor; \/\/ Pointer to internal data processor, useful for audio effect/;" m struct:AudioStream typeref:typename:rAudioProcessor * processor third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ rAudioProcessor *processor; \/\/ Pointer to internal data processor, useful for audio effect/;" m struct:AudioStream typeref:typename:rAudioProcessor * processor third_party/raylib/raylib-5.5_macos/include/raylib.h /^ rAudioProcessor *processor; \/\/ Pointer to internal data processor, useful for audio effect/;" m struct:AudioStream typeref:typename:rAudioProcessor * @@ -8300,7 +10900,14 @@ projectionStereo third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ Matrix projectionStereo[2]; \/\/ VR stereo rendering eyes projection matrices$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:Matrix[2] propertyId third_party/raylib/include/raygui.h /^ unsigned short propertyId; \/\/ Property identifier$/;" m struct:GuiStyleProp typeref:typename:unsigned short propertyValue third_party/raylib/include/raygui.h /^ int propertyValue; \/\/ Property value$/;" m struct:GuiStyleProp typeref:typename:int +provider_entry_time third_party/libuv/src/uv-common.h /^ uint64_t provider_entry_time;$/;" m struct:uv__loop_metrics_s typeref:typename:uint64_t +provider_idle_time third_party/libuv/src/uv-common.h /^ uint64_t provider_idle_time;$/;" m struct:uv__loop_metrics_s typeref:typename:uint64_t pthread.h seobeo/seobeo.h /^#include <pthread.h>/;" h +pthread.h third_party/libuv/include/uv/unix.h /^#include <pthread.h>/;" h +pthread.h third_party/libuv/src/unix/os390-syscalls.h /^#include <pthread.h>/;" h +ptr third_party/libuv/include/uv.h /^ void* ptr;$/;" m struct:uv_fs_s typeref:typename:void * +pwd.h third_party/libuv/include/uv/unix.h /^#include <pwd.h>/;" h +queue.h third_party/libuv/src/uv-common.h /^#include "queue.h"/;" h r third_party/raylib/include/raygui.h /^ unsigned char r;$/;" m struct:Color typeref:typename:unsigned char r third_party/raylib/include/raylib.h /^ unsigned char r; \/\/ Color red value$/;" m struct:Color typeref:typename:unsigned char r third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned char r; \/\/ Color red value$/;" m struct:Color typeref:typename:unsigned char @@ -8319,14 +10926,24 @@ read_buffer_capacity seobeo/seobeo_internal.h /^ uint32 read_buffer_capacity;$/;" m struct:__anon7a4da8400208 typeref:typename:uint32 read_buffer_len seobeo/seobeo_internal.h /^ uint32 read_buffer_len; \/\/ current size$/;" m struct:__anon7a4da8400208 typeref:typename:uint32 read_buffer_used seobeo/seobeo_internal.h /^ uint32 read_buffer_used; \/\/ TODO: Implement this for client $/;" m struct:__anon7a4da8400208 typeref:typename:uint32 +read_write_lock_ third_party/libuv/include/uv/win.h /^ SRWLOCK read_write_lock_;$/;" m struct:__anond441abe00308 typeref:typename:SRWLOCK recs third_party/raylib/include/raygui.h /^ Rectangle *recs; \/\/ Rectangles in texture for the glyphs$/;" m struct:Font typeref:typename:Rectangle * recs third_party/raylib/include/raylib.h /^ Rectangle *recs; \/\/ Rectangles in texture for the glyphs$/;" m struct:Font typeref:typename:Rectangle * recs third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Rectangle *recs; \/\/ Rectangles in texture for the glyphs$/;" m struct:Font typeref:typename:Rectangle * recs third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Rectangle *recs; \/\/ Rectangles in texture for the glyphs$/;" m struct:Font typeref:typename:Rectangle * recs third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Rectangle *recs; \/\/ Rectangles in texture for the glyphs$/;" m struct:Font typeref:typename:Rectangle * +recvmsg_x third_party/libuv/src/unix/darwin-syscalls.h /^ssize_t recvmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags);$/;" p typeref:typename:ssize_t redirect_url seobeo/seobeo_internal.h /^ char *redirect_url;$/;" m struct:__anon7a4da8400708 typeref:typename:char * +release third_party/libuv/include/uv.h /^ char release[256];$/;" m struct:uv_utsname_s typeref:typename:char[256] remaining dowa/stb_ds.h /^ size_t remaining;$/;" m struct:stbds_string_arena typeref:typename:size_t +req-inl.h third_party/libuv/src/win/stream-inl.h /^#include "req-inl.h"/;" h +reqevents third_party/libuv/src/unix/internal.h /^# define reqevents /;" d +reserved third_party/libuv/include/uv.h /^ uint64_t* reserved[13];$/;" m struct:uv_metrics_s typeref:typename:uint64_t * [13] +reserved third_party/libuv/include/uv.h /^ void* reserved[4];$/;" m struct:uv_dir_s typeref:typename:void * [4] +result third_party/libuv/include/uv.h /^ ssize_t result;$/;" m struct:uv_fs_s typeref:typename:ssize_t result third_party/raylib/include/raygui.h /^ int result; \/\/ Original return value (0 = no change, 1 = mode changed)$/;" m struct:JUNE_TextBoxResult typeref:typename:int +rewind_cursor third_party/libuv/test/runner.h /^void rewind_cursor(void);$/;" p typeref:typename:void +right third_party/libuv/src/heap-inl.h /^ struct heap_node* right;$/;" m struct:heap_node typeref:struct:heap_node * right third_party/raylib/include/raylib.h /^ int right; \/\/ Right border offset$/;" m struct:NPatchInfo typeref:typename:int right third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int right; \/\/ Right border offset$/;" m struct:NPatchInfo typeref:typename:int right third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int right; \/\/ Right border offset$/;" m struct:NPatchInfo typeref:typename:int @@ -8339,6 +10956,7 @@ rightScreenCenter third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float rightScreenCenter[2]; \/\/ VR right screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] rightScreenCenter third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float rightScreenCenter[2]; \/\/ VR right screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] rightScreenCenter third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float rightScreenCenter[2]; \/\/ VR right screen center$/;" m struct:VrStereoConfig typeref:typename:float[2] +ringfd third_party/libuv/src/uv-common.h /^ int ringfd;$/;" m struct:uv__iou typeref:typename:int rlActiveDrawBuffers third_party/raylib/include/rlgl.h /^RLAPI void rlActiveDrawBuffers(int count); \/\/ Activate multiple draw color buffer/;" p typeref:typename:RLAPI void rlActiveDrawBuffers third_party/raylib/include/rlgl.h /^void rlActiveDrawBuffers(int count)$/;" f typeref:typename:void rlActiveDrawBuffers third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^RLAPI void rlActiveDrawBuffers(int count); \/\/ Activate multiple draw color buffer/;" p typeref:typename:RLAPI void @@ -9835,6 +12453,40 @@ rotation third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float rotation; \/\/ Camera rotation in degrees$/;" m struct:Camera2D typeref:typename:float rotation third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Quaternion rotation; \/\/ Rotation$/;" m struct:Transform typeref:typename:Quaternion rotation third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float rotation; \/\/ Camera rotation in degrees$/;" m struct:Camera2D typeref:typename:float +rtnevents third_party/libuv/src/unix/internal.h /^# define rtnevents /;" d +ru_idrss third_party/libuv/include/uv.h /^ uint64_t ru_idrss; \/* integral unshared data size *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_inblock third_party/libuv/include/uv.h /^ uint64_t ru_inblock; \/* block input operations *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_isrss third_party/libuv/include/uv.h /^ uint64_t ru_isrss; \/* integral unshared stack size *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_ixrss third_party/libuv/include/uv.h /^ uint64_t ru_ixrss; \/* integral shared memory size *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_majflt third_party/libuv/include/uv.h /^ uint64_t ru_majflt; \/* page faults (hard page faults) *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_maxrss third_party/libuv/include/uv.h /^ uint64_t ru_maxrss; \/* maximum resident set size *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_minflt third_party/libuv/include/uv.h /^ uint64_t ru_minflt; \/* page reclaims (soft page faults) *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_msgrcv third_party/libuv/include/uv.h /^ uint64_t ru_msgrcv; \/* IPC messages received *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_msgsnd third_party/libuv/include/uv.h /^ uint64_t ru_msgsnd; \/* IPC messages sent *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_nivcsw third_party/libuv/include/uv.h /^ uint64_t ru_nivcsw; \/* involuntary context switches *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_nsignals third_party/libuv/include/uv.h /^ uint64_t ru_nsignals; \/* signals received *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_nswap third_party/libuv/include/uv.h /^ uint64_t ru_nswap; \/* swaps *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_nvcsw third_party/libuv/include/uv.h /^ uint64_t ru_nvcsw; \/* voluntary context switches *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_oublock third_party/libuv/include/uv.h /^ uint64_t ru_oublock; \/* block output operations *\/$/;" m struct:__anon4de24c231508 typeref:typename:uint64_t +ru_stime third_party/libuv/include/uv.h /^ uv_timeval_t ru_stime; \/* system CPU time used *\/$/;" m struct:__anon4de24c231508 typeref:typename:uv_timeval_t +ru_utime third_party/libuv/include/uv.h /^ uv_timeval_t ru_utime; \/* user CPU time used *\/$/;" m struct:__anon4de24c231508 typeref:typename:uv_timeval_t +run_test third_party/libuv/test/runner.h /^int run_test(const char* test,$/;" p typeref:typename:int +run_test_part third_party/libuv/test/runner.h /^int run_test_part(const char* test, const char* part);$/;" p typeref:typename:int +run_tests third_party/libuv/test/runner.h /^int run_tests(int benchmark_output);$/;" p typeref:typename:int +runner-unix.h third_party/libuv/test/runner.h /^# include "runner-unix.h"/;" h +runner-win.h third_party/libuv/test/runner.h /^# include "runner-win.h"/;" h +sGetFileInformationByName third_party/libuv/src/win/winapi.h /^typedef BOOL(WINAPI* sGetFileInformationByName)($/;" t typeref:typename:BOOL (WINAPI *)(PCWSTR FileName,FILE_INFO_BY_NAME_CLASS FileInformationClass,PVOID FileInfoBuffer,ULONG FileInfoBufferSize) +sNtDeviceIoControlFile third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtDeviceIoControlFile)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE FileHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,PIO_STATUS_BLOCK IoStatusBlock,ULONG IoControlCode,PVOID InputBuffer,ULONG InputBufferLength,PVOID OutputBuffer,ULONG OutputBufferLength) +sNtQueryDirectoryFile third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtQueryDirectoryFile)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE FileHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,PIO_STATUS_BLOCK IoStatusBlock,PVOID FileInformation,ULONG Length,FILE_INFORMATION_CLASS FileInformationClass,BOOLEAN ReturnSingleEntry,PUNICODE_STRING FileName,BOOLEAN RestartScan) +sNtQueryInformationFile third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtQueryInformationFile)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE FileHandle,PIO_STATUS_BLOCK IoStatusBlock,PVOID FileInformation,ULONG Length,FILE_INFORMATION_CLASS FileInformationClass) +sNtQueryInformationProcess third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtQueryInformationProcess)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE ProcessHandle,UINT ProcessInformationClass,PVOID ProcessInformation,ULONG Length,PULONG ReturnLength) +sNtQuerySystemInformation third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtQuerySystemInformation)$/;" t typeref:typename:NTSTATUS (NTAPI *)(UINT SystemInformationClass,PVOID SystemInformation,ULONG SystemInformationLength,PULONG ReturnLength) +sNtQueryVolumeInformationFile third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtQueryVolumeInformationFile)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE FileHandle,PIO_STATUS_BLOCK IoStatusBlock,PVOID FsInformation,ULONG Length,FS_INFORMATION_CLASS FsInformationClass) +sNtSetInformationFile third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sNtSetInformationFile)$/;" t typeref:typename:NTSTATUS (NTAPI *)(HANDLE FileHandle,PIO_STATUS_BLOCK IoStatusBlock,PVOID FileInformation,ULONG Length,FILE_INFORMATION_CLASS FileInformationClass) +sPowerRegisterSuspendResumeNotification third_party/libuv/src/win/winapi.h /^typedef DWORD (WINAPI *sPowerRegisterSuspendResumeNotification)$/;" t typeref:typename:DWORD (WINAPI *)(DWORD Flags,HANDLE Recipient,_PHPOWERNOTIFY RegistrationHandle) +sRtlGetVersion third_party/libuv/src/win/winapi.h /^typedef NTSTATUS (NTAPI *sRtlGetVersion)$/;" t typeref:typename:NTSTATUS (NTAPI *)(PRTL_OSVERSIONINFOW lpVersionInformation) +sRtlNtStatusToDosError third_party/libuv/src/win/winapi.h /^typedef ULONG (NTAPI *sRtlNtStatusToDosError)$/;" t typeref:typename:ULONG (NTAPI *)(NTSTATUS Status) +sSetWinEventHook third_party/libuv/src/win/winapi.h /^typedef HWINEVENTHOOK (WINAPI *sSetWinEventHook)$/;" t typeref:typename:HWINEVENTHOOK (WINAPI *)(UINT eventMin,UINT eventMax,HMODULE hmodWinEventProc,WINEVENTPROC lpfnWinEventProc,DWORD idProcess,DWORD idThread,UINT dwflags) sampleRate third_party/raylib/include/raylib.h /^ unsigned int sampleRate; \/\/ Frequency (samples per second)$/;" m struct:AudioStream typeref:typename:unsigned int sampleRate third_party/raylib/include/raylib.h /^ unsigned int sampleRate; \/\/ Frequency (samples per second)$/;" m struct:Wave typeref:typename:unsigned int sampleRate third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned int sampleRate; \/\/ Frequency (samples per second)$/;" m struct:AudioStream typeref:typename:unsigned int @@ -9851,6 +12503,7 @@ sampleSize third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned int sampleSize; \/\/ Bit depth (bits per sample): 8, 16, 32 (24 not supported)$/;" m struct:Wave typeref:typename:unsigned int sampleSize third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int sampleSize; \/\/ Bit depth (bits per sample): 8, 16, 32 (24 not supported)$/;" m struct:AudioStream typeref:typename:unsigned int sampleSize third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int sampleSize; \/\/ Bit depth (bits per sample): 8, 16, 32 (24 not supported)$/;" m struct:Wave typeref:typename:unsigned int +sanitizer/msan_interface.h third_party/libuv/src/unix/internal.h /^# include <sanitizer\/msan_interface.h>/;" h saveFileMode postdog/gui_window_file_dialog.h /^ bool saveFileMode;$/;" m struct:__anoncb6fd9740108 typeref:typename:bool scale third_party/raylib/include/raylib.h /^ Vector3 scale; \/\/ Scale$/;" m struct:Transform typeref:typename:Vector3 scale third_party/raylib/include/raylib.h /^ float scale[2]; \/\/ VR distortion scale$/;" m struct:VrStereoConfig typeref:typename:float[2] @@ -9864,9 +12517,20 @@ scaleIn third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float scaleIn[2]; \/\/ VR distortion scale in$/;" m struct:VrStereoConfig typeref:typename:float[2] scaleIn third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float scaleIn[2]; \/\/ VR distortion scale in$/;" m struct:VrStereoConfig typeref:typename:float[2] scaleIn third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float scaleIn[2]; \/\/ VR distortion scale in$/;" m struct:VrStereoConfig typeref:typename:float[2] +scandir third_party/libuv/src/unix/os390-syscalls.h /^int scandir(const char* maindir, struct dirent*** namelist,$/;" p typeref:typename:int seed dowa/stb_ds.h /^ size_t seed;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t selectionEnd third_party/raylib/include/raygui.h /^ int selectionEnd; \/\/ End index of selection (-1 if no selection)$/;" m struct:JUNE_TextBoxResult typeref:typename:int selectionStart third_party/raylib/include/raygui.h /^ int selectionStart; \/\/ Start index of selection (-1 if no selection)$/;" m struct:JUNE_TextBoxResult typeref:typename:int +sem_destroy third_party/libuv/src/unix/os390-syscalls.h /^int sem_destroy(UV_PLATFORM_SEM_T* semid);$/;" p typeref:typename:int +sem_init third_party/libuv/src/unix/os390-syscalls.h /^int sem_init(UV_PLATFORM_SEM_T* semid, int pshared, unsigned int value);$/;" p typeref:typename:int +sem_post third_party/libuv/src/unix/os390-syscalls.h /^int sem_post(UV_PLATFORM_SEM_T* semid);$/;" p typeref:typename:int +sem_trywait third_party/libuv/src/unix/os390-syscalls.h /^int sem_trywait(UV_PLATFORM_SEM_T* semid);$/;" p typeref:typename:int +sem_wait third_party/libuv/src/unix/os390-syscalls.h /^int sem_wait(UV_PLATFORM_SEM_T* semid);$/;" p typeref:typename:int +semaphore.h third_party/libuv/include/uv/unix.h /^#include <semaphore.h>/;" h +send_handle third_party/libuv/include/uv.h /^ uv_stream_t* send_handle; \/* TODO: make private and unix-only in v2.x. *\/$/;" m struct:uv_write_s typeref:typename:uv_stream_t * +send_queue_count third_party/libuv/include/uv.h /^ size_t send_queue_count;$/;" m struct:uv_udp_s typeref:typename:size_t +send_queue_size third_party/libuv/include/uv.h /^ size_t send_queue_size;$/;" m struct:uv_udp_s typeref:typename:UV_HANDLE_FIELDS size_t +sendmsg_x third_party/libuv/src/unix/darwin-syscalls.h /^ssize_t sendmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int flags);$/;" p typeref:typename:ssize_t seobeo/seobeo.h mrjunejune/test/test.h /^#include "seobeo\/seobeo.h"/;" h seobeo/seobeo.h seobeo/snapshot_creator.h /^#include "seobeo\/seobeo.h"/;" h seobeo/seobeo_internal.h seobeo/seobeo.h /^#include "seobeo\/seobeo_internal.h"/;" h @@ -9880,6 +12544,7 @@ shdefault dowa/stb_ds.h /^#define shdefault stbds_shdefault$/;" d shdefaults dowa/stb_ds.h /^#define shdefaults stbds_shdefaults$/;" d shdel dowa/stb_ds.h /^#define shdel stbds_shdel$/;" d +shell third_party/libuv/include/uv.h /^ char* shell;$/;" m struct:uv_passwd_s typeref:typename:char * shfree dowa/stb_ds.h /^#define shfree stbds_shfree$/;" d shget dowa/stb_ds.h /^#define shget stbds_shget$/;" d shgeti dowa/stb_ds.h /^#define shgeti stbds_shgeti$/;" d @@ -9888,29 +12553,69 @@ shgets dowa/stb_ds.h /^#define shgets stbds_shgets$/;" d shlen dowa/stb_ds.h /^#define shlen stbds_shlen$/;" d shlenu dowa/stb_ds.h /^#define shlenu stbds_shlenu$/;" d +show_output third_party/libuv/test/runner.h /^ int show_output;$/;" m struct:__anona47773ae0108 typeref:typename:int shput dowa/stb_ds.h /^#define shput stbds_shput$/;" d shputi dowa/stb_ds.h /^#define shputi stbds_shputi$/;" d shputs dowa/stb_ds.h /^#define shputs stbds_shputs$/;" d signal.h mrjunejune/test/test.h /^#include <signal.h>/;" h signal.h seobeo/seobeo.h /^#include <signal.h>/;" h +signal.h third_party/libuv/include/uv/unix.h /^#include <signal.h>/;" h +signal.h third_party/libuv/include/uv/win.h /^#include <signal.h>/;" h +signal_cb third_party/libuv/include/uv.h /^ uv_signal_cb signal_cb;$/;" m struct:uv_signal_s typeref:typename:UV_HANDLE_FIELDS uv_signal_cb +signal_event third_party/libuv/include/uv/win.h /^ HANDLE signal_event;$/;" m struct:__anond441abe0010a::__anond441abe00208 typeref:typename:HANDLE +signum third_party/libuv/include/uv.h /^ int signum;$/;" m struct:uv_signal_s typeref:typename:int size postdog/gui_window_file_dialog.h /^ int size;$/;" m struct:FileInfo typeref:typename:int size seobeo/seobeo_internal.h /^ size_t size;$/;" m struct:__anon7a4da8400308 typeref:typename:size_t +size third_party/libuv/src/unix/internal.h /^ unsigned int size;$/;" m struct:uv__stream_queued_fds_s typeref:typename:unsigned int +size third_party/libuv/src/unix/os390-syscalls.h /^ unsigned long size;$/;" m struct:__anonf6e20ee80108 typeref:typename:unsigned long +size third_party/libuv/src/win/fs-fd-hash-inl.h /^ LARGE_INTEGER size;$/;" m struct:uv__fd_info_s typeref:typename:LARGE_INTEGER +size third_party/libuv/src/win/fs-fd-hash-inl.h /^ size_t size;$/;" m struct:uv__fd_hash_bucket_s typeref:typename:size_t slot_count dowa/stb_ds.h /^ size_t slot_count;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t slot_count_log2 dowa/stb_ds.h /^ size_t slot_count_log2;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t snapshot_dir seobeo/snapshot_creator.h /^ const char *snapshot_dir;$/;" m struct:__anon0d8f4d060108 typeref:typename:const char * +snprintf third_party/libuv/src/uv-common.h /^extern int snprintf(char*, size_t, const char*, ...);$/;" p typeref:typename:int +snprintf third_party/libuv/test/runner-win.h /^extern int snprintf(char*, size_t, const char*, ...);$/;" p typeref:typename:int +snprintf third_party/libuv/test/task.h /^extern int snprintf(char*, size_t, const char*, ...);$/;" p typeref:typename:int socket seobeo/seobeo_internal.h /^ int32 socket; $/;" m struct:__anon7a4da8400208 typeref:typename:int32 +socket_info third_party/libuv/src/win/internal.h /^ WSAPROTOCOL_INFOW socket_info;$/;" m struct:__anondc6407360208 typeref:typename:WSAPROTOCOL_INFOW source third_party/raylib/include/raylib.h /^ Rectangle source; \/\/ Texture source rectangle$/;" m struct:NPatchInfo typeref:typename:Rectangle source third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Rectangle source; \/\/ Texture source rectangle$/;" m struct:NPatchInfo typeref:typename:Rectangle source third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Rectangle source; \/\/ Texture source rectangle$/;" m struct:NPatchInfo typeref:typename:Rectangle source third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Rectangle source; \/\/ Texture source rectangle$/;" m struct:NPatchInfo typeref:typename:Rectangle +speed third_party/libuv/include/uv.h /^ int speed;$/;" m struct:uv_cpu_info_s typeref:typename:int +sq third_party/libuv/src/uv-common.h /^ void* sq; \/* pointer to munmap() on event loop teardown *\/$/;" m struct:uv__iou typeref:typename:void * +sqe third_party/libuv/src/uv-common.h /^ void* sqe; \/* pointer to array of struct uv__io_uring_sqe *\/$/;" m struct:uv__iou typeref:typename:void * +sqelen third_party/libuv/src/uv-common.h /^ size_t sqelen;$/;" m struct:uv__iou typeref:typename:size_t +sqflags third_party/libuv/src/uv-common.h /^ uint32_t* sqflags;$/;" m struct:uv__iou typeref:typename:uint32_t * +sqhead third_party/libuv/src/uv-common.h /^ uint32_t* sqhead;$/;" m struct:uv__iou typeref:typename:uint32_t * +sqlen third_party/libuv/src/uv-common.h /^ size_t sqlen;$/;" m struct:uv__iou typeref:typename:size_t sqlite3.h deita/deita_internal.h /^#include <sqlite3.h>/;" h +sqmask third_party/libuv/src/uv-common.h /^ uint32_t sqmask;$/;" m struct:uv__iou typeref:typename:uint32_t +sqtail third_party/libuv/src/uv-common.h /^ uint32_t* sqtail;$/;" m struct:uv__iou typeref:typename:uint32_t * srv seobeo/seobeo_internal.h /^ Seobeo_Handle *srv;$/;" m struct:__anon7a4da8400408 typeref:typename:Seobeo_Handle * ssbo third_party/raylib/include/rlgl.h /^ bool ssbo; \/\/ Shader storage buffer object support (GL_ARB_sh/;" m struct:rlglData::__anonb66549aa0e08 typeref:typename:bool ssbo third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ bool ssbo; \/\/ Shader storage buffer object support (GL_ARB_sh/;" m struct:rlglData::__anon0cdf4ceb0e08 typeref:typename:bool ssbo third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ bool ssbo; \/\/ Shader storage buffer object support (GL_ARB_sh/;" m struct:rlglData::__anon96c0c2130e08 typeref:typename:bool ssbo third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ bool ssbo; \/\/ Shader storage buffer object support (GL_ARB_sh/;" m struct:rlglData::__anon9e7796b80e08 typeref:typename:bool +ssize_t third_party/libuv/include/uv/win.h /^typedef intptr_t ssize_t;$/;" t typeref:typename:intptr_t ssl seobeo/seobeo_internal.h /^ SSL_TYPE *ssl;$/;" m struct:__anon7a4da8400208 typeref:typename:SSL_TYPE * ssl_ctx seobeo/seobeo_internal.h /^ SSL_CTX_TYPE *ssl_ctx;$/;" m struct:__anon7a4da8400208 typeref:typename:SSL_CTX_TYPE * +st_atim third_party/libuv/include/uv.h /^ uv_timespec_t st_atim;$/;" m struct:__anon4de24c230b08 typeref:typename:uv_timespec_t +st_birthtim third_party/libuv/include/uv.h /^ uv_timespec_t st_birthtim;$/;" m struct:__anon4de24c230b08 typeref:typename:uv_timespec_t +st_blksize third_party/libuv/include/uv.h /^ uint64_t st_blksize;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_blocks third_party/libuv/include/uv.h /^ uint64_t st_blocks;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_ctim third_party/libuv/include/uv.h /^ uv_timespec_t st_ctim;$/;" m struct:__anon4de24c230b08 typeref:typename:uv_timespec_t +st_dev third_party/libuv/include/uv.h /^ uint64_t st_dev;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_flags third_party/libuv/include/uv.h /^ uint64_t st_flags;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_gen third_party/libuv/include/uv.h /^ uint64_t st_gen;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_gid third_party/libuv/include/uv.h /^ uint64_t st_gid;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_ino third_party/libuv/include/uv.h /^ uint64_t st_ino;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_mode third_party/libuv/include/uv.h /^ uint64_t st_mode;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_mtim third_party/libuv/include/uv.h /^ uv_timespec_t st_mtim;$/;" m struct:__anon4de24c230b08 typeref:typename:uv_timespec_t +st_nlink third_party/libuv/include/uv.h /^ uint64_t st_nlink;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_rdev third_party/libuv/include/uv.h /^ uint64_t st_rdev;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_size third_party/libuv/include/uv.h /^ uint64_t st_size;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t +st_uid third_party/libuv/include/uv.h /^ uint64_t st_uid;$/;" m struct:__anon4de24c230b08 typeref:typename:uint64_t stack third_party/raylib/include/rlgl.h /^ Matrix stack[RL_MAX_MATRIX_STACK_SIZE];\/\/ Matrix stack for push\/pop$/;" m struct:rlglData::__anonb66549aa0d08 typeref:typename:Matrix[] stack third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ Matrix stack[RL_MAX_MATRIX_STACK_SIZE];\/\/ Matrix stack for push\/pop$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:Matrix[] stack third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ Matrix stack[RL_MAX_MATRIX_STACK_SIZE];\/\/ Matrix stack for push\/pop$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:Matrix[] @@ -9919,9 +12624,13 @@ stackCounter third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int stackCounter; \/\/ Matrix stack counter$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:int stackCounter third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int stackCounter; \/\/ Matrix stack counter$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:int stackCounter third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ int stackCounter; \/\/ Matrix stack counter$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:int +stack_size third_party/libuv/include/uv.h /^ size_t stack_size;$/;" m struct:uv_thread_options_s typeref:typename:size_t start_test_server mrjunejune/test/test.h /^pid_t start_test_server(const char *server_binary)$/;" f typeref:typename:pid_t start_test_server mrjunejune/test/test.h /^pid_t start_test_server(const char *server_binary);$/;" p typeref:typename:pid_t +statbuf third_party/libuv/include/uv.h /^ uv_stat_t statbuf; \/* Stores the result of uv_fs_stat() and uv_fs_fstat(). *\/$/;" m struct:uv_fs_s typeref:typename:uv_stat_t state seobeo/seobeo_internal.h /^ Seobeo_WebSocket_State state;$/;" m struct:__anon7a4da8400b08 typeref:typename:Seobeo_WebSocket_State +status third_party/libuv/include/uv.h /^ int status;$/;" m struct:uv_random_s typeref:typename:int +status third_party/libuv/test/runner-unix.h /^ int status;$/;" m struct:__anonb753e3df0108 typeref:typename:int status_code seobeo/seobeo_internal.h /^ int32 status_code;$/;" m struct:__anon7a4da8400708 typeref:typename:int32 status_text seobeo/seobeo_internal.h /^ char *status_text;$/;" m struct:__anon7a4da8400708 typeref:typename:char * stbds_arraddn dowa/stb_ds.h /^#define stbds_arraddn(a,n) ((void)(stbds_arraddni/;" d @@ -10057,12 +12766,14 @@ stbds_unit_tests dowa/stb_ds.h /^extern void stbds_unit_tests(void);$/;" p typeref:typename:void stbds_unit_tests dowa/stb_ds.h /^void stbds_unit_tests(void)$/;" f typeref:typename:void stdarg.h seobeo/seobeo.h /^#include <stdarg.h>/;" h +stdarg.h third_party/libuv/src/uv-common.h /^#include <stdarg.h>/;" h stdarg.h third_party/raylib/include/raygui.h /^#include <stdarg.h>/;" h stdarg.h third_party/raylib/include/raylib.h /^#include <stdarg.h>/;" h stdarg.h third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^#include <stdarg.h>/;" h stdarg.h third_party/raylib/raylib-5.5_macos/include/raylib.h /^#include <stdarg.h>/;" h stdarg.h third_party/raylib/raylib-5.5_win64/include/raylib.h /^#include <stdarg.h>/;" h stdatomic.h seobeo/seobeo_internal.h /^#include <stdatomic.h>/;" h +stdatomic.h third_party/libuv/src/uv-common.h /^# include <stdatomic.h>/;" h stdbool.h third_party/raylib/include/raylib.h /^ #include <stdbool.h>/;" h stdbool.h third_party/raylib/include/rlgl.h /^ #include <stdbool.h>/;" h stdbool.h third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ #include <stdbool.h>/;" h @@ -10074,28 +12785,54 @@ stddef.h dowa/dowa.h /^#include <stddef.h>/;" h stddef.h dowa/stb_ds.h /^#include <stddef.h>/;" h stddef.h markdown_converter/markdown_to_html.h /^#include <stddef.h>/;" h +stddef.h third_party/libuv/include/uv.h /^#include <stddef.h>/;" h +stddef.h third_party/libuv/src/heap-inl.h /^#include <stddef.h>/;" h +stddef.h third_party/libuv/src/queue.h /^#include <stddef.h>/;" h +stddef.h third_party/libuv/src/uv-common.h /^#include <stddef.h>/;" h +stddef.h third_party/libuv/test/task.h /^#include <stddef.h>/;" h +stdint.h third_party/libuv/include/uv.h /^#include <stdint.h>/;" h +stdint.h third_party/libuv/include/uv/win.h /^#include <stdint.h>/;" h +stdint.h third_party/libuv/src/unix/darwin-stub.h /^#include <stdint.h>/;" h +stdint.h third_party/libuv/src/unix/internal.h /^#include <stdint.h>/;" h +stdint.h third_party/libuv/src/uv-common.h /^#include <stdint.h>/;" h +stdint.h third_party/libuv/test/task.h /^#include <stdint.h>/;" h +stdio third_party/libuv/include/uv.h /^ uv_stdio_container_t* stdio;$/;" m struct:uv_process_options_s typeref:typename:uv_stdio_container_t * stdio.h dowa/dowa.h /^#include <stdio.h>/;" h stdio.h dowa/stb_ds.h /^#include <stdio.h>/;" h stdio.h mrjunejune/test/test.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/include/uv.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/src/unix/internal.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/test/runner-unix.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/test/runner-win.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/test/runner.h /^#include <stdio.h>/;" h +stdio.h third_party/libuv/test/task.h /^#include <stdio.h>/;" h stdio.h third_party/raylib/include/raygui.h /^#include <stdio.h>/;" h +stdio_count third_party/libuv/include/uv.h /^ int stdio_count;$/;" m struct:uv_process_options_s typeref:typename:int +stdio_in third_party/libuv/test/runner-win.h /^ HANDLE stdio_in;$/;" m struct:__anon343b4fa90108 typeref:typename:HANDLE +stdio_out third_party/libuv/test/runner-win.h /^ HANDLE stdio_out;$/;" m struct:__anon343b4fa90108 typeref:typename:HANDLE stdlib.h dowa/dowa.h /^#include <stdlib.h>/;" h stdlib.h dowa/stb_ds.h /^#include <stdlib.h>/;" h stdlib.h mrjunejune/test/test.h /^#include <stdlib.h>/;" h +stdlib.h third_party/libuv/src/unix/internal.h /^#include <stdlib.h>/;" h +stdlib.h third_party/libuv/test/task.h /^#include <stdlib.h>/;" h stdlib.h third_party/raylib/include/raygui.h /^ #include <stdlib.h>/;" h stdlib.h third_party/raylib/include/rlgl.h /^#include <stdlib.h>/;" h stdlib.h third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^#include <stdlib.h>/;" h stdlib.h third_party/raylib/raylib-5.5_macos/include/rlgl.h /^#include <stdlib.h>/;" h stdlib.h third_party/raylib/raylib-5.5_win64/include/rlgl.h /^#include <stdlib.h>/;" h +stdout_file third_party/libuv/test/runner-unix.h /^ FILE* stdout_file;$/;" m struct:__anonb753e3df0108 typeref:typename:FILE * stereoRender third_party/raylib/include/rlgl.h /^ bool stereoRender; \/\/ Stereo rendering flag$/;" m struct:rlglData::__anonb66549aa0d08 typeref:typename:bool stereoRender third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ bool stereoRender; \/\/ Stereo rendering flag$/;" m struct:rlglData::__anon0cdf4ceb0d08 typeref:typename:bool stereoRender third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ bool stereoRender; \/\/ Stereo rendering flag$/;" m struct:rlglData::__anon96c0c2130d08 typeref:typename:bool stereoRender third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ bool stereoRender; \/\/ Stereo rendering flag$/;" m struct:rlglData::__anon9e7796b80d08 typeref:typename:bool +stop_flag third_party/libuv/include/uv.h /^ unsigned int stop_flag;$/;" m struct:uv_loop_s typeref:typename:unsigned int stop_test_server mrjunejune/test/test.h /^void stop_test_server(pid_t server_pid)$/;" f typeref:typename:void stop_test_server mrjunejune/test/test.h /^void stop_test_server(pid_t server_pid);$/;" p typeref:typename:void storage dowa/stb_ds.h /^ char storage[8];$/;" m struct:stbds_string_block typeref:typename:char[8] storage dowa/stb_ds.h /^ stbds_hash_bucket *storage; \/\/ not a separate allocation, just 64-byte aligned storage after/;" m struct:__anon7f1219f40408 typeref:typename:stbds_hash_bucket * storage dowa/stb_ds.h /^ stbds_string_block *storage;$/;" m struct:stbds_string_arena typeref:typename:stbds_string_block * stralloc dowa/stb_ds.h /^#define stralloc stbds_stralloc$/;" d +stream third_party/libuv/include/uv.h /^ uv_stream_t* stream;$/;" m union:uv_stdio_container_s::__anon4de24c23110a typeref:typename:uv_stream_t * stream third_party/raylib/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Music typeref:typename:AudioStream stream third_party/raylib/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Sound typeref:typename:AudioStream stream third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Music typeref:typename:AudioStream @@ -10104,23 +12841,68 @@ stream third_party/raylib/raylib-5.5_macos/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Sound typeref:typename:AudioStream stream third_party/raylib/raylib-5.5_win64/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Music typeref:typename:AudioStream stream third_party/raylib/raylib-5.5_win64/include/raylib.h /^ AudioStream stream; \/\/ Audio stream$/;" m struct:Sound typeref:typename:AudioStream +stream_type third_party/libuv/test/task.h /^} stream_type;$/;" t typeref:enum:__anon53cf48870103 string dowa/stb_ds.h /^ stbds_string_arena string;$/;" m struct:__anon7f1219f40408 typeref:typename:stbds_string_arena string.h dowa/dowa.h /^#include <string.h>/;" h string.h dowa/stb_ds.h /^#include <string.h>/;" h string.h postdog/gui_window_file_dialog.h /^#include <string.h>/;" h string.h seobeo/seobeo.h /^#include <string.h>/;" h +string.h third_party/libuv/src/unix/internal.h /^#include <string.h>/;" h +string.h third_party/libuv/src/uv-common.h /^#include <string.h>/;" h +string.h third_party/libuv/test/task.h /^#include <string.h>/;" h string.h third_party/raylib/include/raygui.h /^#include <string.h>/;" h string.h third_party/raylib/include/rlgl.h /^#include <string.h>/;" h string.h third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^#include <string.h>/;" h string.h third_party/raylib/raylib-5.5_macos/include/rlgl.h /^#include <string.h>/;" h string.h third_party/raylib/raylib-5.5_win64/include/rlgl.h /^#include <string.h>/;" h strkey dowa/stb_ds.h /^char *strkey(int n)$/;" f typeref:typename:char * +strnlen third_party/libuv/src/unix/internal.h /^size_t strnlen(const char* s, size_t maxlen);$/;" p typeref:typename:size_t +strnlen third_party/libuv/src/unix/os390-syscalls.h /^size_t strnlen(const char* str, size_t maxlen);$/;" p typeref:typename:size_t strreset dowa/stb_ds.h /^#define strreset stbds_strreset$/;" d +strscpy.h third_party/libuv/src/uv-common.h /^#include "strscpy.h"/;" h +stx_atime third_party/libuv/src/unix/internal.h /^ struct uv__statx_timestamp stx_atime;$/;" m struct:uv__statx typeref:struct:uv__statx_timestamp +stx_attributes third_party/libuv/src/unix/internal.h /^ uint64_t stx_attributes;$/;" m struct:uv__statx typeref:typename:uint64_t +stx_attributes_mask third_party/libuv/src/unix/internal.h /^ uint64_t stx_attributes_mask;$/;" m struct:uv__statx typeref:typename:uint64_t +stx_blksize third_party/libuv/src/unix/internal.h /^ uint32_t stx_blksize;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_blocks third_party/libuv/src/unix/internal.h /^ uint64_t stx_blocks;$/;" m struct:uv__statx typeref:typename:uint64_t +stx_btime third_party/libuv/src/unix/internal.h /^ struct uv__statx_timestamp stx_btime;$/;" m struct:uv__statx typeref:struct:uv__statx_timestamp +stx_ctime third_party/libuv/src/unix/internal.h /^ struct uv__statx_timestamp stx_ctime;$/;" m struct:uv__statx typeref:struct:uv__statx_timestamp +stx_dev_major third_party/libuv/src/unix/internal.h /^ uint32_t stx_dev_major;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_dev_minor third_party/libuv/src/unix/internal.h /^ uint32_t stx_dev_minor;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_gid third_party/libuv/src/unix/internal.h /^ uint32_t stx_gid;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_ino third_party/libuv/src/unix/internal.h /^ uint64_t stx_ino;$/;" m struct:uv__statx typeref:typename:uint64_t +stx_mask third_party/libuv/src/unix/internal.h /^ uint32_t stx_mask;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_mode third_party/libuv/src/unix/internal.h /^ uint16_t stx_mode;$/;" m struct:uv__statx typeref:typename:uint16_t +stx_mtime third_party/libuv/src/unix/internal.h /^ struct uv__statx_timestamp stx_mtime;$/;" m struct:uv__statx typeref:struct:uv__statx_timestamp +stx_nlink third_party/libuv/src/unix/internal.h /^ uint32_t stx_nlink;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_rdev_major third_party/libuv/src/unix/internal.h /^ uint32_t stx_rdev_major;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_rdev_minor third_party/libuv/src/unix/internal.h /^ uint32_t stx_rdev_minor;$/;" m struct:uv__statx typeref:typename:uint32_t +stx_size third_party/libuv/src/unix/internal.h /^ uint64_t stx_size;$/;" m struct:uv__statx typeref:typename:uint64_t +stx_uid third_party/libuv/src/unix/internal.h /^ uint32_t stx_uid;$/;" m struct:uv__statx typeref:typename:uint32_t supportDrag postdog/gui_window_file_dialog.h /^ bool supportDrag;$/;" m struct:__anoncb6fd9740108 typeref:typename:bool +sys third_party/libuv/include/uv.h /^ uint64_t sys; \/* milliseconds *\/$/;" m struct:uv_cpu_times_s typeref:typename:uint64_t +sys/event.h third_party/libuv/src/unix/internal.h /^#include <sys\/event.h>/;" h +sys/param.h third_party/libuv/include/uv/unix.h /^#include <sys\/param.h>/;" h +sys/poll.h third_party/libuv/src/unix/internal.h /^# include <sys\/poll.h>/;" h +sys/port.h third_party/libuv/include/uv/sunos.h /^#include <sys\/port.h>/;" h +sys/port.h third_party/libuv/src/unix/internal.h /^# include <sys\/port.h>/;" h +sys/resource.h third_party/libuv/test/task.h /^# include <sys\/resource.h>/;" h sys/socket.h seobeo/seobeo.h /^#include <sys\/socket.h>/;" h +sys/socket.h third_party/libuv/include/uv/unix.h /^#include <sys\/socket.h>/;" h +sys/socket.h third_party/libuv/src/unix/darwin-syscalls.h /^#include <sys\/socket.h>/;" h +sys/socket.h third_party/libuv/src/unix/internal.h /^#include <sys\/socket.h>/;" h +sys/stat.h third_party/libuv/include/uv/unix.h /^#include <sys\/stat.h>/;" h +sys/stat.h third_party/libuv/include/uv/win.h /^#include <sys\/stat.h>/;" h +sys/stat.h third_party/libuv/src/unix/internal.h /^#include <sys\/stat.h>/;" h +sys/time.h third_party/libuv/test/task.h /^# include <sys\/time.h>/;" h sys/types.h seobeo/seobeo.h /^#include <sys\/types.h>/;" h +sys/types.h third_party/libuv/include/uv/unix.h /^#include <sys\/types.h>/;" h +sys/types.h third_party/libuv/src/unix/darwin-syscalls.h /^#include <sys\/types.h>/;" h +sys/types.h third_party/libuv/src/unix/internal.h /^#include <sys\/types.h>/;" h +sys/types.h third_party/libuv/test/runner-unix.h /^#include <sys\/types.h>/;" h sys/wait.h mrjunejune/test/test.h /^#include <sys\/wait.h>/;" h sys/wait.h seobeo/seobeo.h /^#include <sys\/wait.h>/;" h +sysname third_party/libuv/include/uv.h /^ char sysname[256];$/;" m struct:uv_utsname_s typeref:typename:char[256] tangents third_party/raylib/include/raylib.h /^ float *tangents; \/\/ Vertex tangents (XYZW - 4 components per vertex) (shader-locati/;" m struct:Mesh typeref:typename:float * tangents third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float *tangents; \/\/ Vertex tangents (XYZW - 4 components per vertex) (shader-locati/;" m struct:Mesh typeref:typename:float * tangents third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float *tangents; \/\/ Vertex tangents (XYZW - 4 components per vertex) (shader-locati/;" m struct:Mesh typeref:typename:float * @@ -10133,8 +12915,13 @@ target third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 target; \/\/ Camera target it looks-at$/;" m struct:Camera3D typeref:typename:Vector3 target third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector2 target; \/\/ Camera target (rotation and zoom origin)$/;" m struct:Camera2D typeref:typename:Vector2 target third_party/raylib/raylib-5.5_win64/include/raylib.h /^ Vector3 target; \/\/ Camera target it looks-at$/;" m struct:Camera3D typeref:typename:Vector3 +task_entry_t third_party/libuv/test/runner.h /^} task_entry_t, bench_entry_t;$/;" t typeref:struct:__anona47773ae0108 +task_name third_party/libuv/test/runner.h /^ char *task_name;$/;" m struct:__anona47773ae0108 typeref:typename:char * temp dowa/stb_ds.h /^ ptrdiff_t temp;$/;" m struct:__anon7f1219f40108 typeref:typename:ptrdiff_t temp_key dowa/stb_ds.h /^ char * temp_key; \/\/ this MUST be the first field of the hash table$/;" m struct:__anon7f1219f40408 typeref:typename:char * +terminated third_party/libuv/test/runner-unix.h /^ int terminated;$/;" m struct:__anonb753e3df0108 typeref:typename:int +termios.h third_party/libuv/include/uv/unix.h /^#include <termios.h>/;" h +test_status third_party/libuv/test/task.h /^enum test_status {$/;" g texAnisoFilter third_party/raylib/include/rlgl.h /^ bool texAnisoFilter; \/\/ Anisotropic texture filtering support (GL_EXT_t/;" m struct:rlglData::__anonb66549aa0e08 typeref:typename:bool texAnisoFilter third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ bool texAnisoFilter; \/\/ Anisotropic texture filtering support (GL_EXT_t/;" m struct:rlglData::__anon0cdf4ceb0e08 typeref:typename:bool texAnisoFilter third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ bool texAnisoFilter; \/\/ Anisotropic texture filtering support (GL_EXT_t/;" m struct:rlglData::__anon96c0c2130e08 typeref:typename:bool @@ -10227,6 +13014,10 @@ textureId third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ unsigned int textureId; \/\/ Texture id to be used on the draw -> Use to create new draw/;" m struct:rlDrawCall typeref:typename:unsigned int third_party/raylib/include/raygui.h postdog/gui_window_file_dialog.h /^#include "third_party\/raylib\/include\/raygui.h"/;" h third_party/raylib/include/raylib.h postdog/gui_window_file_dialog.h /^#include "third_party\/raylib\/include\/raylib.h"/;" h +threshold third_party/libuv/include/uv/unix.h /^ unsigned threshold;$/;" m struct:_uv_barrier typeref:typename:unsigned +threshold third_party/libuv/include/uv/win.h /^ unsigned threshold;$/;" m struct:__anond441abe00408 typeref:typename:unsigned +timeout third_party/libuv/test/runner.h /^ int timeout;$/;" m struct:__anona47773ae0108 typeref:typename:int +tls_index third_party/libuv/include/uv/win.h /^ DWORD tls_index;$/;" m struct:__anond441abe00508 typeref:typename:DWORD tombstone_count dowa/dowa.h /^ size_t tombstone_count;$/;" m struct:__anon82503da00508 typeref:typename:size_t tombstone_count dowa/stb_ds.h /^ size_t tombstone_count;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t tombstone_count_threshold dowa/stb_ds.h /^ size_t tombstone_count_threshold;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t @@ -10254,18 +13045,37 @@ triangleCount third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ int triangleCount; \/\/ Number of triangles stored (indexed or not)$/;" m struct:Mesh typeref:typename:int triangleCount third_party/raylib/raylib-5.5_macos/include/raylib.h /^ int triangleCount; \/\/ Number of triangles stored (indexed or not)$/;" m struct:Mesh typeref:typename:int triangleCount third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int triangleCount; \/\/ Number of triangles stored (indexed or not)$/;" m struct:Mesh typeref:typename:int +tv_nsec third_party/libuv/include/uv.h /^ int32_t tv_nsec;$/;" m struct:__anon4de24c230808 typeref:typename:int32_t +tv_nsec third_party/libuv/include/uv.h /^ long tv_nsec;$/;" m struct:__anon4de24c230708 typeref:typename:long +tv_nsec third_party/libuv/src/unix/internal.h /^ uint32_t tv_nsec;$/;" m struct:uv__statx_timestamp typeref:typename:uint32_t +tv_sec third_party/libuv/include/uv.h /^ int64_t tv_sec;$/;" m struct:__anon4de24c230808 typeref:typename:int64_t +tv_sec third_party/libuv/include/uv.h /^ int64_t tv_sec;$/;" m struct:__anon4de24c230a08 typeref:typename:int64_t +tv_sec third_party/libuv/include/uv.h /^ long tv_sec;$/;" m struct:__anon4de24c230708 typeref:typename:long +tv_sec third_party/libuv/include/uv.h /^ long tv_sec;$/;" m struct:__anon4de24c230908 typeref:typename:long +tv_sec third_party/libuv/src/unix/internal.h /^ int64_t tv_sec;$/;" m struct:uv__statx_timestamp typeref:typename:int64_t +tv_usec third_party/libuv/include/uv.h /^ int32_t tv_usec;$/;" m struct:__anon4de24c230a08 typeref:typename:int32_t +tv_usec third_party/libuv/include/uv.h /^ long tv_usec;$/;" m struct:__anon4de24c230908 typeref:typename:long type postdog/gui_window_file_dialog.h /^ int type;$/;" m struct:FileInfo typeref:typename:int type seobeo/seobeo_internal.h /^ Seobeo_SocketType type;$/;" m struct:__anon7a4da8400208 typeref:typename:Seobeo_SocketType +type third_party/libuv/include/uv.h /^ uv_dirent_type_t type;$/;" m struct:uv_dirent_s typeref:typename:uv_dirent_type_t type third_party/raylib/include/raylib.h /^ unsigned int type; \/\/ Event type (AutomationEventType)$/;" m struct:AutomationEvent typeref:typename:unsigned int type third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ unsigned int type; \/\/ Event type (AutomationEventType)$/;" m struct:AutomationEvent typeref:typename:unsigned int type third_party/raylib/raylib-5.5_macos/include/raylib.h /^ unsigned int type; \/\/ Event type (AutomationEventType)$/;" m struct:AutomationEvent typeref:typename:unsigned int type third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int type; \/\/ Event type (AutomationEventType)$/;" m struct:AutomationEvent typeref:typename:unsigned int +uid third_party/libuv/include/uv.h /^ unsigned long uid;$/;" m struct:uv_passwd_s typeref:typename:unsigned long +uid third_party/libuv/include/uv.h /^ uv_uid_t uid;$/;" m struct:uv_process_options_s typeref:typename:uv_uid_t uint16 dowa/dowa.h /^typedef unsigned short uint16;$/;" t typeref:typename:unsigned short uint32 dowa/dowa.h /^typedef unsigned int uint32;$/;" t typeref:typename:unsigned int uint64 dowa/dowa.h /^typedef unsigned long long uint64;$/;" t typeref:typename:unsigned long long uint8 dowa/dowa.h /^typedef unsigned char uint8;$/;" t typeref:typename:unsigned char unistd.h mrjunejune/test/test.h /^#include <unistd.h>/;" h unistd.h seobeo/seobeo.h /^#include <unistd.h>/;" h +unused third_party/libuv/include/uv.h /^ void* unused;$/;" m union:uv_loop_s::__anon4de24c23190a typeref:typename:void * +unused third_party/libuv/include/uv/win.h /^ unsigned char unused;$/;" m struct:uv_once_s typeref:typename:unsigned char +unused0 third_party/libuv/src/unix/internal.h /^ int32_t unused0;$/;" m struct:uv__statx_timestamp typeref:typename:int32_t +unused0 third_party/libuv/src/unix/internal.h /^ uint16_t unused0;$/;" m struct:uv__statx typeref:typename:uint16_t +unused1 third_party/libuv/src/unix/internal.h /^ uint64_t unused1[14];$/;" m struct:uv__statx typeref:typename:uint64_t[14] +unused_ third_party/libuv/include/uv/win.h /^ } unused_; \/* TODO: retained for ABI compatibility; remove me in v2.x. *\/$/;" m union:__anond441abe0010a typeref:struct:__anond441abe0010a::__anond441abe00208 up third_party/raylib/include/raylib.h /^ Vector3 up; \/\/ Camera up vector (rotation over its axis)$/;" m struct:Camera3D typeref:typename:Vector3 up third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ Vector3 up; \/\/ Camera up vector (rotation over its axis)$/;" m struct:Camera3D typeref:typename:Vector3 up third_party/raylib/raylib-5.5_macos/include/raylib.h /^ Vector3 up; \/\/ Camera up vector (rotation over its axis)$/;" m struct:Camera3D typeref:typename:Vector3 @@ -10277,6 +13087,875 @@ used_count dowa/stb_ds.h /^ size_t used_count;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t used_count_shrink_threshold dowa/stb_ds.h /^ size_t used_count_shrink_threshold;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t used_count_threshold dowa/stb_ds.h /^ size_t used_count_threshold;$/;" m struct:__anon7f1219f40408 typeref:typename:size_t +user third_party/libuv/include/uv.h /^ uint64_t user; \/* milliseconds *\/$/;" m struct:uv_cpu_times_s typeref:typename:uint64_t +username third_party/libuv/include/uv.h /^ char* username;$/;" m struct:uv_passwd_s typeref:typename:char * +uv-common.h third_party/libuv/src/unix/internal.h /^#include "uv-common.h"/;" h +uv.h third_party/libuv/src/strscpy.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/unix/os390-syscalls.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/uv-common.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/atomicops-inl.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/fs-fd-hash-inl.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/handle-inl.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/internal.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/req-inl.h /^#include "uv.h"/;" h +uv.h third_party/libuv/src/win/stream-inl.h /^#include "uv.h"/;" h +uv.h third_party/libuv/test/task.h /^#include "uv.h"/;" h +uv.h third_party/libuv/test/test-list.h /^#include "uv.h"/;" h +uv/aix.h third_party/libuv/include/uv/unix.h /^# include "uv\/aix.h"/;" h +uv/bsd.h third_party/libuv/include/uv/unix.h /^# include "uv\/bsd.h"/;" h +uv/darwin.h third_party/libuv/include/uv/unix.h /^# include "uv\/darwin.h"/;" h +uv/errno.h third_party/libuv/include/uv.h /^#include "uv\/errno.h"/;" h +uv/linux.h third_party/libuv/include/uv/unix.h /^# include "uv\/linux.h"/;" h +uv/os390.h third_party/libuv/include/uv/unix.h /^# include "uv\/os390.h"/;" h +uv/posix.h third_party/libuv/include/uv/unix.h /^# include "uv\/posix.h" \/* IBM i needs uv\/posix.h,/;" h +uv/posix.h third_party/libuv/include/uv/unix.h /^# include "uv\/posix.h"/;" h +uv/sunos.h third_party/libuv/include/uv/unix.h /^# include "uv\/sunos.h"/;" h +uv/threadpool.h third_party/libuv/include/uv/unix.h /^#include "uv\/threadpool.h"/;" h +uv/threadpool.h third_party/libuv/include/uv/win.h /^#include "uv\/threadpool.h"/;" h +uv/tree.h third_party/libuv/include/uv/win.h /^#include "uv\/tree.h"/;" h +uv/tree.h third_party/libuv/src/uv-common.h /^#include "uv\/tree.h"/;" h +uv/tree.h third_party/libuv/src/win/internal.h /^#include "uv\/tree.h"/;" h +uv/unix.h third_party/libuv/include/uv.h /^# include "uv\/unix.h"/;" h +uv/version.h third_party/libuv/include/uv.h /^#include "uv\/version.h"/;" h +uv/win.h third_party/libuv/include/uv.h /^# include "uv\/win.h"/;" h +uv___stream_fd third_party/libuv/src/unix/internal.h /^int uv___stream_fd(const uv_stream_t* handle);$/;" p typeref:typename:int +uv__accept third_party/libuv/src/unix/internal.h /^int uv__accept(int sockfd);$/;" p typeref:typename:int +uv__active_handle_add third_party/libuv/src/uv-common.h /^#define uv__active_handle_add(/;" d +uv__active_handle_rm third_party/libuv/src/uv-common.h /^#define uv__active_handle_rm(/;" d +uv__async_close third_party/libuv/src/unix/internal.h /^void uv__async_close(uv_async_t* handle);$/;" p typeref:typename:void +uv__async_close third_party/libuv/src/win/internal.h /^void uv__async_close(uv_loop_t* loop, uv_async_t* handle);$/;" p typeref:typename:void +uv__async_endgame third_party/libuv/src/win/internal.h /^void uv__async_endgame(uv_loop_t* loop, uv_async_t* handle);$/;" p typeref:typename:void +uv__async_fork third_party/libuv/src/unix/internal.h /^int uv__async_fork(uv_loop_t* loop);$/;" p typeref:typename:int +uv__async_stop third_party/libuv/src/unix/internal.h /^void uv__async_stop(uv_loop_t* loop);$/;" p typeref:typename:void +uv__atomic_exchange_set third_party/libuv/src/win/atomicops-inl.h /^static char INLINE uv__atomic_exchange_set(char volatile* target) {$/;" f typeref:typename:char INLINE +uv__atomic_exchange_set third_party/libuv/src/win/atomicops-inl.h /^static inline char uv__atomic_exchange_set(char volatile* target) {$/;" f typeref:typename:char +uv__calloc third_party/libuv/src/uv-common.h /^void *uv__calloc(size_t count, size_t size);$/;" p typeref:typename:void * +uv__check_close third_party/libuv/src/unix/internal.h /^void uv__check_close(uv_check_t* handle);$/;" p typeref:typename:void +uv__check_invoke third_party/libuv/src/win/internal.h /^void uv__check_invoke(uv_loop_t* loop);$/;" p typeref:typename:void +uv__cloexec third_party/libuv/src/unix/internal.h /^int uv__cloexec(int fd, int set);$/;" p typeref:typename:int +uv__close third_party/libuv/src/unix/internal.h /^int uv__close(int fd); \/* preserves errno *\/$/;" p typeref:typename:int +uv__close_nocancel third_party/libuv/src/unix/internal.h /^int uv__close_nocancel(int fd);$/;" p typeref:typename:int +uv__close_nocheckstdio third_party/libuv/src/unix/internal.h /^int uv__close_nocheckstdio(int fd);$/;" p typeref:typename:int +uv__connection_init third_party/libuv/src/win/stream-inl.h /^INLINE static void uv__connection_init(uv_stream_t* handle) {$/;" f typeref:typename:INLINE void +uv__console_init third_party/libuv/src/win/internal.h /^void uv__console_init(void);$/;" p typeref:typename:void +uv__convert_to_localhost_if_unspecified third_party/libuv/src/win/winsock.h /^int uv__convert_to_localhost_if_unspecified(const struct sockaddr* addr,$/;" p typeref:typename:int +uv__convert_utf16_to_utf8 third_party/libuv/src/win/internal.h /^int uv__convert_utf16_to_utf8(const WCHAR* utf16, size_t utf16len, char** utf8);$/;" p typeref:typename:int +uv__convert_utf8_to_utf16 third_party/libuv/src/win/internal.h /^int uv__convert_utf8_to_utf16(const char* utf8, WCHAR** utf16);$/;" p typeref:typename:int +uv__copy_utf16_to_utf8 third_party/libuv/src/win/internal.h /^int uv__copy_utf16_to_utf8(const WCHAR* utf16, size_t utf16len, char* utf8, size_t *size);$/;" p typeref:typename:int +uv__count_bufs third_party/libuv/src/uv-common.h /^size_t uv__count_bufs(const uv_buf_t bufs[], unsigned int nbufs);$/;" p typeref:typename:size_t +uv__create_stdio_pipe_pair third_party/libuv/src/win/internal.h /^int uv__create_stdio_pipe_pair(uv_loop_t* loop,$/;" p typeref:typename:int +uv__dirent_s third_party/libuv/include/uv/win.h /^typedef struct uv__dirent_s {$/;" s +uv__dirent_t third_party/libuv/include/uv/unix.h /^typedef struct dirent uv__dirent_t;$/;" t typeref:struct:dirent +uv__dirent_t third_party/libuv/include/uv/win.h /^} uv__dirent_t;$/;" t typeref:struct:uv__dirent_s +uv__dup2_cloexec third_party/libuv/src/unix/internal.h /^int uv__dup2_cloexec(int oldfd, int newfd);$/;" p typeref:typename:int +uv__exchange_int_relaxed third_party/libuv/src/uv-common.h /^#define uv__exchange_int_relaxed(/;" d +uv__fd_exists third_party/libuv/src/unix/internal.h /^int uv__fd_exists(uv_loop_t* loop, int fd);$/;" p typeref:typename:int +uv__fd_hash third_party/libuv/src/win/fs-fd-hash-inl.h /^static struct uv__fd_hash_bucket_s uv__fd_hash[UV__FD_HASH_SIZE];$/;" v typeref:struct:uv__fd_hash_bucket_s[] +uv__fd_hash_add third_party/libuv/src/win/fs-fd-hash-inl.h /^INLINE static void uv__fd_hash_add(int fd, struct uv__fd_info_s* info) {$/;" f typeref:typename:INLINE void +uv__fd_hash_bucket_s third_party/libuv/src/win/fs-fd-hash-inl.h /^struct uv__fd_hash_bucket_s {$/;" s +uv__fd_hash_entry_group_s third_party/libuv/src/win/fs-fd-hash-inl.h /^struct uv__fd_hash_entry_group_s {$/;" s +uv__fd_hash_entry_initial third_party/libuv/src/win/fs-fd-hash-inl.h /^ uv__fd_hash_entry_initial[UV__FD_HASH_SIZE * UV__FD_HASH_GROUP_SIZE];$/;" v typeref:struct:uv__fd_hash_entry_group_s[] +uv__fd_hash_entry_s third_party/libuv/src/win/fs-fd-hash-inl.h /^struct uv__fd_hash_entry_s {$/;" s +uv__fd_hash_get third_party/libuv/src/win/fs-fd-hash-inl.h /^INLINE static int uv__fd_hash_get(int fd, struct uv__fd_info_s* info) {$/;" f typeref:typename:INLINE int +uv__fd_hash_init third_party/libuv/src/win/fs-fd-hash-inl.h /^INLINE static void uv__fd_hash_init(void) {$/;" f typeref:typename:INLINE void +uv__fd_hash_mutex third_party/libuv/src/win/fs-fd-hash-inl.h /^static uv_mutex_t uv__fd_hash_mutex;$/;" v typeref:typename:uv_mutex_t +uv__fd_hash_remove third_party/libuv/src/win/fs-fd-hash-inl.h /^INLINE static int uv__fd_hash_remove(int fd, struct uv__fd_info_s* info) {$/;" f typeref:typename:INLINE int +uv__fd_info_s third_party/libuv/src/win/fs-fd-hash-inl.h /^struct uv__fd_info_s {$/;" s +uv__free third_party/libuv/src/uv-common.h /^void uv__free(void* ptr);$/;" p typeref:typename:void +uv__fs_copy_file_range third_party/libuv/src/unix/internal.h /^uv__fs_copy_file_range(int fd_in,$/;" p typeref:typename:ssize_t +uv__fs_event_close third_party/libuv/src/unix/internal.h /^void uv__fs_event_close(uv_fs_event_t* handle);$/;" p typeref:typename:void +uv__fs_event_close third_party/libuv/src/win/internal.h /^void uv__fs_event_close(uv_loop_t* loop, uv_fs_event_t* handle);$/;" p typeref:typename:void +uv__fs_event_endgame third_party/libuv/src/win/internal.h /^void uv__fs_event_endgame(uv_loop_t* loop, uv_fs_event_t* handle);$/;" p typeref:typename:void +uv__fs_get_dirent_type third_party/libuv/src/uv-common.h /^uv_dirent_type_t uv__fs_get_dirent_type(uv__dirent_t* dent);$/;" p typeref:typename:uv_dirent_type_t +uv__fs_init third_party/libuv/src/win/internal.h /^void uv__fs_init(void);$/;" p typeref:typename:void +uv__fs_poll_close third_party/libuv/src/uv-common.h /^void uv__fs_poll_close(uv_fs_poll_t* handle);$/;" p typeref:typename:void +uv__fs_poll_endgame third_party/libuv/src/win/internal.h /^void uv__fs_poll_endgame(uv_loop_t* loop, uv_fs_poll_t* handle);$/;" p typeref:typename:void +uv__fs_post third_party/libuv/src/unix/internal.h /^void uv__fs_post(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:void +uv__fs_readdir_cleanup third_party/libuv/src/uv-common.h /^void uv__fs_readdir_cleanup(uv_fs_t* req);$/;" p typeref:typename:void +uv__fs_scandir_cleanup third_party/libuv/src/uv-common.h /^void uv__fs_scandir_cleanup(uv_fs_t* req);$/;" p typeref:typename:void +uv__fsevents_close third_party/libuv/src/unix/internal.h /^int uv__fsevents_close(uv_fs_event_t* handle);$/;" p typeref:typename:int +uv__fsevents_init third_party/libuv/src/unix/internal.h /^int uv__fsevents_init(uv_fs_event_t* handle);$/;" p typeref:typename:int +uv__fsevents_loop_delete third_party/libuv/src/unix/internal.h /^void uv__fsevents_loop_delete(uv_loop_t* loop);$/;" p typeref:typename:void +uv__get_acceptex_function third_party/libuv/src/win/internal.h /^BOOL uv__get_acceptex_function(SOCKET socket, LPFN_ACCEPTEX* target);$/;" p typeref:typename:BOOL +uv__get_connectex_function third_party/libuv/src/win/internal.h /^BOOL uv__get_connectex_function(SOCKET socket, LPFN_CONNECTEX* target);$/;" p typeref:typename:BOOL +uv__get_constrained_cpu third_party/libuv/src/unix/internal.h /^int uv__get_constrained_cpu(long long* quota);$/;" p typeref:typename:int +uv__get_internal_fields third_party/libuv/src/uv-common.h /^#define uv__get_internal_fields(/;" d +uv__get_loop_metrics third_party/libuv/src/uv-common.h /^#define uv__get_loop_metrics(/;" d +uv__get_osfhandle third_party/libuv/src/win/handle-inl.h /^INLINE static HANDLE uv__get_osfhandle(int fd)$/;" f typeref:typename:INLINE HANDLE +uv__getaddrinfo_translate_error third_party/libuv/src/uv-common.h /^int uv__getaddrinfo_translate_error(int sys_err); \/* EAI_* error. *\/$/;" p typeref:typename:int +uv__getiovmax third_party/libuv/src/unix/internal.h /^int uv__getiovmax(void);$/;" p typeref:typename:int +uv__getrandom third_party/libuv/src/unix/internal.h /^ssize_t uv__getrandom(void* buf, size_t buflen, unsigned flags);$/;" p typeref:typename:ssize_t +uv__getsockpeername third_party/libuv/src/unix/internal.h /^int uv__getsockpeername(const uv_handle_t* handle,$/;" p typeref:typename:int +uv__getsockpeername third_party/libuv/src/win/internal.h /^int uv__getsockpeername(const uv_handle_t* handle,$/;" p typeref:typename:int +uv__handle_close third_party/libuv/src/win/handle-inl.h /^#define uv__handle_close(/;" d +uv__handle_closing third_party/libuv/src/win/handle-inl.h /^#define uv__handle_closing(/;" d +uv__handle_init third_party/libuv/src/uv-common.h /^#define uv__handle_init(/;" d +uv__handle_platform_init third_party/libuv/src/uv-common.h /^# define uv__handle_platform_init(/;" d +uv__handle_ref third_party/libuv/src/uv-common.h /^#define uv__handle_ref(/;" d +uv__handle_start third_party/libuv/src/uv-common.h /^#define uv__handle_start(/;" d +uv__handle_stop third_party/libuv/src/uv-common.h /^#define uv__handle_stop(/;" d +uv__handle_unref third_party/libuv/src/uv-common.h /^#define uv__handle_unref(/;" d +uv__has_active_handles third_party/libuv/src/uv-common.h /^#define uv__has_active_handles(/;" d +uv__has_active_reqs third_party/libuv/src/uv-common.h /^#define uv__has_active_reqs(/;" d +uv__has_ref third_party/libuv/src/uv-common.h /^#define uv__has_ref(/;" d +uv__hrtime third_party/libuv/src/unix/internal.h /^uint64_t uv__hrtime(uv_clocktype_t type);$/;" p typeref:typename:uint64_t +uv__hrtime third_party/libuv/src/win/internal.h /^uint64_t uv__hrtime(unsigned int scale);$/;" p typeref:typename:uint64_t +uv__idle_close third_party/libuv/src/unix/internal.h /^void uv__idle_close(uv_idle_t* handle);$/;" p typeref:typename:void +uv__idle_invoke third_party/libuv/src/win/internal.h /^void uv__idle_invoke(uv_loop_t* loop);$/;" p typeref:typename:void +uv__idna_toascii third_party/libuv/src/idna.h /^ssize_t uv__idna_toascii(const char* s, const char* se, char* d, char* de);$/;" p typeref:typename:ssize_t +uv__init_detect_system_wakeup third_party/libuv/src/win/internal.h /^void uv__init_detect_system_wakeup(void);$/;" p typeref:typename:void +uv__insert_pending_req third_party/libuv/src/win/req-inl.h /^INLINE static void uv__insert_pending_req(uv_loop_t* loop, uv_req_t* req) {$/;" f typeref:typename:INLINE void +uv__io_active third_party/libuv/src/unix/internal.h /^int uv__io_active(const uv__io_t* w, unsigned int events);$/;" p typeref:typename:int +uv__io_cb third_party/libuv/include/uv/unix.h /^typedef void (*uv__io_cb)(struct uv_loop_s* loop,$/;" t typeref:typename:void (*)(struct uv_loop_s * loop,struct uv__io_s * w,unsigned int events) +uv__io_check_fd third_party/libuv/src/unix/internal.h /^int uv__io_check_fd(uv_loop_t* loop, int fd);$/;" p typeref:typename:int +uv__io_close third_party/libuv/src/unix/internal.h /^void uv__io_close(uv_loop_t* loop, uv__io_t* w);$/;" p typeref:typename:void +uv__io_feed third_party/libuv/src/unix/internal.h /^void uv__io_feed(uv_loop_t* loop, uv__io_t* w);$/;" p typeref:typename:void +uv__io_fork third_party/libuv/src/unix/internal.h /^int uv__io_fork(uv_loop_t* loop);$/;" p typeref:typename:int +uv__io_init third_party/libuv/src/unix/internal.h /^void uv__io_init(uv__io_t* w, uv__io_cb cb, int fd);$/;" p typeref:typename:void +uv__io_init_start third_party/libuv/src/unix/internal.h /^int uv__io_init_start(uv_loop_t* loop,$/;" p typeref:typename:int +uv__io_poll third_party/libuv/src/unix/internal.h /^void uv__io_poll(uv_loop_t* loop, int timeout); \/* in milliseconds or -1 *\/$/;" p typeref:typename:void +uv__io_s third_party/libuv/include/uv/unix.h /^struct uv__io_s {$/;" s +uv__io_start third_party/libuv/src/unix/internal.h /^int uv__io_start(uv_loop_t* loop, uv__io_t* w, unsigned int events);$/;" p typeref:typename:int +uv__io_stop third_party/libuv/src/unix/internal.h /^void uv__io_stop(uv_loop_t* loop, uv__io_t* w, unsigned int events);$/;" p typeref:typename:void +uv__io_t third_party/libuv/include/uv/unix.h /^typedef struct uv__io_s uv__io_t;$/;" t typeref:struct:uv__io_s +uv__iou third_party/libuv/src/uv-common.h /^struct uv__iou {$/;" s +uv__iou_fs_close third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_close(/;" d +uv__iou_fs_close third_party/libuv/src/unix/internal.h /^int uv__iou_fs_close(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_fsync_or_fdatasync third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_fsync_or_fdatasync(/;" d +uv__iou_fs_fsync_or_fdatasync third_party/libuv/src/unix/internal.h /^int uv__iou_fs_fsync_or_fdatasync(uv_loop_t* loop,$/;" p typeref:typename:int +uv__iou_fs_ftruncate third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_ftruncate(/;" d +uv__iou_fs_ftruncate third_party/libuv/src/unix/internal.h /^int uv__iou_fs_ftruncate(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_link third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_link(/;" d +uv__iou_fs_link third_party/libuv/src/unix/internal.h /^int uv__iou_fs_link(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_mkdir third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_mkdir(/;" d +uv__iou_fs_mkdir third_party/libuv/src/unix/internal.h /^int uv__iou_fs_mkdir(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_open third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_open(/;" d +uv__iou_fs_open third_party/libuv/src/unix/internal.h /^int uv__iou_fs_open(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_read_or_write third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_read_or_write(/;" d +uv__iou_fs_read_or_write third_party/libuv/src/unix/internal.h /^int uv__iou_fs_read_or_write(uv_loop_t* loop,$/;" p typeref:typename:int +uv__iou_fs_rename third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_rename(/;" d +uv__iou_fs_rename third_party/libuv/src/unix/internal.h /^int uv__iou_fs_rename(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_statx third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_statx(/;" d +uv__iou_fs_statx third_party/libuv/src/unix/internal.h /^int uv__iou_fs_statx(uv_loop_t* loop,$/;" p typeref:typename:int +uv__iou_fs_symlink third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_symlink(/;" d +uv__iou_fs_symlink third_party/libuv/src/unix/internal.h /^int uv__iou_fs_symlink(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__iou_fs_unlink third_party/libuv/src/unix/internal.h /^#define uv__iou_fs_unlink(/;" d +uv__iou_fs_unlink third_party/libuv/src/unix/internal.h /^int uv__iou_fs_unlink(uv_loop_t* loop, uv_fs_t* req);$/;" p typeref:typename:int +uv__ipc_socket_xfer_info_t third_party/libuv/src/win/internal.h /^} uv__ipc_socket_xfer_info_t;$/;" t typeref:struct:__anondc6407360208 +uv__ipc_socket_xfer_type_t third_party/libuv/src/win/internal.h /^} uv__ipc_socket_xfer_type_t;$/;" t typeref:enum:__anondc6407360103 +uv__is_active third_party/libuv/src/uv-common.h /^#define uv__is_active(/;" d +uv__is_closing third_party/libuv/src/uv-common.h /^#define uv__is_closing(/;" d +uv__is_raw_tty_mode third_party/libuv/src/uv-common.h /^static inline int uv__is_raw_tty_mode(uv_tty_mode_t m) {$/;" f typeref:typename:int +uv__is_stream_shutting third_party/libuv/src/uv-common.h /^# define uv__is_stream_shutting(/;" d +uv__isinf third_party/libuv/src/uv-common.h /^static inline int uv__isinf(double d) {$/;" f typeref:typename:int +uv__isnan third_party/libuv/src/uv-common.h /^static inline int uv__isnan(double d) {$/;" f typeref:typename:int +uv__kernel_version third_party/libuv/src/unix/internal.h /^unsigned uv__kernel_version(void);$/;" p typeref:typename:unsigned +uv__kqueue_init third_party/libuv/src/unix/internal.h /^int uv__kqueue_init(uv_loop_t* loop);$/;" p typeref:typename:int +uv__loop_close third_party/libuv/src/uv-common.h /^void uv__loop_close(uv_loop_t* loop);$/;" p typeref:typename:void +uv__loop_configure third_party/libuv/src/uv-common.h /^int uv__loop_configure(uv_loop_t* loop, uv_loop_option option, va_list ap);$/;" p typeref:typename:int +uv__loop_internal_fields_s third_party/libuv/src/uv-common.h /^struct uv__loop_internal_fields_s {$/;" s +uv__loop_internal_fields_t third_party/libuv/src/uv-common.h /^typedef struct uv__loop_internal_fields_s uv__loop_internal_fields_t;$/;" t typeref:struct:uv__loop_internal_fields_s +uv__loop_metrics_s third_party/libuv/src/uv-common.h /^struct uv__loop_metrics_s {$/;" s +uv__loop_metrics_t third_party/libuv/src/uv-common.h /^typedef struct uv__loop_metrics_s uv__loop_metrics_t;$/;" t typeref:struct:uv__loop_metrics_s +uv__loop_watcher_endgame third_party/libuv/src/win/internal.h /^void uv__loop_watcher_endgame(uv_loop_t* loop, uv_handle_t* handle);$/;" p typeref:typename:void +uv__make_close_pending third_party/libuv/src/unix/internal.h /^void uv__make_close_pending(uv_handle_t* handle);$/;" p typeref:typename:void +uv__make_pipe third_party/libuv/src/unix/internal.h /^int uv__make_pipe(int fds[2], int flags);$/;" p typeref:typename:int +uv__malloc third_party/libuv/src/uv-common.h /^void* uv__malloc(size_t size);$/;" p typeref:typename:void * +uv__metrics_inc_events third_party/libuv/src/uv-common.h /^#define uv__metrics_inc_events(/;" d +uv__metrics_inc_events_waiting third_party/libuv/src/uv-common.h /^#define uv__metrics_inc_events_waiting(/;" d +uv__metrics_inc_loop_count third_party/libuv/src/uv-common.h /^#define uv__metrics_inc_loop_count(/;" d +uv__metrics_set_provider_entry_time third_party/libuv/src/uv-common.h /^void uv__metrics_set_provider_entry_time(uv_loop_t* loop);$/;" p typeref:typename:void +uv__metrics_update_idle_time third_party/libuv/src/uv-common.h /^void uv__metrics_update_idle_time(uv_loop_t* loop);$/;" p typeref:typename:void +uv__msafd_poll third_party/libuv/src/win/internal.h /^int WSAAPI uv__msafd_poll(SOCKET socket, AFD_POLL_INFO* info_in,$/;" p typeref:typename:int WSAAPI +uv__msan_unpoison third_party/libuv/src/unix/internal.h /^# define uv__msan_unpoison /;" d +uv__msan_unpoison third_party/libuv/src/unix/internal.h /^# undef uv__msan_unpoison$/;" d +uv__msan_unpoison third_party/libuv/src/unix/internal.h /^#define uv__msan_unpoison(/;" d +uv__next_timeout third_party/libuv/src/uv-common.h /^int uv__next_timeout(const uv_loop_t* loop);$/;" p typeref:typename:int +uv__nonblock third_party/libuv/src/unix/internal.h /^#define uv__nonblock uv__nonblock_/;" d +uv__nonblock third_party/libuv/src/unix/internal.h /^#undef uv__nonblock$/;" d +uv__nonblock_fcntl third_party/libuv/src/unix/internal.h /^int uv__nonblock_fcntl(int fd, int set);$/;" p typeref:typename:int +uv__nonblock_ioctl third_party/libuv/src/unix/internal.h /^int uv__nonblock_ioctl(int fd, int set);$/;" p typeref:typename:int +uv__ntstatus_to_winsock_error third_party/libuv/src/win/internal.h /^int uv__ntstatus_to_winsock_error(NTSTATUS status);$/;" p typeref:typename:int +uv__once_init third_party/libuv/src/win/internal.h /^void uv__once_init(void);$/;" p typeref:typename:void +uv__open_cloexec third_party/libuv/src/unix/internal.h /^int uv__open_cloexec(const char* path, int flags);$/;" p typeref:typename:int +uv__open_file third_party/libuv/src/unix/internal.h /^FILE* uv__open_file(const char* path);$/;" p typeref:typename:FILE * +uv__os390_cleanup third_party/libuv/src/unix/os390-syscalls.h /^void uv__os390_cleanup(void);$/;" p typeref:typename:void +uv__os390_epoll third_party/libuv/src/unix/os390-syscalls.h /^} uv__os390_epoll;$/;" t typeref:struct:__anonf6e20ee80108 +uv__overlapped_to_req third_party/libuv/src/win/req-inl.h /^INLINE static uv_req_t* uv__overlapped_to_req(OVERLAPPED* overlapped) {$/;" f typeref:typename:INLINE uv_req_t * +uv__peersockfunc third_party/libuv/src/unix/internal.h /^typedef int (*uv__peersockfunc)(int, struct sockaddr*, socklen_t*);$/;" t typeref:typename:int (*)(int,struct sockaddr *,socklen_t *) +uv__peersockfunc third_party/libuv/src/win/internal.h /^typedef int (WINAPI *uv__peersockfunc)(SOCKET, struct sockaddr*, int*);$/;" t typeref:typename:int (WINAPI *)(SOCKET,struct sockaddr *,int *) +uv__pipe_accept third_party/libuv/src/win/internal.h /^int uv__pipe_accept(uv_pipe_t* server, uv_stream_t* client);$/;" p typeref:typename:int +uv__pipe_close third_party/libuv/src/unix/internal.h /^void uv__pipe_close(uv_pipe_t* handle);$/;" p typeref:typename:void +uv__pipe_close third_party/libuv/src/win/internal.h /^void uv__pipe_close(uv_loop_t* loop, uv_pipe_t* handle);$/;" p typeref:typename:void +uv__pipe_endgame third_party/libuv/src/win/internal.h /^void uv__pipe_endgame(uv_loop_t* loop, uv_pipe_t* handle);$/;" p typeref:typename:void +uv__pipe_listen third_party/libuv/src/unix/internal.h /^int uv__pipe_listen(uv_pipe_t* handle, int backlog, uv_connection_cb cb);$/;" p typeref:typename:int +uv__pipe_listen third_party/libuv/src/win/internal.h /^int uv__pipe_listen(uv_pipe_t* handle, int backlog, uv_connection_cb cb);$/;" p typeref:typename:int +uv__pipe_read_start third_party/libuv/src/win/internal.h /^int uv__pipe_read_start(uv_pipe_t* handle, uv_alloc_cb alloc_cb,$/;" p typeref:typename:int +uv__pipe_read_stop third_party/libuv/src/win/internal.h /^void uv__pipe_read_stop(uv_pipe_t* handle);$/;" p typeref:typename:void +uv__pipe_shutdown third_party/libuv/src/win/internal.h /^void uv__pipe_shutdown(uv_loop_t* loop, uv_pipe_t* handle, uv_shutdown_t* req);$/;" p typeref:typename:void +uv__pipe_write third_party/libuv/src/win/internal.h /^int uv__pipe_write(uv_loop_t* loop,$/;" p typeref:typename:int +uv__platform_invalidate_fd third_party/libuv/src/unix/internal.h /^void uv__platform_invalidate_fd(uv_loop_t* loop, int fd);$/;" p typeref:typename:void +uv__platform_loop_delete third_party/libuv/src/unix/internal.h /^void uv__platform_loop_delete(uv_loop_t* loop);$/;" p typeref:typename:void +uv__platform_loop_init third_party/libuv/src/unix/internal.h /^int uv__platform_loop_init(uv_loop_t* loop);$/;" p typeref:typename:int +uv__poll_close third_party/libuv/src/unix/internal.h /^void uv__poll_close(uv_poll_t* handle);$/;" p typeref:typename:void +uv__poll_close third_party/libuv/src/win/internal.h /^int uv__poll_close(uv_loop_t* loop, uv_poll_t* handle);$/;" p typeref:typename:int +uv__poll_endgame third_party/libuv/src/win/internal.h /^void uv__poll_endgame(uv_loop_t* loop, uv_poll_t* handle);$/;" p typeref:typename:void +uv__prepare_close third_party/libuv/src/unix/internal.h /^void uv__prepare_close(uv_prepare_t* handle);$/;" p typeref:typename:void +uv__prepare_invoke third_party/libuv/src/win/internal.h /^void uv__prepare_invoke(uv_loop_t* loop);$/;" p typeref:typename:void +uv__process_async_wakeup_req third_party/libuv/src/win/internal.h /^void uv__process_async_wakeup_req(uv_loop_t* loop, uv_async_t* handle,$/;" p typeref:typename:void +uv__process_close third_party/libuv/src/unix/internal.h /^void uv__process_close(uv_process_t* handle);$/;" p typeref:typename:void +uv__process_close third_party/libuv/src/win/internal.h /^void uv__process_close(uv_loop_t* loop, uv_process_t* handle);$/;" p typeref:typename:void +uv__process_endgame third_party/libuv/src/win/internal.h /^void uv__process_endgame(uv_loop_t* loop, uv_process_t* handle);$/;" p typeref:typename:void +uv__process_endgames third_party/libuv/src/win/handle-inl.h /^INLINE static void uv__process_endgames(uv_loop_t* loop) {$/;" f typeref:typename:INLINE void +uv__process_fs_event_req third_party/libuv/src/win/internal.h /^void uv__process_fs_event_req(uv_loop_t* loop, uv_req_t* req,$/;" p typeref:typename:void +uv__process_init third_party/libuv/src/unix/internal.h /^int uv__process_init(uv_loop_t* loop);$/;" p typeref:typename:int +uv__process_pipe_accept_req third_party/libuv/src/win/internal.h /^void uv__process_pipe_accept_req(uv_loop_t* loop, uv_pipe_t* handle,$/;" p typeref:typename:void +uv__process_pipe_connect_req third_party/libuv/src/win/internal.h /^void uv__process_pipe_connect_req(uv_loop_t* loop, uv_pipe_t* handle,$/;" p typeref:typename:void +uv__process_pipe_read_req third_party/libuv/src/win/internal.h /^void uv__process_pipe_read_req(uv_loop_t* loop, uv_pipe_t* handle,$/;" p typeref:typename:void +uv__process_pipe_shutdown_req third_party/libuv/src/win/internal.h /^void uv__process_pipe_shutdown_req(uv_loop_t* loop, uv_pipe_t* handle,$/;" p typeref:typename:void +uv__process_pipe_write_req third_party/libuv/src/win/internal.h /^void uv__process_pipe_write_req(uv_loop_t* loop, uv_pipe_t* handle,$/;" p typeref:typename:void +uv__process_poll_req third_party/libuv/src/win/internal.h /^void uv__process_poll_req(uv_loop_t* loop, uv_poll_t* handle,$/;" p typeref:typename:void +uv__process_proc_exit third_party/libuv/src/win/internal.h /^void uv__process_proc_exit(uv_loop_t* loop, uv_process_t* handle);$/;" p typeref:typename:void +uv__process_reqs third_party/libuv/src/win/req-inl.h /^INLINE static void uv__process_reqs(uv_loop_t* loop) {$/;" f typeref:typename:INLINE void +uv__process_signal_req third_party/libuv/src/win/internal.h /^void uv__process_signal_req(uv_loop_t* loop, uv_signal_t* handle,$/;" p typeref:typename:void +uv__process_tcp_accept_req third_party/libuv/src/win/internal.h /^void uv__process_tcp_accept_req(uv_loop_t* loop, uv_tcp_t* handle,$/;" p typeref:typename:void +uv__process_tcp_connect_req third_party/libuv/src/win/internal.h /^void uv__process_tcp_connect_req(uv_loop_t* loop, uv_tcp_t* handle,$/;" p typeref:typename:void +uv__process_tcp_read_req third_party/libuv/src/win/internal.h /^void uv__process_tcp_read_req(uv_loop_t* loop, uv_tcp_t* handle, uv_req_t* req);$/;" p typeref:typename:void +uv__process_tcp_shutdown_req third_party/libuv/src/win/internal.h /^void uv__process_tcp_shutdown_req(uv_loop_t* loop,$/;" p typeref:typename:void +uv__process_tcp_write_req third_party/libuv/src/win/internal.h /^void uv__process_tcp_write_req(uv_loop_t* loop, uv_tcp_t* handle,$/;" p typeref:typename:void +uv__process_title_cleanup third_party/libuv/src/uv-common.h /^void uv__process_title_cleanup(void);$/;" p typeref:typename:void +uv__process_tty_accept_req third_party/libuv/src/win/internal.h /^#define uv__process_tty_accept_req(/;" d +uv__process_tty_connect_req third_party/libuv/src/win/internal.h /^#define uv__process_tty_connect_req(/;" d +uv__process_tty_read_req third_party/libuv/src/win/internal.h /^void uv__process_tty_read_req(uv_loop_t* loop, uv_tty_t* handle,$/;" p typeref:typename:void +uv__process_tty_shutdown_req third_party/libuv/src/win/internal.h /^void uv__process_tty_shutdown_req(uv_loop_t* loop,$/;" p typeref:typename:void +uv__process_tty_write_req third_party/libuv/src/win/internal.h /^void uv__process_tty_write_req(uv_loop_t* loop, uv_tty_t* handle,$/;" p typeref:typename:void +uv__process_udp_recv_req third_party/libuv/src/win/internal.h /^void uv__process_udp_recv_req(uv_loop_t* loop, uv_udp_t* handle, uv_req_t* req);$/;" p typeref:typename:void +uv__process_udp_send_req third_party/libuv/src/win/internal.h /^void uv__process_udp_send_req(uv_loop_t* loop, uv_udp_t* handle,$/;" p typeref:typename:void +uv__queue third_party/libuv/include/uv.h /^struct uv__queue {$/;" s +uv__queue_add third_party/libuv/src/queue.h /^static inline void uv__queue_add(struct uv__queue* h, struct uv__queue* n) {$/;" f typeref:typename:void +uv__queue_data third_party/libuv/src/queue.h /^#define uv__queue_data(/;" d +uv__queue_empty third_party/libuv/src/queue.h /^static inline int uv__queue_empty(const struct uv__queue* q) {$/;" f typeref:typename:int +uv__queue_foreach third_party/libuv/src/queue.h /^#define uv__queue_foreach(/;" d +uv__queue_head third_party/libuv/src/queue.h /^static inline struct uv__queue* uv__queue_head(const struct uv__queue* q) {$/;" f typeref:struct:uv__queue * +uv__queue_init third_party/libuv/src/queue.h /^static inline void uv__queue_init(struct uv__queue* q) {$/;" f typeref:typename:void +uv__queue_insert_head third_party/libuv/src/queue.h /^static inline void uv__queue_insert_head(struct uv__queue* h,$/;" f typeref:typename:void +uv__queue_insert_tail third_party/libuv/src/queue.h /^static inline void uv__queue_insert_tail(struct uv__queue* h,$/;" f typeref:typename:void +uv__queue_move third_party/libuv/src/queue.h /^static inline void uv__queue_move(struct uv__queue* h, struct uv__queue* n) {$/;" f typeref:typename:void +uv__queue_next third_party/libuv/src/queue.h /^static inline struct uv__queue* uv__queue_next(const struct uv__queue* q) {$/;" f typeref:struct:uv__queue * +uv__queue_remove third_party/libuv/src/queue.h /^static inline void uv__queue_remove(struct uv__queue* q) {$/;" f typeref:typename:void +uv__queue_split third_party/libuv/src/queue.h /^static inline void uv__queue_split(struct uv__queue* h,$/;" f typeref:typename:void +uv__random_devurandom third_party/libuv/src/unix/internal.h /^int uv__random_devurandom(void* buf, size_t buflen);$/;" p typeref:typename:int +uv__random_getentropy third_party/libuv/src/unix/internal.h /^int uv__random_getentropy(void* buf, size_t buflen);$/;" p typeref:typename:int +uv__random_getrandom third_party/libuv/src/unix/internal.h /^int uv__random_getrandom(void* buf, size_t buflen);$/;" p typeref:typename:int +uv__random_readpath third_party/libuv/src/unix/internal.h /^int uv__random_readpath(const char* path, void* buf, size_t buflen);$/;" p typeref:typename:int +uv__random_rtlgenrandom third_party/libuv/src/win/internal.h /^int uv__random_rtlgenrandom(void* buf, size_t buflen);$/;" p typeref:typename:int +uv__random_sysctl third_party/libuv/src/unix/internal.h /^int uv__random_sysctl(void* buf, size_t buflen);$/;" p typeref:typename:int +uv__read_start third_party/libuv/src/uv-common.h /^int uv__read_start(uv_stream_t* stream,$/;" p typeref:typename:int +uv__realloc third_party/libuv/src/uv-common.h /^void* uv__realloc(void* ptr, size_t size);$/;" p typeref:typename:void * +uv__reallocf third_party/libuv/src/uv-common.h /^void* uv__reallocf(void* ptr, size_t size);$/;" p typeref:typename:void * +uv__recvmsg third_party/libuv/src/unix/internal.h /^ssize_t uv__recvmsg(int fd, struct msghdr *msg, int flags);$/;" p typeref:typename:ssize_t +uv__req_init third_party/libuv/src/uv-common.h /^#define uv__req_init(/;" d +uv__req_register third_party/libuv/src/uv-common.h /^#define uv__req_register(/;" d +uv__req_unregister third_party/libuv/src/uv-common.h /^#define uv__req_unregister(/;" d +uv__run_check third_party/libuv/src/unix/internal.h /^void uv__run_check(uv_loop_t* loop);$/;" p typeref:typename:void +uv__run_idle third_party/libuv/src/unix/internal.h /^void uv__run_idle(uv_loop_t* loop);$/;" p typeref:typename:void +uv__run_prepare third_party/libuv/src/unix/internal.h /^void uv__run_prepare(uv_loop_t* loop);$/;" p typeref:typename:void +uv__run_timers third_party/libuv/src/uv-common.h /^void uv__run_timers(uv_loop_t* loop);$/;" p typeref:typename:void +uv__search_path third_party/libuv/src/unix/internal.h /^int uv__search_path(const char* prog, char* buf, size_t* buflen);$/;" p typeref:typename:int +uv__server_io third_party/libuv/src/unix/internal.h /^void uv__server_io(uv_loop_t* loop, uv__io_t* w, unsigned int events);$/;" p typeref:typename:void +uv__signal_cleanup third_party/libuv/src/uv-common.h /^void uv__signal_cleanup(void);$/;" p typeref:typename:void +uv__signal_close third_party/libuv/src/unix/internal.h /^void uv__signal_close(uv_signal_t* handle);$/;" p typeref:typename:void +uv__signal_close third_party/libuv/src/win/internal.h /^void uv__signal_close(uv_loop_t* loop, uv_signal_t* handle);$/;" p typeref:typename:void +uv__signal_dispatch third_party/libuv/src/win/internal.h /^int uv__signal_dispatch(int signum);$/;" p typeref:typename:int +uv__signal_endgame third_party/libuv/src/win/internal.h /^void uv__signal_endgame(uv_loop_t* loop, uv_signal_t* handle);$/;" p typeref:typename:void +uv__signal_global_once_init third_party/libuv/src/unix/internal.h /^void uv__signal_global_once_init(void);$/;" p typeref:typename:void +uv__signal_loop_cleanup third_party/libuv/src/unix/internal.h /^void uv__signal_loop_cleanup(uv_loop_t* loop);$/;" p typeref:typename:void +uv__signal_loop_fork third_party/libuv/src/unix/internal.h /^int uv__signal_loop_fork(uv_loop_t* loop);$/;" p typeref:typename:int +uv__signals_init third_party/libuv/src/win/internal.h /^void uv__signals_init(void);$/;" p typeref:typename:void +uv__slurp third_party/libuv/src/unix/internal.h /^int uv__slurp(const char* filename, char* buf, size_t len);$/;" p typeref:typename:int +uv__sock_reuseport third_party/libuv/src/unix/internal.h /^int uv__sock_reuseport(int fd);$/;" p typeref:typename:int +uv__sockaddr third_party/libuv/src/unix/internal.h /^union uv__sockaddr {$/;" u +uv__socket third_party/libuv/src/unix/internal.h /^int uv__socket(int domain, int type, int protocol);$/;" p typeref:typename:int +uv__socket_sockopt third_party/libuv/src/uv-common.h /^int uv__socket_sockopt(uv_handle_t* handle, int optname, int* value);$/;" p typeref:typename:int +uv__statx third_party/libuv/src/unix/internal.h /^int uv__statx(int dirfd,$/;" p typeref:typename:int +uv__statx third_party/libuv/src/unix/internal.h /^struct uv__statx {$/;" s +uv__statx_timestamp third_party/libuv/src/unix/internal.h /^struct uv__statx_timestamp {$/;" s +uv__statx_to_stat third_party/libuv/src/unix/internal.h /^void uv__statx_to_stat(const struct uv__statx* statxbuf, uv_stat_t* buf);$/;" p typeref:typename:void +uv__stdio_create third_party/libuv/src/win/internal.h /^int uv__stdio_create(uv_loop_t* loop,$/;" p typeref:typename:int +uv__stdio_destroy third_party/libuv/src/win/internal.h /^void uv__stdio_destroy(BYTE* buffer);$/;" p typeref:typename:void +uv__stdio_handle third_party/libuv/src/win/internal.h /^HANDLE uv__stdio_handle(BYTE* buffer, int fd);$/;" p typeref:typename:HANDLE +uv__stdio_noinherit third_party/libuv/src/win/internal.h /^void uv__stdio_noinherit(BYTE* buffer);$/;" p typeref:typename:void +uv__stdio_size third_party/libuv/src/win/internal.h /^WORD uv__stdio_size(BYTE* buffer);$/;" p typeref:typename:WORD +uv__stdio_verify third_party/libuv/src/win/internal.h /^int uv__stdio_verify(BYTE* buffer, WORD size);$/;" p typeref:typename:int +uv__strdup third_party/libuv/src/uv-common.h /^char *uv__strdup(const char* s);$/;" p typeref:typename:char * +uv__stream_close third_party/libuv/src/unix/internal.h /^void uv__stream_close(uv_stream_t* handle);$/;" p typeref:typename:void +uv__stream_destroy third_party/libuv/src/unix/internal.h /^void uv__stream_destroy(uv_stream_t* stream);$/;" p typeref:typename:void +uv__stream_fd third_party/libuv/src/unix/internal.h /^#define uv__stream_fd(/;" d +uv__stream_init third_party/libuv/src/unix/internal.h /^void uv__stream_init(uv_loop_t* loop, uv_stream_t* stream,$/;" p typeref:typename:void +uv__stream_init third_party/libuv/src/win/stream-inl.h /^INLINE static void uv__stream_init(uv_loop_t* loop,$/;" f typeref:typename:INLINE void +uv__stream_open third_party/libuv/src/unix/internal.h /^int uv__stream_open(uv_stream_t*, int fd, int flags);$/;" p typeref:typename:int +uv__stream_queued_fds_s third_party/libuv/src/unix/internal.h /^struct uv__stream_queued_fds_s {$/;" s +uv__stream_queued_fds_t third_party/libuv/src/unix/internal.h /^typedef struct uv__stream_queued_fds_s uv__stream_queued_fds_t;$/;" t typeref:struct:uv__stream_queued_fds_s +uv__stream_try_select third_party/libuv/src/unix/internal.h /^int uv__stream_try_select(uv_stream_t* stream, int* fd);$/;" p typeref:typename:int +uv__strndup third_party/libuv/src/uv-common.h /^char *uv__strndup(const char* s, size_t n);$/;" p typeref:typename:char * +uv__strscpy third_party/libuv/src/strscpy.h /^ssize_t uv__strscpy(char* d, const char* s, size_t n);$/;" p typeref:typename:ssize_t +uv__strtok third_party/libuv/src/strtok.h /^char* uv__strtok(char* str, const char* sep, char** itr);$/;" p typeref:typename:char * +uv__tcp_accept third_party/libuv/src/win/internal.h /^int uv__tcp_accept(uv_tcp_t* server, uv_tcp_t* client);$/;" p typeref:typename:int +uv__tcp_bind third_party/libuv/src/uv-common.h /^int uv__tcp_bind(uv_tcp_t* tcp,$/;" p typeref:typename:int +uv__tcp_close third_party/libuv/src/unix/internal.h /^void uv__tcp_close(uv_tcp_t* handle);$/;" p typeref:typename:void +uv__tcp_close third_party/libuv/src/win/internal.h /^void uv__tcp_close(uv_loop_t* loop, uv_tcp_t* tcp);$/;" p typeref:typename:void +uv__tcp_connect third_party/libuv/src/uv-common.h /^int uv__tcp_connect(uv_connect_t* req,$/;" p typeref:typename:int +uv__tcp_endgame third_party/libuv/src/win/internal.h /^void uv__tcp_endgame(uv_loop_t* loop, uv_tcp_t* handle);$/;" p typeref:typename:void +uv__tcp_keepalive third_party/libuv/src/unix/internal.h /^int uv__tcp_keepalive(int fd, int on, unsigned int delay);$/;" p typeref:typename:int +uv__tcp_listen third_party/libuv/src/unix/internal.h /^int uv__tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb);$/;" p typeref:typename:int +uv__tcp_listen third_party/libuv/src/win/internal.h /^int uv__tcp_listen(uv_tcp_t* handle, int backlog, uv_connection_cb cb);$/;" p typeref:typename:int +uv__tcp_nodelay third_party/libuv/src/unix/internal.h /^int uv__tcp_nodelay(int fd, int on);$/;" p typeref:typename:int +uv__tcp_read_start third_party/libuv/src/win/internal.h /^int uv__tcp_read_start(uv_tcp_t* handle, uv_alloc_cb alloc_cb,$/;" p typeref:typename:int +uv__tcp_try_write third_party/libuv/src/win/internal.h /^int uv__tcp_try_write(uv_tcp_t* handle, const uv_buf_t bufs[],$/;" p typeref:typename:int +uv__tcp_write third_party/libuv/src/win/internal.h /^int uv__tcp_write(uv_loop_t* loop, uv_write_t* req, uv_tcp_t* handle,$/;" p typeref:typename:int +uv__tcp_xfer_export third_party/libuv/src/win/internal.h /^int uv__tcp_xfer_export(uv_tcp_t* handle,$/;" p typeref:typename:int +uv__tcp_xfer_import third_party/libuv/src/win/internal.h /^int uv__tcp_xfer_import(uv_tcp_t* tcp,$/;" p typeref:typename:int +uv__thread_getname third_party/libuv/src/unix/internal.h /^int uv__thread_getname(uv_thread_t* tid, char* name, size_t size);$/;" p typeref:typename:int +uv__thread_setname third_party/libuv/src/unix/internal.h /^int uv__thread_setname(const char* name);$/;" p typeref:typename:int +uv__thread_stack_size third_party/libuv/src/unix/internal.h /^size_t uv__thread_stack_size(void);$/;" p typeref:typename:size_t +uv__threadpool_cleanup third_party/libuv/src/uv-common.h /^void uv__threadpool_cleanup(void);$/;" p typeref:typename:void +uv__timer_close third_party/libuv/src/uv-common.h /^void uv__timer_close(uv_timer_t* handle);$/;" p typeref:typename:void +uv__tty_close third_party/libuv/src/unix/internal.h /^void uv__tty_close(uv_tty_t* handle);$/;" p typeref:typename:void +uv__tty_close third_party/libuv/src/win/internal.h /^void uv__tty_close(uv_tty_t* handle);$/;" p typeref:typename:void +uv__tty_endgame third_party/libuv/src/win/internal.h /^void uv__tty_endgame(uv_loop_t* loop, uv_tty_t* handle);$/;" p typeref:typename:void +uv__tty_read_start third_party/libuv/src/win/internal.h /^int uv__tty_read_start(uv_tty_t* handle, uv_alloc_cb alloc_cb,$/;" p typeref:typename:int +uv__tty_read_stop third_party/libuv/src/win/internal.h /^int uv__tty_read_stop(uv_tty_t* handle);$/;" p typeref:typename:int +uv__tty_try_write third_party/libuv/src/win/internal.h /^int uv__tty_try_write(uv_tty_t* handle, const uv_buf_t bufs[],$/;" p typeref:typename:int +uv__tty_write third_party/libuv/src/win/internal.h /^int uv__tty_write(uv_loop_t* loop, uv_write_t* req, uv_tty_t* handle,$/;" p typeref:typename:int +uv__udp_bind third_party/libuv/src/uv-common.h /^int uv__udp_bind(uv_udp_t* handle,$/;" p typeref:typename:int +uv__udp_close third_party/libuv/src/unix/internal.h /^void uv__udp_close(uv_udp_t* handle);$/;" p typeref:typename:void +uv__udp_close third_party/libuv/src/win/internal.h /^void uv__udp_close(uv_loop_t* loop, uv_udp_t* handle);$/;" p typeref:typename:void +uv__udp_connect third_party/libuv/src/uv-common.h /^int uv__udp_connect(uv_udp_t* handle,$/;" p typeref:typename:int +uv__udp_disconnect third_party/libuv/src/uv-common.h /^int uv__udp_disconnect(uv_udp_t* handle);$/;" p typeref:typename:int +uv__udp_endgame third_party/libuv/src/win/internal.h /^void uv__udp_endgame(uv_loop_t* loop, uv_udp_t* handle);$/;" p typeref:typename:void +uv__udp_finish_close third_party/libuv/src/unix/internal.h /^void uv__udp_finish_close(uv_udp_t* handle);$/;" p typeref:typename:void +uv__udp_init_ex third_party/libuv/src/uv-common.h /^int uv__udp_init_ex(uv_loop_t* loop,$/;" p typeref:typename:int +uv__udp_is_connected third_party/libuv/src/uv-common.h /^int uv__udp_is_connected(uv_udp_t* handle);$/;" p typeref:typename:int +uv__udp_recv_start third_party/libuv/src/uv-common.h /^int uv__udp_recv_start(uv_udp_t* handle, uv_alloc_cb alloccb,$/;" p typeref:typename:int +uv__udp_recv_stop third_party/libuv/src/uv-common.h /^int uv__udp_recv_stop(uv_udp_t* handle);$/;" p typeref:typename:int +uv__udp_send third_party/libuv/src/uv-common.h /^int uv__udp_send(uv_udp_send_t* req,$/;" p typeref:typename:int +uv__udp_try_send third_party/libuv/src/uv-common.h /^int uv__udp_try_send(uv_udp_t* handle,$/;" p typeref:typename:int +uv__udp_try_send2 third_party/libuv/src/uv-common.h /^int uv__udp_try_send2(uv_udp_t* handle,$/;" p typeref:typename:int +uv__utf8_decode1 third_party/libuv/src/idna.h /^unsigned uv__utf8_decode1(const char** p, const char* pe);$/;" p typeref:typename:unsigned +uv__util_init third_party/libuv/src/win/internal.h /^void uv__util_init(void);$/;" p typeref:typename:void +uv__wait_children third_party/libuv/src/unix/internal.h /^void uv__wait_children(uv_loop_t* loop);$/;" p typeref:typename:void +uv__wake_all_loops third_party/libuv/src/win/internal.h /^void uv__wake_all_loops(void);$/;" p typeref:typename:void +uv__want_endgame third_party/libuv/src/win/handle-inl.h /^INLINE static void uv__want_endgame(uv_loop_t* loop, uv_handle_t* handle) {$/;" f typeref:typename:INLINE void +uv__winapi_init third_party/libuv/src/win/internal.h /^void uv__winapi_init(void);$/;" p typeref:typename:void +uv__winsock_init third_party/libuv/src/win/internal.h /^void uv__winsock_init(void);$/;" p typeref:typename:void +uv__work third_party/libuv/include/uv/threadpool.h /^struct uv__work {$/;" s +uv__work_done third_party/libuv/src/uv-common.h /^void uv__work_done(uv_async_t* handle);$/;" p typeref:typename:void +uv__work_kind third_party/libuv/src/uv-common.h /^enum uv__work_kind {$/;" g +uv__work_submit third_party/libuv/src/uv-common.h /^void uv__work_submit(uv_loop_t* loop,$/;" p typeref:typename:void +uv__wsarecv_workaround third_party/libuv/src/win/internal.h /^int WSAAPI uv__wsarecv_workaround(SOCKET socket, WSABUF* buffers,$/;" p typeref:typename:int WSAAPI +uv__wsarecvfrom_workaround third_party/libuv/src/win/internal.h /^int WSAAPI uv__wsarecvfrom_workaround(SOCKET socket, WSABUF* buffers,$/;" p typeref:typename:int WSAAPI +uv_accept third_party/libuv/include/uv.h /^UV_EXTERN int uv_accept(uv_stream_t* server, uv_stream_t* client);$/;" p typeref:typename:UV_EXTERN int +uv_after_work_cb third_party/libuv/include/uv.h /^typedef void (*uv_after_work_cb)(uv_work_t* req, int status);$/;" t typeref:typename:void (*)(uv_work_t * req,int status) +uv_alloc_cb third_party/libuv/include/uv.h /^typedef void (*uv_alloc_cb)(uv_handle_t* handle,$/;" t typeref:typename:void (*)(uv_handle_t * handle,size_t suggested_size,uv_buf_t * buf) +uv_any_handle third_party/libuv/include/uv.h /^union uv_any_handle {$/;" u +uv_any_req third_party/libuv/include/uv.h /^union uv_any_req {$/;" u +uv_async_cb third_party/libuv/include/uv.h /^typedef void (*uv_async_cb)(uv_async_t* handle);$/;" t typeref:typename:void (*)(uv_async_t * handle) +uv_async_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_async_init(uv_loop_t*,$/;" p typeref:typename:UV_EXTERN int +uv_async_s third_party/libuv/include/uv.h /^struct uv_async_s {$/;" s +uv_async_send third_party/libuv/include/uv.h /^UV_EXTERN int uv_async_send(uv_async_t* async);$/;" p typeref:typename:UV_EXTERN int +uv_async_t third_party/libuv/include/uv.h /^typedef struct uv_async_s uv_async_t;$/;" t typeref:struct:uv_async_s +uv_available_parallelism third_party/libuv/include/uv.h /^UV_EXTERN unsigned int uv_available_parallelism(void);$/;" p typeref:typename:UV_EXTERN unsigned int +uv_backend_fd third_party/libuv/include/uv.h /^UV_EXTERN int uv_backend_fd(const uv_loop_t*);$/;" p typeref:typename:UV_EXTERN int +uv_backend_timeout third_party/libuv/include/uv.h /^UV_EXTERN int uv_backend_timeout(const uv_loop_t*);$/;" p typeref:typename:UV_EXTERN int +uv_barrier_destroy third_party/libuv/include/uv.h /^UV_EXTERN void uv_barrier_destroy(uv_barrier_t* barrier);$/;" p typeref:typename:UV_EXTERN void +uv_barrier_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_barrier_init(uv_barrier_t* barrier, unsigned int count);$/;" p typeref:typename:UV_EXTERN int +uv_barrier_t third_party/libuv/include/uv/unix.h /^typedef pthread_barrier_t uv_barrier_t;$/;" t typeref:typename:pthread_barrier_t +uv_barrier_t third_party/libuv/include/uv/unix.h /^} uv_barrier_t;$/;" t typeref:struct:__anon5825c6f60108 +uv_barrier_t third_party/libuv/include/uv/win.h /^} uv_barrier_t;$/;" t typeref:struct:__anond441abe00408 +uv_barrier_wait third_party/libuv/include/uv.h /^UV_EXTERN int uv_barrier_wait(uv_barrier_t* barrier);$/;" p typeref:typename:UV_EXTERN int +uv_buf_init third_party/libuv/include/uv.h /^UV_EXTERN uv_buf_t uv_buf_init(char* base, unsigned int len);$/;" p typeref:typename:UV_EXTERN uv_buf_t +uv_buf_t third_party/libuv/include/uv/unix.h /^typedef struct uv_buf_t {$/;" s +uv_buf_t third_party/libuv/include/uv/unix.h /^} uv_buf_t;$/;" t typeref:struct:uv_buf_t +uv_buf_t third_party/libuv/include/uv/win.h /^typedef struct uv_buf_t {$/;" s +uv_buf_t third_party/libuv/include/uv/win.h /^} uv_buf_t;$/;" t typeref:struct:uv_buf_t +uv_calloc_func third_party/libuv/include/uv.h /^typedef void* (*uv_calloc_func)(size_t count, size_t size);$/;" t typeref:typename:void * (*)(size_t count,size_t size) +uv_cancel third_party/libuv/include/uv.h /^UV_EXTERN int uv_cancel(uv_req_t* req);$/;" p typeref:typename:UV_EXTERN int +uv_chdir third_party/libuv/include/uv.h /^UV_EXTERN int uv_chdir(const char* dir);$/;" p typeref:typename:UV_EXTERN int +uv_check_cb third_party/libuv/include/uv.h /^typedef void (*uv_check_cb)(uv_check_t* handle);$/;" t typeref:typename:void (*)(uv_check_t * handle) +uv_check_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_check_init(uv_loop_t*, uv_check_t* check);$/;" p typeref:typename:UV_EXTERN int +uv_check_s third_party/libuv/include/uv.h /^struct uv_check_s {$/;" s +uv_check_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_check_start(uv_check_t* check, uv_check_cb cb);$/;" p typeref:typename:UV_EXTERN int +uv_check_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_check_stop(uv_check_t* check);$/;" p typeref:typename:UV_EXTERN int +uv_check_t third_party/libuv/include/uv.h /^typedef struct uv_check_s uv_check_t;$/;" t typeref:struct:uv_check_s +uv_clock_gettime third_party/libuv/include/uv.h /^UV_EXTERN int uv_clock_gettime(uv_clock_id clock_id, uv_timespec64_t* ts);$/;" p typeref:typename:UV_EXTERN int +uv_clock_id third_party/libuv/include/uv.h /^} uv_clock_id;$/;" t typeref:enum:__anon4de24c230603 +uv_clocktype_t third_party/libuv/src/unix/internal.h /^} uv_clocktype_t;$/;" t typeref:enum:__anona662544c0303 +uv_close third_party/libuv/include/uv.h /^UV_EXTERN void uv_close(uv_handle_t* handle, uv_close_cb close_cb);$/;" p typeref:typename:UV_EXTERN void +uv_close_cb third_party/libuv/include/uv.h /^typedef void (*uv_close_cb)(uv_handle_t* handle);$/;" t typeref:typename:void (*)(uv_handle_t * handle) +uv_cond_broadcast third_party/libuv/include/uv.h /^UV_EXTERN void uv_cond_broadcast(uv_cond_t* cond);$/;" p typeref:typename:UV_EXTERN void +uv_cond_destroy third_party/libuv/include/uv.h /^UV_EXTERN void uv_cond_destroy(uv_cond_t* cond);$/;" p typeref:typename:UV_EXTERN void +uv_cond_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_cond_init(uv_cond_t* cond);$/;" p typeref:typename:UV_EXTERN int +uv_cond_signal third_party/libuv/include/uv.h /^UV_EXTERN void uv_cond_signal(uv_cond_t* cond);$/;" p typeref:typename:UV_EXTERN void +uv_cond_t third_party/libuv/include/uv/unix.h /^typedef pthread_cond_t uv_cond_t;$/;" t typeref:typename:pthread_cond_t +uv_cond_t third_party/libuv/include/uv/win.h /^} uv_cond_t;$/;" t typeref:union:__anond441abe0010a +uv_cond_timedwait third_party/libuv/include/uv.h /^UV_EXTERN int uv_cond_timedwait(uv_cond_t* cond,$/;" p typeref:typename:UV_EXTERN int +uv_cond_wait third_party/libuv/include/uv.h /^UV_EXTERN void uv_cond_wait(uv_cond_t* cond, uv_mutex_t* mutex);$/;" p typeref:typename:UV_EXTERN void +uv_connect_cb third_party/libuv/include/uv.h /^typedef void (*uv_connect_cb)(uv_connect_t* req, int status);$/;" t typeref:typename:void (*)(uv_connect_t * req,int status) +uv_connect_s third_party/libuv/include/uv.h /^struct uv_connect_s {$/;" s +uv_connect_t third_party/libuv/include/uv.h /^typedef struct uv_connect_s uv_connect_t;$/;" t typeref:struct:uv_connect_s +uv_connection_cb third_party/libuv/include/uv.h /^typedef void (*uv_connection_cb)(uv_stream_t* server, int status);$/;" t typeref:typename:void (*)(uv_stream_t * server,int status) +uv_cpu_info third_party/libuv/include/uv.h /^UV_EXTERN int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count);$/;" p typeref:typename:UV_EXTERN int +uv_cpu_info_s third_party/libuv/include/uv.h /^struct uv_cpu_info_s {$/;" s +uv_cpu_info_t third_party/libuv/include/uv.h /^typedef struct uv_cpu_info_s uv_cpu_info_t;$/;" t typeref:struct:uv_cpu_info_s +uv_cpu_times_s third_party/libuv/include/uv.h /^struct uv_cpu_times_s {$/;" s +uv_cpumask_size third_party/libuv/include/uv.h /^UV_EXTERN int uv_cpumask_size(void);$/;" p typeref:typename:UV_EXTERN int +uv_cwd third_party/libuv/include/uv.h /^UV_EXTERN int uv_cwd(char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_default_loop third_party/libuv/include/uv.h /^UV_EXTERN uv_loop_t* uv_default_loop(void);$/;" p typeref:typename:UV_EXTERN uv_loop_t * +uv_dir_s third_party/libuv/include/uv.h /^struct uv_dir_s {$/;" s +uv_dir_t third_party/libuv/include/uv.h /^typedef struct uv_dir_s uv_dir_t;$/;" t typeref:struct:uv_dir_s +uv_dirent_s third_party/libuv/include/uv.h /^struct uv_dirent_s {$/;" s +uv_dirent_t third_party/libuv/include/uv.h /^typedef struct uv_dirent_s uv_dirent_t;$/;" t typeref:struct:uv_dirent_s +uv_dirent_type_t third_party/libuv/include/uv.h /^} uv_dirent_type_t;$/;" t typeref:enum:__anon4de24c231403 +uv_disable_stdio_inheritance third_party/libuv/include/uv.h /^UV_EXTERN void uv_disable_stdio_inheritance(void);$/;" p typeref:typename:UV_EXTERN void +uv_dlclose third_party/libuv/include/uv.h /^UV_EXTERN void uv_dlclose(uv_lib_t* lib);$/;" p typeref:typename:UV_EXTERN void +uv_dlerror third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_dlerror(const uv_lib_t* lib);$/;" p typeref:typename:UV_EXTERN const char * +uv_dlopen third_party/libuv/include/uv.h /^UV_EXTERN int uv_dlopen(const char* filename, uv_lib_t* lib);$/;" p typeref:typename:UV_EXTERN int +uv_dlsym third_party/libuv/include/uv.h /^UV_EXTERN int uv_dlsym(uv_lib_t* lib, const char* name, void** ptr);$/;" p typeref:typename:UV_EXTERN int +uv_env_item_s third_party/libuv/include/uv.h /^struct uv_env_item_s {$/;" s +uv_env_item_t third_party/libuv/include/uv.h /^typedef struct uv_env_item_s uv_env_item_t;$/;" t typeref:struct:uv_env_item_s +uv_err_name third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_err_name(int err);$/;" p typeref:typename:UV_EXTERN const char * +uv_err_name_r third_party/libuv/include/uv.h /^UV_EXTERN char* uv_err_name_r(int err, char* buf, size_t buflen);$/;" p typeref:typename:UV_EXTERN char * +uv_errno_t third_party/libuv/include/uv.h /^} uv_errno_t;$/;" t typeref:enum:__anon4de24c230103 +uv_exepath third_party/libuv/include/uv.h /^UV_EXTERN int uv_exepath(char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_exit_cb third_party/libuv/include/uv.h /^typedef void (*uv_exit_cb)(uv_process_t*, int64_t exit_status, int term_signal);$/;" t typeref:typename:void (*)(uv_process_t *,int64_t exit_status,int term_signal) +uv_fatal_error third_party/libuv/src/win/internal.h /^__declspec(noreturn) void uv_fatal_error(const int errorno, const char* syscall);$/;" p typeref:typename:void +uv_file third_party/libuv/include/uv/unix.h /^typedef int uv_file;$/;" t typeref:typename:int +uv_file third_party/libuv/include/uv/win.h /^typedef int uv_file;$/;" t typeref:typename:int +uv_fileno third_party/libuv/include/uv.h /^UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);$/;" p typeref:typename:UV_EXTERN int +uv_free_cpu_info third_party/libuv/include/uv.h /^UV_EXTERN void uv_free_cpu_info(uv_cpu_info_t* cpu_infos, int count);$/;" p typeref:typename:UV_EXTERN void +uv_free_func third_party/libuv/include/uv.h /^typedef void (*uv_free_func)(void* ptr);$/;" t typeref:typename:void (*)(void * ptr) +uv_free_interface_addresses third_party/libuv/include/uv.h /^UV_EXTERN void uv_free_interface_addresses(uv_interface_address_t* addresses,$/;" p typeref:typename:UV_EXTERN void +uv_freeaddrinfo third_party/libuv/include/uv.h /^UV_EXTERN void uv_freeaddrinfo(struct addrinfo* ai);$/;" p typeref:typename:UV_EXTERN void +uv_fs_access third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_access(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_cb third_party/libuv/include/uv.h /^typedef void (*uv_fs_cb)(uv_fs_t* req);$/;" t typeref:typename:void (*)(uv_fs_t * req) +uv_fs_chmod third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_chmod(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_chown third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_chown(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_close third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_close(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_closedir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_closedir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_copyfile third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_copyfile(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_event third_party/libuv/include/uv.h /^enum uv_fs_event {$/;" g +uv_fs_event_cb third_party/libuv/include/uv.h /^typedef void (*uv_fs_event_cb)(uv_fs_event_t* handle,$/;" t typeref:typename:void (*)(uv_fs_event_t * handle,const char * filename,int events,int status) +uv_fs_event_flags third_party/libuv/include/uv.h /^enum uv_fs_event_flags {$/;" g +uv_fs_event_getpath third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_event_getpath(uv_fs_event_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_fs_event_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_event_init(uv_loop_t* loop, uv_fs_event_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_fs_event_s third_party/libuv/include/uv.h /^struct uv_fs_event_s {$/;" s +uv_fs_event_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_event_start(uv_fs_event_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_fs_event_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_event_stop(uv_fs_event_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_fs_event_t third_party/libuv/include/uv.h /^typedef struct uv_fs_event_s uv_fs_event_t;$/;" t typeref:struct:uv_fs_event_s +uv_fs_fchmod third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_fchmod(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_fchown third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_fchown(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_fdatasync third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_fdatasync(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_fstat third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_fstat(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_fsync third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_fsync(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_ftruncate third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_ftruncate(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_futime third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_futime(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_get_path third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_fs_get_path(const uv_fs_t*);$/;" p typeref:typename:UV_EXTERN const char * +uv_fs_get_ptr third_party/libuv/include/uv.h /^UV_EXTERN void* uv_fs_get_ptr(const uv_fs_t*);$/;" p typeref:typename:UV_EXTERN void * +uv_fs_get_result third_party/libuv/include/uv.h /^UV_EXTERN ssize_t uv_fs_get_result(const uv_fs_t*);$/;" p typeref:typename:UV_EXTERN ssize_t +uv_fs_get_statbuf third_party/libuv/include/uv.h /^UV_EXTERN uv_stat_t* uv_fs_get_statbuf(uv_fs_t*);$/;" p typeref:typename:UV_EXTERN uv_stat_t * +uv_fs_get_system_error third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_get_system_error(const uv_fs_t*);$/;" p typeref:typename:UV_EXTERN int +uv_fs_get_type third_party/libuv/include/uv.h /^UV_EXTERN uv_fs_type uv_fs_get_type(const uv_fs_t*);$/;" p typeref:typename:UV_EXTERN uv_fs_type +uv_fs_lchown third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_lchown(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_link third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_link(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_lstat third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_lstat(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_lutime third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_lutime(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_mkdir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_mkdir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_mkdtemp third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_mkdtemp(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_mkstemp third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_mkstemp(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_open third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_open(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_opendir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_opendir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_poll_cb third_party/libuv/include/uv.h /^typedef void (*uv_fs_poll_cb)(uv_fs_poll_t* handle,$/;" t typeref:typename:void (*)(uv_fs_poll_t * handle,int status,const uv_stat_t * prev,const uv_stat_t * curr) +uv_fs_poll_getpath third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_poll_getpath(uv_fs_poll_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_fs_poll_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_poll_init(uv_loop_t* loop, uv_fs_poll_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_fs_poll_s third_party/libuv/include/uv.h /^struct uv_fs_poll_s {$/;" s +uv_fs_poll_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_poll_start(uv_fs_poll_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_fs_poll_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_poll_stop(uv_fs_poll_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_fs_poll_t third_party/libuv/include/uv.h /^typedef struct uv_fs_poll_s uv_fs_poll_t;$/;" t typeref:struct:uv_fs_poll_s +uv_fs_read third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_read(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_readdir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_readdir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_readlink third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_readlink(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_realpath third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_realpath(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_rename third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_rename(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_req_cleanup third_party/libuv/include/uv.h /^UV_EXTERN void uv_fs_req_cleanup(uv_fs_t* req);$/;" p typeref:typename:UV_EXTERN void +uv_fs_rmdir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_rmdir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_s third_party/libuv/include/uv.h /^struct uv_fs_s {$/;" s +uv_fs_scandir third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_scandir(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_scandir_next third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_fs_sendfile third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_sendfile(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_stat third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_stat(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_statfs third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_statfs(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_symlink third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_symlink(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_t third_party/libuv/include/uv.h /^typedef struct uv_fs_s uv_fs_t;$/;" t typeref:struct:uv_fs_s +uv_fs_type third_party/libuv/include/uv.h /^} uv_fs_type;$/;" t typeref:enum:__anon4de24c231703 +uv_fs_unlink third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_unlink(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_utime third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_utime(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_fs_write third_party/libuv/include/uv.h /^UV_EXTERN int uv_fs_write(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_get_available_memory third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_get_available_memory(void);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_get_constrained_memory third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_get_constrained_memory(void);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_get_free_memory third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_get_free_memory(void);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_get_osfhandle third_party/libuv/include/uv.h /^UV_EXTERN uv_os_fd_t uv_get_osfhandle(int fd);$/;" p typeref:typename:UV_EXTERN uv_os_fd_t +uv_get_process_title third_party/libuv/include/uv.h /^UV_EXTERN int uv_get_process_title(char* buffer, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_get_total_memory third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_get_total_memory(void);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_getaddrinfo third_party/libuv/include/uv.h /^UV_EXTERN int uv_getaddrinfo(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_getaddrinfo_cb third_party/libuv/include/uv.h /^typedef void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* req,$/;" t typeref:typename:void (*)(uv_getaddrinfo_t * req,int status,struct addrinfo * res) +uv_getaddrinfo_s third_party/libuv/include/uv.h /^struct uv_getaddrinfo_s {$/;" s +uv_getaddrinfo_t third_party/libuv/include/uv.h /^typedef struct uv_getaddrinfo_s uv_getaddrinfo_t;$/;" t typeref:struct:uv_getaddrinfo_s +uv_getnameinfo third_party/libuv/include/uv.h /^UV_EXTERN int uv_getnameinfo(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_getnameinfo_cb third_party/libuv/include/uv.h /^typedef void (*uv_getnameinfo_cb)(uv_getnameinfo_t* req,$/;" t typeref:typename:void (*)(uv_getnameinfo_t * req,int status,const char * hostname,const char * service) +uv_getnameinfo_s third_party/libuv/include/uv.h /^struct uv_getnameinfo_s {$/;" s +uv_getnameinfo_t third_party/libuv/include/uv.h /^typedef struct uv_getnameinfo_s uv_getnameinfo_t;$/;" t typeref:struct:uv_getnameinfo_s +uv_getrusage third_party/libuv/include/uv.h /^UV_EXTERN int uv_getrusage(uv_rusage_t* rusage);$/;" p typeref:typename:UV_EXTERN int +uv_getrusage_thread third_party/libuv/include/uv.h /^UV_EXTERN int uv_getrusage_thread(uv_rusage_t* rusage);$/;" p typeref:typename:UV_EXTERN int +uv_gettimeofday third_party/libuv/include/uv.h /^UV_EXTERN int uv_gettimeofday(uv_timeval64_t* tv);$/;" p typeref:typename:UV_EXTERN int +uv_gid_t third_party/libuv/include/uv/unix.h /^typedef gid_t uv_gid_t;$/;" t typeref:typename:gid_t +uv_gid_t third_party/libuv/include/uv/win.h /^typedef unsigned char uv_gid_t;$/;" t typeref:typename:unsigned char +uv_group_s third_party/libuv/include/uv.h /^struct uv_group_s {$/;" s +uv_group_t third_party/libuv/include/uv.h /^typedef struct uv_group_s uv_group_t;$/;" t typeref:struct:uv_group_s +uv_guess_handle third_party/libuv/include/uv.h /^UV_EXTERN uv_handle_type uv_guess_handle(uv_file file);$/;" p typeref:typename:UV_EXTERN uv_handle_type +uv_handle_get_data third_party/libuv/include/uv.h /^UV_EXTERN void* uv_handle_get_data(const uv_handle_t* handle);$/;" p typeref:typename:UV_EXTERN void * +uv_handle_get_loop third_party/libuv/include/uv.h /^UV_EXTERN uv_loop_t* uv_handle_get_loop(const uv_handle_t* handle);$/;" p typeref:typename:UV_EXTERN uv_loop_t * +uv_handle_get_type third_party/libuv/include/uv.h /^UV_EXTERN uv_handle_type uv_handle_get_type(const uv_handle_t* handle);$/;" p typeref:typename:UV_EXTERN uv_handle_type +uv_handle_s third_party/libuv/include/uv.h /^struct uv_handle_s {$/;" s +uv_handle_set_data third_party/libuv/include/uv.h /^UV_EXTERN void uv_handle_set_data(uv_handle_t* handle, void* data);$/;" p typeref:typename:UV_EXTERN void +uv_handle_size third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_handle_size(uv_handle_type type);$/;" p typeref:typename:UV_EXTERN size_t +uv_handle_t third_party/libuv/include/uv.h /^typedef struct uv_handle_s uv_handle_t;$/;" t typeref:struct:uv_handle_s +uv_handle_type third_party/libuv/include/uv.h /^} uv_handle_type;$/;" t typeref:enum:__anon4de24c230203 +uv_handle_type_name third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_handle_type_name(uv_handle_type type);$/;" p typeref:typename:UV_EXTERN const char * +uv_has_ref third_party/libuv/include/uv.h /^UV_EXTERN int uv_has_ref(const uv_handle_t*);$/;" p typeref:typename:UV_EXTERN int +uv_hrtime third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_hrtime(void);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_idle_cb third_party/libuv/include/uv.h /^typedef void (*uv_idle_cb)(uv_idle_t* handle);$/;" t typeref:typename:void (*)(uv_idle_t * handle) +uv_idle_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_idle_init(uv_loop_t*, uv_idle_t* idle);$/;" p typeref:typename:UV_EXTERN int +uv_idle_s third_party/libuv/include/uv.h /^struct uv_idle_s {$/;" s +uv_idle_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_idle_start(uv_idle_t* idle, uv_idle_cb cb);$/;" p typeref:typename:UV_EXTERN int +uv_idle_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_idle_stop(uv_idle_t* idle);$/;" p typeref:typename:UV_EXTERN int +uv_idle_t third_party/libuv/include/uv.h /^typedef struct uv_idle_s uv_idle_t;$/;" t typeref:struct:uv_idle_s +uv_if_indextoiid third_party/libuv/include/uv.h /^UV_EXTERN int uv_if_indextoiid(unsigned int ifindex,$/;" p typeref:typename:UV_EXTERN int +uv_if_indextoname third_party/libuv/include/uv.h /^UV_EXTERN int uv_if_indextoname(unsigned int ifindex,$/;" p typeref:typename:UV_EXTERN int +uv_inet_ntop third_party/libuv/include/uv.h /^UV_EXTERN int uv_inet_ntop(int af, const void* src, char* dst, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_inet_pton third_party/libuv/include/uv.h /^UV_EXTERN int uv_inet_pton(int af, const char* src, void* dst);$/;" p typeref:typename:UV_EXTERN int +uv_interface_address_s third_party/libuv/include/uv.h /^struct uv_interface_address_s {$/;" s +uv_interface_address_t third_party/libuv/include/uv.h /^typedef struct uv_interface_address_s uv_interface_address_t;$/;" t typeref:struct:uv_interface_address_s +uv_interface_addresses third_party/libuv/include/uv.h /^UV_EXTERN int uv_interface_addresses(uv_interface_address_t** addresses,$/;" p typeref:typename:UV_EXTERN int +uv_ip4_addr third_party/libuv/include/uv.h /^UV_EXTERN int uv_ip4_addr(const char* ip, int port, struct sockaddr_in* addr);$/;" p typeref:typename:UV_EXTERN int +uv_ip4_name third_party/libuv/include/uv.h /^UV_EXTERN int uv_ip4_name(const struct sockaddr_in* src, char* dst, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_ip6_addr third_party/libuv/include/uv.h /^UV_EXTERN int uv_ip6_addr(const char* ip, int port, struct sockaddr_in6* addr);$/;" p typeref:typename:UV_EXTERN int +uv_ip6_name third_party/libuv/include/uv.h /^UV_EXTERN int uv_ip6_name(const struct sockaddr_in6* src, char* dst, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_ip_name third_party/libuv/include/uv.h /^UV_EXTERN int uv_ip_name(const struct sockaddr* src, char* dst, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_is_active third_party/libuv/include/uv.h /^UV_EXTERN int uv_is_active(const uv_handle_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_is_closing third_party/libuv/include/uv.h /^UV_EXTERN int uv_is_closing(const uv_handle_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_is_readable third_party/libuv/include/uv.h /^UV_EXTERN int uv_is_readable(const uv_stream_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_is_writable third_party/libuv/include/uv.h /^UV_EXTERN int uv_is_writable(const uv_stream_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_key_create third_party/libuv/include/uv.h /^UV_EXTERN int uv_key_create(uv_key_t* key);$/;" p typeref:typename:UV_EXTERN int +uv_key_delete third_party/libuv/include/uv.h /^UV_EXTERN void uv_key_delete(uv_key_t* key);$/;" p typeref:typename:UV_EXTERN void +uv_key_get third_party/libuv/include/uv.h /^UV_EXTERN void* uv_key_get(uv_key_t* key);$/;" p typeref:typename:UV_EXTERN void * +uv_key_set third_party/libuv/include/uv.h /^UV_EXTERN void uv_key_set(uv_key_t* key, void* value);$/;" p typeref:typename:UV_EXTERN void +uv_key_t third_party/libuv/include/uv/unix.h /^typedef pthread_key_t uv_key_t;$/;" t typeref:typename:pthread_key_t +uv_key_t third_party/libuv/include/uv/win.h /^} uv_key_t;$/;" t typeref:struct:__anond441abe00508 +uv_kill third_party/libuv/include/uv.h /^UV_EXTERN int uv_kill(int pid, int signum);$/;" p typeref:typename:UV_EXTERN int +uv_lib_t third_party/libuv/include/uv/unix.h /^} uv_lib_t;$/;" t typeref:struct:__anon5825c6f60208 +uv_lib_t third_party/libuv/include/uv/win.h /^} uv_lib_t;$/;" t typeref:struct:__anond441abe00608 +uv_library_shutdown third_party/libuv/include/uv.h /^UV_EXTERN void uv_library_shutdown(void);$/;" p typeref:typename:UV_EXTERN void +uv_listen third_party/libuv/include/uv.h /^UV_EXTERN int uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb);$/;" p typeref:typename:UV_EXTERN int +uv_loadavg third_party/libuv/include/uv.h /^UV_EXTERN void uv_loadavg(double avg[3]);$/;" p typeref:typename:UV_EXTERN void +uv_loop_alive third_party/libuv/include/uv.h /^UV_EXTERN int uv_loop_alive(const uv_loop_t* loop);$/;" p typeref:typename:UV_EXTERN int +uv_loop_close third_party/libuv/include/uv.h /^UV_EXTERN int uv_loop_close(uv_loop_t* loop);$/;" p typeref:typename:UV_EXTERN int +uv_loop_configure third_party/libuv/include/uv.h /^UV_EXTERN int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...);$/;" p typeref:typename:UV_EXTERN int +uv_loop_delete third_party/libuv/include/uv.h /^UV_EXTERN void uv_loop_delete(uv_loop_t*);$/;" p typeref:typename:UV_EXTERN void +uv_loop_fork third_party/libuv/include/uv.h /^UV_EXTERN int uv_loop_fork(uv_loop_t* loop);$/;" p typeref:typename:UV_EXTERN int +uv_loop_get_data third_party/libuv/include/uv.h /^UV_EXTERN void* uv_loop_get_data(const uv_loop_t*);$/;" p typeref:typename:UV_EXTERN void * +uv_loop_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_loop_init(uv_loop_t* loop);$/;" p typeref:typename:UV_EXTERN int +uv_loop_new third_party/libuv/include/uv.h /^UV_EXTERN uv_loop_t* uv_loop_new(void);$/;" p typeref:typename:UV_EXTERN uv_loop_t * +uv_loop_option third_party/libuv/include/uv.h /^} uv_loop_option;$/;" t typeref:enum:__anon4de24c230403 +uv_loop_s third_party/libuv/include/uv.h /^struct uv_loop_s {$/;" s +uv_loop_set_data third_party/libuv/include/uv.h /^UV_EXTERN void uv_loop_set_data(uv_loop_t*, void* data);$/;" p typeref:typename:UV_EXTERN void +uv_loop_size third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_loop_size(void);$/;" p typeref:typename:UV_EXTERN size_t +uv_loop_t third_party/libuv/include/uv.h /^typedef struct uv_loop_s uv_loop_t;$/;" t typeref:struct:uv_loop_s +uv_malloc_func third_party/libuv/include/uv.h /^typedef void* (*uv_malloc_func)(size_t size);$/;" t typeref:typename:void * (*)(size_t size) +uv_membership third_party/libuv/include/uv.h /^} uv_membership;$/;" t typeref:enum:__anon4de24c230c03 +uv_metrics_idle_time third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_metrics_idle_time(uv_loop_t* loop);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_metrics_info third_party/libuv/include/uv.h /^UV_EXTERN int uv_metrics_info(uv_loop_t* loop, uv_metrics_t* metrics);$/;" p typeref:typename:UV_EXTERN int +uv_metrics_s third_party/libuv/include/uv.h /^struct uv_metrics_s {$/;" s +uv_metrics_t third_party/libuv/include/uv.h /^typedef struct uv_metrics_s uv_metrics_t;$/;" t typeref:struct:uv_metrics_s +uv_mutex_destroy third_party/libuv/include/uv.h /^UV_EXTERN void uv_mutex_destroy(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN void +uv_mutex_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_mutex_init(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_mutex_init_recursive third_party/libuv/include/uv.h /^UV_EXTERN int uv_mutex_init_recursive(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_mutex_lock third_party/libuv/include/uv.h /^UV_EXTERN void uv_mutex_lock(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN void +uv_mutex_t third_party/libuv/include/uv/unix.h /^typedef pthread_mutex_t uv_mutex_t;$/;" t typeref:typename:pthread_mutex_t +uv_mutex_t third_party/libuv/include/uv/win.h /^typedef CRITICAL_SECTION uv_mutex_t;$/;" t typeref:typename:CRITICAL_SECTION +uv_mutex_trylock third_party/libuv/include/uv.h /^UV_EXTERN int uv_mutex_trylock(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_mutex_unlock third_party/libuv/include/uv.h /^UV_EXTERN void uv_mutex_unlock(uv_mutex_t* handle);$/;" p typeref:typename:UV_EXTERN void +uv_now third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_now(const uv_loop_t*);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_once third_party/libuv/include/uv.h /^UV_EXTERN void uv_once(uv_once_t* guard, void (*callback)(void));$/;" p typeref:typename:UV_EXTERN void +uv_once_s third_party/libuv/include/uv/win.h /^typedef struct uv_once_s {$/;" s +uv_once_t third_party/libuv/include/uv/unix.h /^typedef pthread_once_t uv_once_t;$/;" t typeref:typename:pthread_once_t +uv_once_t third_party/libuv/include/uv/win.h /^} uv_once_t;$/;" t typeref:struct:uv_once_s +uv_open_osfhandle third_party/libuv/include/uv.h /^UV_EXTERN int uv_open_osfhandle(uv_os_fd_t os_fd);$/;" p typeref:typename:UV_EXTERN int +uv_os_environ third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_environ(uv_env_item_t** envitems, int* count);$/;" p typeref:typename:UV_EXTERN int +uv_os_fd_t third_party/libuv/include/uv/unix.h /^typedef int uv_os_fd_t;$/;" t typeref:typename:int +uv_os_fd_t third_party/libuv/include/uv/win.h /^typedef HANDLE uv_os_fd_t;$/;" t typeref:typename:HANDLE +uv_os_free_environ third_party/libuv/include/uv.h /^UV_EXTERN void uv_os_free_environ(uv_env_item_t* envitems, int count);$/;" p typeref:typename:UV_EXTERN void +uv_os_free_group third_party/libuv/include/uv.h /^UV_EXTERN void uv_os_free_group(uv_group_t* grp);$/;" p typeref:typename:UV_EXTERN void +uv_os_free_passwd third_party/libuv/include/uv.h /^UV_EXTERN void uv_os_free_passwd(uv_passwd_t* pwd);$/;" p typeref:typename:UV_EXTERN void +uv_os_get_group third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_get_group(uv_group_t* grp, uv_uid_t gid);$/;" p typeref:typename:UV_EXTERN int +uv_os_get_passwd third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_get_passwd(uv_passwd_t* pwd);$/;" p typeref:typename:UV_EXTERN int +uv_os_get_passwd2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_get_passwd2(uv_passwd_t* pwd, uv_uid_t uid);$/;" p typeref:typename:UV_EXTERN int +uv_os_getenv third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_os_gethostname third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_gethostname(char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_os_getpid third_party/libuv/include/uv.h /^UV_EXTERN uv_pid_t uv_os_getpid(void);$/;" p typeref:typename:UV_EXTERN uv_pid_t +uv_os_getppid third_party/libuv/include/uv.h /^UV_EXTERN uv_pid_t uv_os_getppid(void);$/;" p typeref:typename:UV_EXTERN uv_pid_t +uv_os_getpriority third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_getpriority(uv_pid_t pid, int* priority);$/;" p typeref:typename:UV_EXTERN int +uv_os_homedir third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_homedir(char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_os_setenv third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_setenv(const char* name, const char* value);$/;" p typeref:typename:UV_EXTERN int +uv_os_setpriority third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_setpriority(uv_pid_t pid, int priority);$/;" p typeref:typename:UV_EXTERN int +uv_os_sock_t third_party/libuv/include/uv/unix.h /^typedef int uv_os_sock_t;$/;" t typeref:typename:int +uv_os_sock_t third_party/libuv/include/uv/win.h /^typedef SOCKET uv_os_sock_t;$/;" t typeref:typename:SOCKET +uv_os_tmpdir third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_tmpdir(char* buffer, size_t* size);$/;" p typeref:typename:UV_EXTERN int +uv_os_uname third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_uname(uv_utsname_t* buffer);$/;" p typeref:typename:UV_EXTERN int +uv_os_unsetenv third_party/libuv/include/uv.h /^UV_EXTERN int uv_os_unsetenv(const char* name);$/;" p typeref:typename:UV_EXTERN int +uv_passwd_s third_party/libuv/include/uv.h /^struct uv_passwd_s {$/;" s +uv_passwd_t third_party/libuv/include/uv.h /^typedef struct uv_passwd_s uv_passwd_t;$/;" t typeref:struct:uv_passwd_s +uv_pid_t third_party/libuv/include/uv/unix.h /^typedef pid_t uv_pid_t;$/;" t typeref:typename:pid_t +uv_pid_t third_party/libuv/include/uv/win.h /^typedef int uv_pid_t;$/;" t typeref:typename:int +uv_pipe third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe(uv_file fds[2], int read_flags, int write_flags);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_bind third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_bind(uv_pipe_t* handle, const char* name);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_bind2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_bind2(uv_pipe_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_pipe_chmod third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_chmod(uv_pipe_t* handle, int flags);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_connect third_party/libuv/include/uv.h /^UV_EXTERN void uv_pipe_connect(uv_connect_t* req,$/;" p typeref:typename:UV_EXTERN void +uv_pipe_connect2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_connect2(uv_connect_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_pipe_connection_fields third_party/libuv/include/uv/win.h /^#define uv_pipe_connection_fields /;" d +uv_pipe_getpeername third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_getpeername(const uv_pipe_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_pipe_getsockname third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_getsockname(const uv_pipe_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_pipe_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_init(uv_loop_t*, uv_pipe_t* handle, int ipc);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_open third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_open(uv_pipe_t*, uv_file file);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_pending_count third_party/libuv/include/uv.h /^UV_EXTERN int uv_pipe_pending_count(uv_pipe_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_pipe_pending_instances third_party/libuv/include/uv.h /^UV_EXTERN void uv_pipe_pending_instances(uv_pipe_t* handle, int count);$/;" p typeref:typename:UV_EXTERN void +uv_pipe_pending_type third_party/libuv/include/uv.h /^UV_EXTERN uv_handle_type uv_pipe_pending_type(uv_pipe_t* handle);$/;" p typeref:typename:UV_EXTERN uv_handle_type +uv_pipe_s third_party/libuv/include/uv.h /^struct uv_pipe_s {$/;" s +uv_pipe_server_fields third_party/libuv/include/uv/win.h /^#define uv_pipe_server_fields /;" d +uv_pipe_t third_party/libuv/include/uv.h /^typedef struct uv_pipe_s uv_pipe_t;$/;" t typeref:struct:uv_pipe_s +uv_poll_cb third_party/libuv/include/uv.h /^typedef void (*uv_poll_cb)(uv_poll_t* handle, int status, int events);$/;" t typeref:typename:void (*)(uv_poll_t * handle,int status,int events) +uv_poll_event third_party/libuv/include/uv.h /^enum uv_poll_event {$/;" g +uv_poll_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_poll_init(uv_loop_t* loop, uv_poll_t* handle, int fd);$/;" p typeref:typename:UV_EXTERN int +uv_poll_init_socket third_party/libuv/include/uv.h /^UV_EXTERN int uv_poll_init_socket(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_poll_s third_party/libuv/include/uv.h /^struct uv_poll_s {$/;" s +uv_poll_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);$/;" p typeref:typename:UV_EXTERN int +uv_poll_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_poll_stop(uv_poll_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_poll_t third_party/libuv/include/uv.h /^typedef struct uv_poll_s uv_poll_t;$/;" t typeref:struct:uv_poll_s +uv_prepare_cb third_party/libuv/include/uv.h /^typedef void (*uv_prepare_cb)(uv_prepare_t* handle);$/;" t typeref:typename:void (*)(uv_prepare_t * handle) +uv_prepare_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_prepare_init(uv_loop_t*, uv_prepare_t* prepare);$/;" p typeref:typename:UV_EXTERN int +uv_prepare_s third_party/libuv/include/uv.h /^struct uv_prepare_s {$/;" s +uv_prepare_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_prepare_start(uv_prepare_t* prepare, uv_prepare_cb cb);$/;" p typeref:typename:UV_EXTERN int +uv_prepare_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_prepare_stop(uv_prepare_t* prepare);$/;" p typeref:typename:UV_EXTERN int +uv_prepare_t third_party/libuv/include/uv.h /^typedef struct uv_prepare_s uv_prepare_t;$/;" t typeref:struct:uv_prepare_s +uv_print_active_handles third_party/libuv/include/uv.h /^UV_EXTERN void uv_print_active_handles(uv_loop_t* loop, FILE* stream);$/;" p typeref:typename:UV_EXTERN void +uv_print_all_handles third_party/libuv/include/uv.h /^UV_EXTERN void uv_print_all_handles(uv_loop_t* loop, FILE* stream);$/;" p typeref:typename:UV_EXTERN void +uv_process_flags third_party/libuv/include/uv.h /^enum uv_process_flags {$/;" g +uv_process_get_pid third_party/libuv/include/uv.h /^UV_EXTERN uv_pid_t uv_process_get_pid(const uv_process_t*);$/;" p typeref:typename:UV_EXTERN uv_pid_t +uv_process_kill third_party/libuv/include/uv.h /^UV_EXTERN int uv_process_kill(uv_process_t*, int signum);$/;" p typeref:typename:UV_EXTERN int +uv_process_options_s third_party/libuv/include/uv.h /^typedef struct uv_process_options_s {$/;" s +uv_process_options_t third_party/libuv/include/uv.h /^} uv_process_options_t;$/;" t typeref:struct:uv_process_options_s +uv_process_s third_party/libuv/include/uv.h /^struct uv_process_s {$/;" s +uv_process_t third_party/libuv/include/uv.h /^typedef struct uv_process_s uv_process_t;$/;" t typeref:struct:uv_process_s +uv_queue_work third_party/libuv/include/uv.h /^UV_EXTERN int uv_queue_work(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_random third_party/libuv/include/uv.h /^UV_EXTERN int uv_random(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_random_cb third_party/libuv/include/uv.h /^typedef void (*uv_random_cb)(uv_random_t* req,$/;" t typeref:typename:void (*)(uv_random_t * req,int status,void * buf,size_t buflen) +uv_random_s third_party/libuv/include/uv.h /^struct uv_random_s {$/;" s +uv_random_t third_party/libuv/include/uv.h /^typedef struct uv_random_s uv_random_t;$/;" t typeref:struct:uv_random_s +uv_read_cb third_party/libuv/include/uv.h /^typedef void (*uv_read_cb)(uv_stream_t* stream,$/;" t typeref:typename:void (*)(uv_stream_t * stream,ssize_t nread,const uv_buf_t * buf) +uv_read_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_read_start(uv_stream_t*,$/;" p typeref:typename:UV_EXTERN int +uv_read_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_read_stop(uv_stream_t*);$/;" p typeref:typename:UV_EXTERN int +uv_realloc_func third_party/libuv/include/uv.h /^typedef void* (*uv_realloc_func)(void* ptr, size_t size);$/;" t typeref:typename:void * (*)(void * ptr,size_t size) +uv_recv_buffer_size third_party/libuv/include/uv.h /^UV_EXTERN int uv_recv_buffer_size(uv_handle_t* handle, int* value);$/;" p typeref:typename:UV_EXTERN int +uv_ref third_party/libuv/include/uv.h /^UV_EXTERN void uv_ref(uv_handle_t*);$/;" p typeref:typename:UV_EXTERN void +uv_replace_allocator third_party/libuv/include/uv.h /^UV_EXTERN int uv_replace_allocator(uv_malloc_func malloc_func,$/;" p typeref:typename:UV_EXTERN int +uv_req_get_data third_party/libuv/include/uv.h /^UV_EXTERN void* uv_req_get_data(const uv_req_t* req);$/;" p typeref:typename:UV_EXTERN void * +uv_req_get_type third_party/libuv/include/uv.h /^UV_EXTERN uv_req_type uv_req_get_type(const uv_req_t* req);$/;" p typeref:typename:UV_EXTERN uv_req_type +uv_req_s third_party/libuv/include/uv.h /^struct uv_req_s {$/;" s +uv_req_set_data third_party/libuv/include/uv.h /^UV_EXTERN void uv_req_set_data(uv_req_t* req, void* data);$/;" p typeref:typename:UV_EXTERN void +uv_req_size third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_req_size(uv_req_type type);$/;" p typeref:typename:UV_EXTERN size_t +uv_req_t third_party/libuv/include/uv.h /^typedef struct uv_req_s uv_req_t;$/;" t typeref:struct:uv_req_s +uv_req_type third_party/libuv/include/uv.h /^} uv_req_type;$/;" t typeref:enum:__anon4de24c230303 +uv_req_type_name third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_req_type_name(uv_req_type type);$/;" p typeref:typename:UV_EXTERN const char * +uv_resident_set_memory third_party/libuv/include/uv.h /^UV_EXTERN int uv_resident_set_memory(size_t* rss);$/;" p typeref:typename:UV_EXTERN int +uv_run third_party/libuv/include/uv.h /^UV_EXTERN int uv_run(uv_loop_t*, uv_run_mode mode);$/;" p typeref:typename:UV_EXTERN int +uv_run_mode third_party/libuv/include/uv.h /^} uv_run_mode;$/;" t typeref:enum:__anon4de24c230503 +uv_rusage_t third_party/libuv/include/uv.h /^} uv_rusage_t;$/;" t typeref:struct:__anon4de24c231508 +uv_rwlock_destroy third_party/libuv/include/uv.h /^UV_EXTERN void uv_rwlock_destroy(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN void +uv_rwlock_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_rwlock_init(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN int +uv_rwlock_rdlock third_party/libuv/include/uv.h /^UV_EXTERN void uv_rwlock_rdlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN void +uv_rwlock_rdunlock third_party/libuv/include/uv.h /^UV_EXTERN void uv_rwlock_rdunlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN void +uv_rwlock_t third_party/libuv/include/uv/unix.h /^typedef pthread_rwlock_t uv_rwlock_t;$/;" t typeref:typename:pthread_rwlock_t +uv_rwlock_t third_party/libuv/include/uv/win.h /^} uv_rwlock_t;$/;" t typeref:struct:__anond441abe00308 +uv_rwlock_tryrdlock third_party/libuv/include/uv.h /^UV_EXTERN int uv_rwlock_tryrdlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN int +uv_rwlock_trywrlock third_party/libuv/include/uv.h /^UV_EXTERN int uv_rwlock_trywrlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN int +uv_rwlock_wrlock third_party/libuv/include/uv.h /^UV_EXTERN void uv_rwlock_wrlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN void +uv_rwlock_wrunlock third_party/libuv/include/uv.h /^UV_EXTERN void uv_rwlock_wrunlock(uv_rwlock_t* rwlock);$/;" p typeref:typename:UV_EXTERN void +uv_sGetHostNameW third_party/libuv/src/win/winapi.h /^typedef int (WINAPI *uv_sGetHostNameW)$/;" t typeref:typename:int (WINAPI *)(PWSTR,int) +uv_sem_destroy third_party/libuv/include/uv.h /^UV_EXTERN void uv_sem_destroy(uv_sem_t* sem);$/;" p typeref:typename:UV_EXTERN void +uv_sem_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_sem_init(uv_sem_t* sem, unsigned int value);$/;" p typeref:typename:UV_EXTERN int +uv_sem_post third_party/libuv/include/uv.h /^UV_EXTERN void uv_sem_post(uv_sem_t* sem);$/;" p typeref:typename:UV_EXTERN void +uv_sem_t third_party/libuv/include/uv/unix.h /^typedef UV_PLATFORM_SEM_T uv_sem_t;$/;" t typeref:typename:UV_PLATFORM_SEM_T +uv_sem_t third_party/libuv/include/uv/win.h /^typedef HANDLE uv_sem_t;$/;" t typeref:typename:HANDLE +uv_sem_trywait third_party/libuv/include/uv.h /^UV_EXTERN int uv_sem_trywait(uv_sem_t* sem);$/;" p typeref:typename:UV_EXTERN int +uv_sem_wait third_party/libuv/include/uv.h /^UV_EXTERN void uv_sem_wait(uv_sem_t* sem);$/;" p typeref:typename:UV_EXTERN void +uv_send_buffer_size third_party/libuv/include/uv.h /^UV_EXTERN int uv_send_buffer_size(uv_handle_t* handle, int* value);$/;" p typeref:typename:UV_EXTERN int +uv_set_process_title third_party/libuv/include/uv.h /^UV_EXTERN int uv_set_process_title(const char* title);$/;" p typeref:typename:UV_EXTERN int +uv_setup_args third_party/libuv/include/uv.h /^UV_EXTERN char** uv_setup_args(int argc, char** argv);$/;" p typeref:typename:UV_EXTERN char ** +uv_shutdown third_party/libuv/include/uv.h /^UV_EXTERN int uv_shutdown(uv_shutdown_t* req,$/;" p typeref:typename:UV_PRIVATE_REQ_TYPES UV_EXTERN int +uv_shutdown_cb third_party/libuv/include/uv.h /^typedef void (*uv_shutdown_cb)(uv_shutdown_t* req, int status);$/;" t typeref:typename:void (*)(uv_shutdown_t * req,int status) +uv_shutdown_s third_party/libuv/include/uv.h /^struct uv_shutdown_s {$/;" s +uv_shutdown_t third_party/libuv/include/uv.h /^typedef struct uv_shutdown_s uv_shutdown_t;$/;" t typeref:struct:uv_shutdown_s +uv_signal_cb third_party/libuv/include/uv.h /^typedef void (*uv_signal_cb)(uv_signal_t* handle, int signum);$/;" t typeref:typename:void (*)(uv_signal_t * handle,int signum) +uv_signal_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_signal_init(uv_loop_t* loop, uv_signal_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_signal_s third_party/libuv/include/uv.h /^struct uv_signal_s {$/;" s +uv_signal_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_signal_start(uv_signal_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_signal_start_oneshot third_party/libuv/include/uv.h /^UV_EXTERN int uv_signal_start_oneshot(uv_signal_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_signal_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_signal_stop(uv_signal_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_signal_t third_party/libuv/include/uv.h /^typedef struct uv_signal_s uv_signal_t;$/;" t typeref:struct:uv_signal_s +uv_sleep third_party/libuv/include/uv.h /^UV_EXTERN void uv_sleep(unsigned int msec);$/;" p typeref:typename:UV_EXTERN void +uv_socketpair third_party/libuv/include/uv.h /^UV_EXTERN int uv_socketpair(int type,$/;" p typeref:typename:UV_EXTERN int +uv_spawn third_party/libuv/include/uv.h /^UV_EXTERN int uv_spawn(uv_loop_t* loop,$/;" p typeref:typename:UV_EXTERN int +uv_stat_t third_party/libuv/include/uv.h /^} uv_stat_t;$/;" t typeref:struct:__anon4de24c230b08 +uv_statfs_s third_party/libuv/include/uv.h /^struct uv_statfs_s {$/;" s +uv_statfs_t third_party/libuv/include/uv.h /^typedef struct uv_statfs_s uv_statfs_t;$/;" t typeref:struct:uv_statfs_s +uv_stdio_container_s third_party/libuv/include/uv.h /^typedef struct uv_stdio_container_s {$/;" s +uv_stdio_container_t third_party/libuv/include/uv.h /^} uv_stdio_container_t;$/;" t typeref:struct:uv_stdio_container_s +uv_stdio_flags third_party/libuv/include/uv.h /^} uv_stdio_flags;$/;" t typeref:enum:__anon4de24c231003 +uv_stop third_party/libuv/include/uv.h /^UV_EXTERN void uv_stop(uv_loop_t*);$/;" p typeref:typename:UV_EXTERN void +uv_stream_connection_fields third_party/libuv/include/uv/win.h /^#define uv_stream_connection_fields /;" d +uv_stream_get_write_queue_size third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_stream_get_write_queue_size(const uv_stream_t* stream);$/;" p typeref:typename:UV_EXTERN size_t +uv_stream_s third_party/libuv/include/uv.h /^struct uv_stream_s {$/;" s +uv_stream_server_fields third_party/libuv/include/uv/win.h /^#define uv_stream_server_fields /;" d +uv_stream_set_blocking third_party/libuv/include/uv.h /^UV_EXTERN int uv_stream_set_blocking(uv_stream_t* handle, int blocking);$/;" p typeref:typename:UV_EXTERN int +uv_stream_t third_party/libuv/include/uv.h /^typedef struct uv_stream_s uv_stream_t;$/;" t typeref:struct:uv_stream_s +uv_strerror third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_strerror(int err);$/;" p typeref:typename:UV_EXTERN const char * +uv_strerror_r third_party/libuv/include/uv.h /^UV_EXTERN char* uv_strerror_r(int err, char* buf, size_t buflen);$/;" p typeref:typename:UV_EXTERN char * +uv_tcp_bind third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_bind(uv_tcp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_tcp_close_reset third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_close_reset(uv_tcp_t* handle, uv_close_cb close_cb);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_connect third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_connect(uv_connect_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_tcp_connection_fields third_party/libuv/include/uv/win.h /^#define uv_tcp_connection_fields /;" d +uv_tcp_flags third_party/libuv/include/uv.h /^enum uv_tcp_flags {$/;" g +uv_tcp_getpeername third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_getpeername(const uv_tcp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_tcp_getsockname third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_getsockname(const uv_tcp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_tcp_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_init(uv_loop_t*, uv_tcp_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_init_ex third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_init_ex(uv_loop_t*, uv_tcp_t* handle, unsigned int flags);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_keepalive third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_keepalive(uv_tcp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_tcp_nodelay third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_nodelay(uv_tcp_t* handle, int enable);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_open third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_s third_party/libuv/include/uv.h /^struct uv_tcp_s {$/;" s +uv_tcp_server_fields third_party/libuv/include/uv/win.h /^#define uv_tcp_server_fields /;" d +uv_tcp_simultaneous_accepts third_party/libuv/include/uv.h /^UV_EXTERN int uv_tcp_simultaneous_accepts(uv_tcp_t* handle, int enable);$/;" p typeref:typename:UV_EXTERN int +uv_tcp_t third_party/libuv/include/uv.h /^typedef struct uv_tcp_s uv_tcp_t;$/;" t typeref:struct:uv_tcp_s +uv_thread_cb third_party/libuv/include/uv.h /^typedef void (*uv_thread_cb)(void* arg);$/;" t typeref:typename:void (*)(void * arg) +uv_thread_create third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg);$/;" p typeref:typename:UV_EXTERN int +uv_thread_create_ex third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_create_ex(uv_thread_t* tid,$/;" p typeref:typename:UV_EXTERN int +uv_thread_create_flags third_party/libuv/include/uv.h /^} uv_thread_create_flags;$/;" t typeref:enum:__anon4de24c231803 +uv_thread_detach third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_detach(uv_thread_t* tid);$/;" p typeref:typename:UV_EXTERN int +uv_thread_equal third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2);$/;" p typeref:typename:UV_EXTERN int +uv_thread_getaffinity third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_getaffinity(uv_thread_t* tid,$/;" p typeref:typename:UV_EXTERN int +uv_thread_getcpu third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_getcpu(void);$/;" p typeref:typename:UV_EXTERN int +uv_thread_getname third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_getname(uv_thread_t* tid, char* name, size_t size);$/;" p typeref:typename:UV_EXTERN int +uv_thread_getpriority third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_getpriority(uv_thread_t tid, int* priority);$/;" p typeref:typename:UV_EXTERN int +uv_thread_join third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_join(uv_thread_t *tid);$/;" p typeref:typename:UV_EXTERN int +uv_thread_options_s third_party/libuv/include/uv.h /^struct uv_thread_options_s {$/;" s +uv_thread_options_t third_party/libuv/include/uv.h /^typedef struct uv_thread_options_s uv_thread_options_t;$/;" t typeref:struct:uv_thread_options_s +uv_thread_self third_party/libuv/include/uv.h /^UV_EXTERN uv_thread_t uv_thread_self(void);$/;" p typeref:typename:UV_EXTERN uv_thread_t +uv_thread_setaffinity third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_setaffinity(uv_thread_t* tid,$/;" p typeref:typename:UV_EXTERN int +uv_thread_setname third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_setname(const char* name);$/;" p typeref:typename:UV_EXTERN int +uv_thread_setpriority third_party/libuv/include/uv.h /^UV_EXTERN int uv_thread_setpriority(uv_thread_t tid, int priority);$/;" p typeref:typename:UV_EXTERN int +uv_thread_t third_party/libuv/include/uv/unix.h /^typedef pthread_t uv_thread_t;$/;" t typeref:typename:pthread_t +uv_thread_t third_party/libuv/include/uv/win.h /^typedef HANDLE uv_thread_t;$/;" t typeref:typename:HANDLE +uv_timer_again third_party/libuv/include/uv.h /^UV_EXTERN int uv_timer_again(uv_timer_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_timer_cb third_party/libuv/include/uv.h /^typedef void (*uv_timer_cb)(uv_timer_t* handle);$/;" t typeref:typename:void (*)(uv_timer_t * handle) +uv_timer_get_due_in third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_timer_get_due_in(const uv_timer_t* handle);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_timer_get_repeat third_party/libuv/include/uv.h /^UV_EXTERN uint64_t uv_timer_get_repeat(const uv_timer_t* handle);$/;" p typeref:typename:UV_EXTERN uint64_t +uv_timer_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_timer_init(uv_loop_t*, uv_timer_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_timer_s third_party/libuv/include/uv.h /^struct uv_timer_s {$/;" s +uv_timer_set_repeat third_party/libuv/include/uv.h /^UV_EXTERN void uv_timer_set_repeat(uv_timer_t* handle, uint64_t repeat);$/;" p typeref:typename:UV_EXTERN void +uv_timer_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_timer_start(uv_timer_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_timer_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_timer_stop(uv_timer_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_timer_t third_party/libuv/include/uv.h /^typedef struct uv_timer_s uv_timer_t;$/;" t typeref:struct:uv_timer_s +uv_timespec64_t third_party/libuv/include/uv.h /^} uv_timespec64_t;$/;" t typeref:struct:__anon4de24c230808 +uv_timespec_t third_party/libuv/include/uv.h /^} uv_timespec_t;$/;" t typeref:struct:__anon4de24c230708 +uv_timeval64_t third_party/libuv/include/uv.h /^} uv_timeval64_t;$/;" t typeref:struct:__anon4de24c230a08 +uv_timeval_t third_party/libuv/include/uv.h /^} uv_timeval_t;$/;" t typeref:struct:__anon4de24c230908 +uv_translate_sys_error third_party/libuv/include/uv.h /^UV_EXTERN int uv_translate_sys_error(int sys_errno);$/;" p typeref:typename:UV_EXTERN int +uv_translate_write_sys_error third_party/libuv/src/win/internal.h /^int uv_translate_write_sys_error(int sys_errno);$/;" p typeref:typename:int +uv_try_write third_party/libuv/include/uv.h /^UV_EXTERN int uv_try_write(uv_stream_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_try_write2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_try_write2(uv_stream_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_tty_get_vterm_state third_party/libuv/include/uv.h /^UV_EXTERN int uv_tty_get_vterm_state(uv_tty_vtermstate_t* state);$/;" p typeref:typename:UV_EXTERN int +uv_tty_get_winsize third_party/libuv/include/uv.h /^UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height);$/;" p typeref:typename:UV_EXTERN int +uv_tty_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);$/;" p typeref:typename:UV_EXTERN int +uv_tty_mode_t third_party/libuv/include/uv.h /^} uv_tty_mode_t;$/;" t typeref:enum:__anon4de24c230d03 +uv_tty_reset_mode third_party/libuv/include/uv.h /^UV_EXTERN int uv_tty_reset_mode(void);$/;" p typeref:typename:UV_EXTERN int +uv_tty_s third_party/libuv/include/uv.h /^struct uv_tty_s {$/;" s +uv_tty_set_mode third_party/libuv/include/uv.h /^UV_EXTERN int uv_tty_set_mode(uv_tty_t*, uv_tty_mode_t mode);$/;" p typeref:typename:UV_EXTERN int +uv_tty_set_mode third_party/libuv/include/uv.h /^inline int uv_tty_set_mode(uv_tty_t* handle, int mode) {$/;" f typeref:typename:int +uv_tty_set_vterm_state third_party/libuv/include/uv.h /^UV_EXTERN void uv_tty_set_vterm_state(uv_tty_vtermstate_t state);$/;" p typeref:typename:UV_EXTERN void +uv_tty_t third_party/libuv/include/uv.h /^typedef struct uv_tty_s uv_tty_t;$/;" t typeref:struct:uv_tty_s +uv_tty_vtermstate_t third_party/libuv/include/uv.h /^} uv_tty_vtermstate_t;$/;" t typeref:enum:__anon4de24c230e03 +uv_udp_bind third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_bind(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_connect third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_connect(uv_udp_t* handle, const struct sockaddr* addr);$/;" p typeref:typename:UV_EXTERN int +uv_udp_flags third_party/libuv/include/uv.h /^enum uv_udp_flags {$/;" g +uv_udp_get_send_queue_count third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_udp_get_send_queue_count(const uv_udp_t* handle);$/;" p typeref:typename:UV_EXTERN size_t +uv_udp_get_send_queue_size third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_udp_get_send_queue_size(const uv_udp_t* handle);$/;" p typeref:typename:UV_EXTERN size_t +uv_udp_getpeername third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_getpeername(const uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_getsockname third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_getsockname(const uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_init third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_init(uv_loop_t*, uv_udp_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_udp_init_ex third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_init_ex(uv_loop_t*, uv_udp_t* handle, unsigned int flags);$/;" p typeref:typename:UV_EXTERN int +uv_udp_open third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock);$/;" p typeref:typename:UV_EXTERN int +uv_udp_recv_cb third_party/libuv/include/uv.h /^typedef void (*uv_udp_recv_cb)(uv_udp_t* handle,$/;" t typeref:typename:void (*)(uv_udp_t * handle,ssize_t nread,const uv_buf_t * buf,const struct sockaddr * addr,unsigned flags) +uv_udp_recv_start third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_recv_start(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_recv_stop third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_recv_stop(uv_udp_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_udp_s third_party/libuv/include/uv.h /^struct uv_udp_s {$/;" s +uv_udp_send third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_send(uv_udp_send_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_udp_send_cb third_party/libuv/include/uv.h /^typedef void (*uv_udp_send_cb)(uv_udp_send_t* req, int status);$/;" t typeref:typename:void (*)(uv_udp_send_t * req,int status) +uv_udp_send_s third_party/libuv/include/uv.h /^struct uv_udp_send_s {$/;" s +uv_udp_send_t third_party/libuv/include/uv.h /^typedef struct uv_udp_send_s uv_udp_send_t;$/;" t typeref:struct:uv_udp_send_s +uv_udp_set_broadcast third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_broadcast(uv_udp_t* handle, int on);$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_membership third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_membership(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_multicast_interface third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_multicast_interface(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_multicast_loop third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_multicast_loop(uv_udp_t* handle, int on);$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_multicast_ttl third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_multicast_ttl(uv_udp_t* handle, int ttl);$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_source_membership third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_source_membership(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_set_ttl third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_set_ttl(uv_udp_t* handle, int ttl);$/;" p typeref:typename:UV_EXTERN int +uv_udp_t third_party/libuv/include/uv.h /^typedef struct uv_udp_s uv_udp_t;$/;" t typeref:struct:uv_udp_s +uv_udp_try_send third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_try_send(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_try_send2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_try_send2(uv_udp_t* handle,$/;" p typeref:typename:UV_EXTERN int +uv_udp_using_recvmmsg third_party/libuv/include/uv.h /^UV_EXTERN int uv_udp_using_recvmmsg(const uv_udp_t* handle);$/;" p typeref:typename:UV_EXTERN int +uv_uid_t third_party/libuv/include/uv/unix.h /^typedef uid_t uv_uid_t;$/;" t typeref:typename:uid_t +uv_uid_t third_party/libuv/include/uv/win.h /^typedef unsigned char uv_uid_t;$/;" t typeref:typename:unsigned char +uv_unref third_party/libuv/include/uv.h /^UV_EXTERN void uv_unref(uv_handle_t*);$/;" p typeref:typename:UV_EXTERN void +uv_update_time third_party/libuv/include/uv.h /^UV_EXTERN void uv_update_time(uv_loop_t*);$/;" p typeref:typename:UV_EXTERN void +uv_uptime third_party/libuv/include/uv.h /^UV_EXTERN int uv_uptime(double* uptime);$/;" p typeref:typename:UV_EXTERN int +uv_utf16_length_as_wtf8 third_party/libuv/include/uv.h /^UV_EXTERN size_t uv_utf16_length_as_wtf8(const uint16_t* utf16,$/;" p typeref:typename:UV_EXTERN size_t +uv_utf16_to_wtf8 third_party/libuv/include/uv.h /^UV_EXTERN int uv_utf16_to_wtf8(const uint16_t* utf16,$/;" p typeref:typename:UV_EXTERN int +uv_utsname_s third_party/libuv/include/uv.h /^struct uv_utsname_s {$/;" s +uv_utsname_t third_party/libuv/include/uv.h /^typedef struct uv_utsname_s uv_utsname_t;$/;" t typeref:struct:uv_utsname_s +uv_version third_party/libuv/include/uv.h /^UV_EXTERN unsigned int uv_version(void);$/;" p typeref:typename:UV_EXTERN unsigned int +uv_version_string third_party/libuv/include/uv.h /^UV_EXTERN const char* uv_version_string(void);$/;" p typeref:typename:UV_EXTERN const char * +uv_walk third_party/libuv/include/uv.h /^UV_EXTERN void uv_walk(uv_loop_t* loop, uv_walk_cb walk_cb, void* arg);$/;" p typeref:typename:UV_EXTERN void +uv_walk_cb third_party/libuv/include/uv.h /^typedef void (*uv_walk_cb)(uv_handle_t* handle, void* arg);$/;" t typeref:typename:void (*)(uv_handle_t * handle,void * arg) +uv_work_cb third_party/libuv/include/uv.h /^typedef void (*uv_work_cb)(uv_work_t* req);$/;" t typeref:typename:void (*)(uv_work_t * req) +uv_work_s third_party/libuv/include/uv.h /^struct uv_work_s {$/;" s +uv_work_t third_party/libuv/include/uv.h /^typedef struct uv_work_s uv_work_t;$/;" t typeref:struct:uv_work_s +uv_write third_party/libuv/include/uv.h /^UV_EXTERN int uv_write(uv_write_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_write2 third_party/libuv/include/uv.h /^UV_EXTERN int uv_write2(uv_write_t* req,$/;" p typeref:typename:UV_EXTERN int +uv_write_cb third_party/libuv/include/uv.h /^typedef void (*uv_write_cb)(uv_write_t* req, int status);$/;" t typeref:typename:void (*)(uv_write_t * req,int status) +uv_write_s third_party/libuv/include/uv.h /^struct uv_write_s {$/;" s +uv_write_t third_party/libuv/include/uv.h /^typedef struct uv_write_s uv_write_t;$/;" t typeref:struct:uv_write_s +uv_wtf8_length_as_utf16 third_party/libuv/include/uv.h /^UV_EXTERN ssize_t uv_wtf8_length_as_utf16(const char* wtf8);$/;" p typeref:typename:UV_EXTERN ssize_t +uv_wtf8_to_utf16 third_party/libuv/include/uv.h /^UV_EXTERN void uv_wtf8_to_utf16(const char* wtf8,$/;" p typeref:typename:UV_EXTERN void v third_party/raylib/include/raymath.h /^ float v[16];$/;" m struct:float16 typeref:typename:float[16] v third_party/raylib/include/raymath.h /^ float v[3];$/;" m struct:float3 typeref:typename:float[3] v third_party/raylib/include/rlgl.h /^ float v[16];$/;" m struct:rl_float16 typeref:typename:float[16] @@ -10297,6 +13976,7 @@ vScreenSize third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float vScreenSize; \/\/ Vertical size in meters$/;" m struct:VrDeviceInfo typeref:typename:float vScreenSize third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float vScreenSize; \/\/ Vertical size in meters$/;" m struct:VrDeviceInfo typeref:typename:float vScreenSize third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float vScreenSize; \/\/ Vertical size in meters$/;" m struct:VrDeviceInfo typeref:typename:float +value third_party/libuv/include/uv.h /^ char* value;$/;" m struct:uv_env_item_s typeref:typename:char * value third_party/raylib/include/raygui.h /^ int value; \/\/ Character value (Unicode)$/;" m struct:GlyphInfo typeref:typename:int value third_party/raylib/include/raylib.h /^ float value; \/\/ Material map value$/;" m struct:MaterialMap typeref:typename:float value third_party/raylib/include/raylib.h /^ int value; \/\/ Character value (Unicode)$/;" m struct:GlyphInfo typeref:typename:int @@ -10326,6 +14006,9 @@ vboId third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ unsigned int vboId[5]; \/\/ OpenGL Vertex Buffer Objects id (5 types of vertex data)$/;" m struct:rlVertexBuffer typeref:typename:unsigned int[5] vboId third_party/raylib/raylib-5.5_win64/include/raylib.h /^ unsigned int *vboId; \/\/ OpenGL Vertex Buffer Objects id (default vertex data)$/;" m struct:Mesh typeref:typename:unsigned int * vboId third_party/raylib/raylib-5.5_win64/include/rlgl.h /^ unsigned int vboId[5]; \/\/ OpenGL Vertex Buffer Objects id (5 types of vertex data)$/;" m struct:rlVertexBuffer typeref:typename:unsigned int[5] +version third_party/libuv/include/uv.h /^ char version[256];$/;" m struct:uv_utsname_s typeref:typename:char[256] +version third_party/libuv/src/unix/darwin-stub.h /^ CFIndex version;$/;" m struct:CFRunLoopSourceContext typeref:typename:CFIndex +version third_party/libuv/src/unix/darwin-stub.h /^ CFIndex version;$/;" m struct:FSEventStreamContext typeref:typename:CFIndex vertexAlignment third_party/raylib/include/rlgl.h /^ int vertexAlignment; \/\/ Number of vertex required for index alignment (LINES, TRIAN/;" m struct:rlDrawCall typeref:typename:int vertexAlignment third_party/raylib/raylib-5.5_linux_amd64/include/rlgl.h /^ int vertexAlignment; \/\/ Number of vertex required for index alignment (LINES, TRIAN/;" m struct:rlDrawCall typeref:typename:int vertexAlignment third_party/raylib/raylib-5.5_macos/include/rlgl.h /^ int vertexAlignment; \/\/ Number of vertex required for index alignment (LINES, TRIAN/;" m struct:rlDrawCall typeref:typename:int @@ -10370,6 +14053,9 @@ w third_party/raylib/raylib-5.5_macos/include/raymath.h /^ float w;$/;" m struct:Vector4 typeref:typename:float w third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float w; \/\/ Vector w component$/;" m struct:Vector4 typeref:typename:float w third_party/raylib/raylib-5.5_win64/include/raymath.h /^ float w;$/;" m struct:Vector4 typeref:typename:float +waiters_count third_party/libuv/include/uv/win.h /^ unsigned int waiters_count;$/;" m struct:__anond441abe0010a::__anond441abe00208 typeref:typename:unsigned int +waiters_count_lock third_party/libuv/include/uv/win.h /^ CRITICAL_SECTION waiters_count_lock;$/;" m struct:__anond441abe0010a::__anond441abe00208 typeref:typename:CRITICAL_SECTION +watcher_queue third_party/libuv/include/uv/unix.h /^ struct uv__queue watcher_queue;$/;" m struct:uv__io_s typeref:struct:uv__queue width third_party/raylib/include/raygui.h /^ float width;$/;" m struct:Rectangle typeref:typename:float width third_party/raylib/include/raygui.h /^ int width; \/\/ Image base width$/;" m struct:Image typeref:typename:int width third_party/raylib/include/raygui.h /^ int width; \/\/ Texture base width$/;" m struct:Texture typeref:typename:int @@ -10385,11 +14071,27 @@ width third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float width; \/\/ Rectangle width$/;" m struct:Rectangle typeref:typename:float width third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int width; \/\/ Image base width$/;" m struct:Image typeref:typename:int width third_party/raylib/raylib-5.5_win64/include/raylib.h /^ int width; \/\/ Texture base width$/;" m struct:Texture typeref:typename:int +winapi.h third_party/libuv/src/win/internal.h /^#include "winapi.h"/;" h +winapi.h third_party/libuv/src/win/winsock.h /^#include "winapi.h"/;" h windowActive postdog/gui_window_file_dialog.h /^ bool windowActive;$/;" m struct:__anoncb6fd9740108 typeref:typename:bool windowBounds postdog/gui_window_file_dialog.h /^ Rectangle windowBounds;$/;" m struct:__anoncb6fd9740108 typeref:typename:Rectangle +windows.h third_party/libuv/include/uv/win.h /^#include <windows.h>/;" h +windows.h third_party/libuv/src/win/winapi.h /^#include <windows.h>/;" h +windows.h third_party/libuv/src/win/winsock.h /^#include <windows.h>/;" h +windows.h third_party/libuv/test/runner-win.h /^#include <windows.h>/;" h +winsock.h third_party/libuv/src/win/internal.h /^#include "winsock.h"/;" h +winsock2.h third_party/libuv/include/uv/win.h /^#include <winsock2.h>/;" h +winsock2.h third_party/libuv/src/win/winsock.h /^#include <winsock2.h>/;" h +winsock2.h third_party/libuv/test/runner-win.h /^#include <winsock2.h>/;" h +work third_party/libuv/include/uv/threadpool.h /^ void (*work)(struct uv__work *w);$/;" m struct:uv__work typeref:typename:void (*)(struct uv__work * w) +work_cb third_party/libuv/include/uv.h /^ uv_work_cb work_cb;$/;" m struct:uv_work_s typeref:typename:uv_work_cb +work_req third_party/libuv/include/uv.h /^ struct uv__work work_req;$/;" m struct:uv_random_s typeref:struct:uv__work +wq third_party/libuv/include/uv/threadpool.h /^ struct uv__queue wq;$/;" m struct:uv__work typeref:struct:uv__queue write_buffer seobeo/seobeo_internal.h /^ uint8 *write_buffer;$/;" m struct:__anon7a4da8400208 typeref:typename:uint8 * write_buffer_capacity seobeo/seobeo_internal.h /^ uint32 write_buffer_capacity;$/;" m struct:__anon7a4da8400208 typeref:typename:uint32 write_buffer_len seobeo/seobeo_internal.h /^ uint32 write_buffer_len; \/\/ current size$/;" m struct:__anon7a4da8400208 typeref:typename:uint32 +ws2tcpip.h third_party/libuv/include/uv/win.h /^#include <ws2tcpip.h>/;" h +ws2tcpip.h third_party/libuv/src/win/winsock.h /^#include <ws2tcpip.h>/;" h x third_party/raylib/include/raygui.h /^ float x;$/;" m struct:Rectangle typeref:typename:float x third_party/raylib/include/raygui.h /^ float x;$/;" m struct:Vector2 typeref:typename:float x third_party/raylib/include/raygui.h /^ float x;$/;" m struct:Vector3 typeref:typename:float @@ -10473,3 +14175,4 @@ zoom third_party/raylib/raylib-5.5_linux_amd64/include/raylib.h /^ float zoom; \/\/ Camera zoom (scaling), should be 1.0f by default$/;" m struct:Camera2D typeref:typename:float zoom third_party/raylib/raylib-5.5_macos/include/raylib.h /^ float zoom; \/\/ Camera zoom (scaling), should be 1.0f by default$/;" m struct:Camera2D typeref:typename:float zoom third_party/raylib/raylib-5.5_win64/include/raylib.h /^ float zoom; \/\/ Camera zoom (scaling), should be 1.0f by default$/;" m struct:Camera2D typeref:typename:float +zos-base.h third_party/libuv/src/unix/os390-syscalls.h /^#include "zos-base.h"/;" h
--- a/third_party/raylib/BUILD Wed Jan 14 19:39:52 2026 -0800 +++ b/third_party/raylib/BUILD Thu Jan 15 08:29:26 2026 -0800 @@ -1,3 +1,5 @@ +load("@rules_cc//cc:cc_library.bzl", "cc_library") + alias( name = "raylib", actual = select({ @@ -13,3 +15,13 @@ srcs = glob(["include/**"]), visibility = ["//visibility:public"], ) + +cc_library( + name = "raylib_custom_ui", + srcs = ["custom.c"], + hdrs = ["custom.h"], + deps = [":raylib", "//dowa:dowa"], + visibility = ["//visibility:public"], +) + +
--- a/third_party/raylib/custom.c Wed Jan 14 19:39:52 2026 -0800 +++ b/third_party/raylib/custom.c Thu Jan 15 08:29:26 2026 -0800 @@ -1,17 +1,9 @@ #include "third_party/raylib/include/raylib.h" #define RAYGUI_IMPLEMENTATION #include "third_party/raylib/include/raygui.h" +#include "third_party/raylib/custom.h" // -- forward declarations --// - -// --- Default Behaviour that should be part of all raylib gui ---/ -void DefaultBehaviours(); -// --- Increase Font Sizes on key press --- // -void IncreaseFontSize(); -// --- Decrease Font Sizes on key press --- // -void DecreaseFontSize(); - - void DefaultBehaviours() { // Font sizes @@ -31,7 +23,6 @@ GuiSetStyle(DEFAULT, TEXT_SIZE, GuiGetStyle(DEFAULT, TEXT_SIZE) - 1); } - // --- Layout helper --- // Rectangle RightOf(Rectangle ref, float padding) { @@ -83,4 +74,1052 @@ }; } +void DrawRectangleSelectiveRounded(Rectangle rec, float radius, int segments, Color color, + boolean roundTL, boolean roundTR, boolean roundBR, boolean roundBL) { + DrawRectangle(rec.x + radius, rec.y + radius, rec.width - 2*radius, rec.height - 2*radius, color); + // Top edge (excluding rounded corners) + DrawRectangle(rec.x + (roundTL ? radius : 0), rec.y, rec.width - (roundTL ? radius : 0) - (roundTR ? radius : 0), radius, color); + // Bottom edge + DrawRectangle(rec.x + (roundBL ? radius : 0), rec.y + rec.height - radius, rec.width - (roundBL ? radius : 0) - (roundBR ? radius : 0), radius, color); + // Left edge + DrawRectangle(rec.x, rec.y + (roundTL ? radius : 0), radius, rec.height - (roundTL ? radius : 0) - (roundBL ? radius : 0), color); + // Right edge + DrawRectangle(rec.x + rec.width - radius, rec.y + (roundTR ? radius : 0), radius, rec.height - (roundTR ? radius : 0) - (roundBR ? radius : 0), color); + if (roundTL) + DrawCircleSector((Vector2){rec.x + radius, rec.y + radius}, radius, 180, 270, segments, color); + + if (roundTR) + DrawCircleSector((Vector2){rec.x + rec.width - radius, rec.y + radius}, radius, 270, 360, segments, color); + + if (roundBR) + DrawCircleSector((Vector2){rec.x + rec.width - radius, rec.y + rec.height - radius}, radius, 0, 90, segments, color); + + if (roundBL) + DrawCircleSector((Vector2){rec.x + radius, rec.y + rec.height - radius}, radius, 90, 180, segments, color); +} + +Rectangle AddPadding(Rectangle rect, float padding) +{ + return (Rectangle){ + rect.x + padding, + rect.y + padding, + rect.width - (2 * padding), + rect.height - (2 * padding) + }; +} + +Rectangle AddPaddingAll(Rectangle rect, float top, float right,float down, float left) +{ + return (Rectangle){ + rect.x + left, + rect.y + top, + rect.width - (right + left), + rect.height - (top + down), + }; +} + + + +Rectangle AddPaddingHorizontal(Rectangle rect, float padding) +{ + return (Rectangle){ + rect.x + padding, + rect.y, + rect.width - (2 * padding), + rect.height + }; +} + +Rectangle AddPaddingVertical(Rectangle rect, float padding) +{ + return (Rectangle){ + rect.x, + rect.y + padding, + rect.width, + rect.height - (2 * padding) + }; +} + +// // --- Components ---/ +// #define TEXT_SIZE_DEFAULT 10 +// #define TEXT_AREA_LINE_HEIGHT 20 +// #define TEXT_AREA_PADDING 8 +// #define TEXT_AREA_CURSOR_WIDTH 2 +// #define TEXT_AREA_MAX_UNDO_STATES 64 +// #define TEXT_AREA_MAX_INSTANCES 8 +// +// typedef struct { +// char *text; +// int cursor_pos; +// int selection_start; +// int selection_end; +// } TextAreaUndoEntry; +// +// typedef struct { +// int id; // Unique ID for this text area +// int cursor_pos; // Current cursor position in text +// int selection_start; // Selection start (-1 if no selection) +// int selection_end; // Selection end (-1 if no selection) +// float scroll_offset_y; // Vertical scroll offset +// float scroll_offset_x; // Horizontal scroll offset (for non-wrap mode) +// boolean is_selecting; // Currently dragging to select +// boolean is_initialized; // State has been initialized +// +// // Undo history +// TextAreaUndoEntry *undo_stack; // Dowa array of undo entries +// int undo_index; // Current position in undo stack +// +// // Internal tracking +// double last_blink_time; +// boolean cursor_visible; +// } TextAreaState; +// +// static TextAreaState g_text_area_states[TEXT_AREA_MAX_INSTANCES] = {0}; +// static int g_text_area_state_count = 0; +// static char *g_clipboard_text = NULL; +// static Dowa_Arena *g_text_area_arena = NULL; +// +// // Helper functions +// static int TA_Min_Int(int a, int b) { return a < b ? a : b; } +// static int TA_Max_Int(int a, int b) { return a > b ? a : b; } +// static float TA_Min_Float(float a, float b) { return a < b ? a : b; } +// static float TA_Max_Float(float a, float b) { return a > b ? a : b; } +// +// static TextAreaState* GetTextAreaState(int id) { +// for (int i = 0; i < g_text_area_state_count; i++) { +// if (g_text_area_states[i].id == id && g_text_area_states[i].is_initialized) { +// return &g_text_area_states[i]; +// } +// } +// return NULL; +// } +// +// static TextAreaState* CreateTextAreaState(int id) { +// if (g_text_area_state_count >= TEXT_AREA_MAX_INSTANCES) +// return &g_text_area_states[0]; // Reuse first slot +// +// TextAreaState *state = &g_text_area_states[g_text_area_state_count++]; +// memset(state, 0, sizeof(TextAreaState)); +// state->id = id; +// state->selection_start = -1; +// state->selection_end = -1; +// state->undo_index = -1; +// state->cursor_visible = TRUE; +// state->is_initialized = TRUE; +// return state; +// } +// +// static void GetLineAndColumn(const char *text, int pos, int *out_line, int *out_column) { +// int line = 0; +// int column = 0; +// for (int i = 0; i < pos && text[i] != '\0'; i++) +// { +// if (text[i] == '\n') +// { +// line++; +// column = 0; +// } +// else +// column++; +// } +// *out_line = line; +// *out_column = column; +// } +// +// static int GetPosFromLineColumn(const char *text, int line, int column) { +// int current_line = 0; +// int current_col = 0; +// int i = 0; +// +// while (text[i] != '\0') +// { +// if (current_line == line && current_col == column) +// return i; +// +// if (text[i] == '\n') +// { +// if (current_line == line) +// return i; +// current_line++; +// current_col = 0; +// } +// else +// current_col++; +// i++; +// } +// return i; +// } +// +// static int GetLineStart(const char *text, int pos) { +// int i = pos; +// while (i > 0 && text[i - 1] != '\n') +// i--; +// return i; +// } +// +// static int GetLineEnd(const char *text, int pos) { +// int i = pos; +// int len = strlen(text); +// while (i < len && text[i] != '\n') +// i++; +// return i; +// } +// +// static int CountLines(const char *text) { +// int count = 1; +// for (int i = 0; text[i] != '\0'; i++) +// if (text[i] == '\n') count++; +// return count; +// } +// +// static int MeasureTextRange(const char *text, int start, int end, int font_size) { +// if (start >= end) return 0; +// +// char temp[1024]; +// int len = TA_Min_Int(end - start, 1023); +// strncpy(temp, text + start, len); +// temp[len] = '\0'; +// +// return MeasureTextEx(GuiGetFont(), temp, font_size, TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE)).x; +// } +// +// static int GetCharIndexFromPos(const char *text, Rectangle bounds, Vector2 pos, +// boolean wrap, float scroll_y, int font_size, int line_height) { +// if (!text || strlen(text) == 0) return 0; +// +// float content_x = bounds.x + TEXT_AREA_PADDING; +// float content_y = bounds.y + TEXT_AREA_PADDING - scroll_y; +// float content_width = bounds.width - TEXT_AREA_PADDING * 2; +// +// int text_len = strlen(text); +// +// float click_line_y = (pos.y - content_y) / line_height; +// int target_visual_line = (int)click_line_y; +// if (target_visual_line < 0) target_visual_line = 0; +// +// int current_visual_line = 0; +// int i = 0; +// int line_char_start = 0; +// +// while (i <= text_len) { +// boolean is_newline = (i < text_len && text[i] == '\n'); +// +// if (wrap && i > line_char_start) { +// int line_width = MeasureTextRange(text, line_char_start, i, font_size); +// if (line_width > content_width && i > line_char_start + 1) { +// int wrap_pos = i - 1; +// for (int j = i - 1; j > line_char_start; j--) { +// if (text[j] == ' ') { +// wrap_pos = j; +// break; +// } +// } +// +// if (current_visual_line == target_visual_line) { +// float click_x = pos.x - content_x; +// int best_pos = line_char_start; +// float best_dist = 99999; +// +// for (int k = line_char_start; k <= wrap_pos; k++) { +// int char_x = MeasureTextRange(text, line_char_start, k, font_size); +// float dist = (float)(click_x - char_x); +// if (dist < 0) dist = -dist; +// if (dist < best_dist) { +// best_dist = dist; +// best_pos = k; +// } +// } +// return best_pos; +// } +// +// current_visual_line++; +// line_char_start = (text[wrap_pos] == ' ') ? wrap_pos + 1 : wrap_pos; +// i = line_char_start; +// continue; +// } +// } +// +// if (is_newline || i == text_len) { +// if (current_visual_line == target_visual_line || i == text_len) { +// float click_x = pos.x - content_x; +// int line_end = i; +// int best_pos = line_char_start; +// float best_dist = 99999; +// +// for (int k = line_char_start; k <= line_end; k++) { +// int char_x = MeasureTextRange(text, line_char_start, k, font_size); +// float dist = (float)(click_x - char_x); +// if (dist < 0) dist = -dist; +// if (dist < best_dist) { +// best_dist = dist; +// best_pos = k; +// } +// } +// return TA_Min_Int(best_pos, text_len); +// } +// +// current_visual_line++; +// line_char_start = i + 1; +// } +// +// i++; +// } +// +// return text_len; +// } +// +// static Vector2 GetCursorScreenPos(const char *text, int cursor_pos, Rectangle bounds, +// boolean wrap, float scroll_y, int font_size, int line_height) { +// float content_x = bounds.x + TEXT_AREA_PADDING; +// float content_y = bounds.y + TEXT_AREA_PADDING - scroll_y; +// float content_width = bounds.width - TEXT_AREA_PADDING * 2; +// +// if (!text || cursor_pos == 0) { +// return (Vector2){content_x, content_y}; +// } +// +// int text_len = strlen(text); +// cursor_pos = TA_Min_Int(cursor_pos, text_len); +// +// int visual_line = 0; +// int line_char_start = 0; +// +// for (int i = 0; i <= cursor_pos; i++) { +// if (i == cursor_pos) { +// float x = content_x + MeasureTextRange(text, line_char_start, cursor_pos, font_size); +// float y = content_y + visual_line * line_height; +// return (Vector2){x, y}; +// } +// +// if (text[i] == '\n') { +// visual_line++; +// line_char_start = i + 1; +// } else if (wrap) { +// int line_width = MeasureTextRange(text, line_char_start, i + 1, font_size); +// if (line_width > content_width && i > line_char_start) { +// int wrap_pos = i; +// for (int j = i; j > line_char_start; j--) { +// if (text[j] == ' ') { +// wrap_pos = j; +// break; +// } +// } +// +// if (cursor_pos <= wrap_pos) { +// float x = content_x + MeasureTextRange(text, line_char_start, cursor_pos, font_size); +// float y = content_y + visual_line * line_height; +// return (Vector2){x, y}; +// } +// +// visual_line++; +// line_char_start = (text[wrap_pos] == ' ') ? wrap_pos + 1 : wrap_pos; +// } +// } +// } +// +// float x = content_x + MeasureTextRange(text, line_char_start, cursor_pos, font_size); +// float y = content_y + visual_line * line_height; +// return (Vector2){x, y}; +// } +// +// static float GetContentHeight(const char *text, Rectangle bounds, boolean wrap, +// int font_size, int line_height) { +// if (!text || strlen(text) == 0) return line_height; +// +// float content_width = bounds.width - TEXT_AREA_PADDING * 2; +// int visual_lines = 1; +// int line_char_start = 0; +// int text_len = strlen(text); +// +// for (int i = 0; i <= text_len; i++) { +// if (i == text_len || text[i] == '\n') { +// visual_lines++; +// line_char_start = i + 1; +// } else if (wrap) { +// int line_width = MeasureTextRange(text, line_char_start, i + 1, font_size); +// if (line_width > content_width && i > line_char_start) { +// int wrap_pos = i; +// for (int j = i; j > line_char_start; j--) { +// if (text[j] == ' ') { +// wrap_pos = j; +// break; +// } +// } +// visual_lines++; +// line_char_start = (text[wrap_pos] == ' ') ? wrap_pos + 1 : wrap_pos; +// } +// } +// } +// +// return visual_lines * line_height; +// } +// +// static void PushUndoState(TextAreaState *state, const char *text, Dowa_Arena *arena) { +// TextAreaUndoEntry entry; +// entry.text = Dowa_String_Copy_Arena((char*)text, arena); +// entry.cursor_pos = state->cursor_pos; +// entry.selection_start = state->selection_start; +// entry.selection_end = state->selection_end; +// +// if (state->undo_index < (int)Dowa_Array_Length(state->undo_stack) - 1) { +// dowa__header(state->undo_stack)->length = state->undo_index + 1; +// } +// +// Dowa_Array_Push_Arena(state->undo_stack, entry, arena); +// state->undo_index = Dowa_Array_Length(state->undo_stack) - 1; +// +// if (Dowa_Array_Length(state->undo_stack) > TEXT_AREA_MAX_UNDO_STATES) { +// for (int i = 0; i < (int)Dowa_Array_Length(state->undo_stack) - 1; i++) { +// state->undo_stack[i] = state->undo_stack[i + 1]; +// } +// dowa__header(state->undo_stack)->length--; +// state->undo_index--; +// } +// } +// +// static boolean PerformUndo(TextAreaState *state, char *text, int text_size) { +// if (state->undo_index <= 0) return FALSE; +// +// state->undo_index--; +// TextAreaUndoEntry *entry = &state->undo_stack[state->undo_index]; +// +// strncpy(text, entry->text, text_size - 1); +// text[text_size - 1] = '\0'; +// state->cursor_pos = entry->cursor_pos; +// state->selection_start = entry->selection_start; +// state->selection_end = entry->selection_end; +// +// return TRUE; +// } +// +// static boolean PerformRedo(TextAreaState *state, char *text, int text_size) { +// if (state->undo_index >= (int)Dowa_Array_Length(state->undo_stack) - 1) return FALSE; +// +// state->undo_index++; +// TextAreaUndoEntry *entry = &state->undo_stack[state->undo_index]; +// +// strncpy(text, entry->text, text_size - 1); +// text[text_size - 1] = '\0'; +// state->cursor_pos = entry->cursor_pos; +// state->selection_start = entry->selection_start; +// state->selection_end = entry->selection_end; +// +// return TRUE; +// } +// +// static void InsertTextAtCursor(char *text, int text_size, int cursor_pos, +// const char *insert_text, int *new_cursor_pos) { +// int text_len = strlen(text); +// int insert_len = strlen(insert_text); +// +// if (text_len + insert_len >= text_size - 1) { +// insert_len = text_size - 1 - text_len; +// if (insert_len <= 0) return; +// } +// +// memmove(text + cursor_pos + insert_len, +// text + cursor_pos, +// text_len - cursor_pos + 1); +// +// memcpy(text + cursor_pos, insert_text, insert_len); +// +// *new_cursor_pos = cursor_pos + insert_len; +// } +// +// static void DeleteTextRange(char *text, int start, int end) { +// if (start >= end) return; +// int text_len = strlen(text); +// if (start < 0) start = 0; +// if (end > text_len) end = text_len; +// +// memmove(text + start, text + end, text_len - end + 1); +// } +// +// static char* GetSelectedText(const char *text, int sel_start, int sel_end, Dowa_Arena *arena) { +// if (sel_start < 0 || sel_end < 0 || sel_start >= sel_end) return NULL; +// +// int len = sel_end - sel_start; +// char *result = Dowa_Arena_Allocate(arena, len + 1); +// strncpy(result, text + sel_start, len); +// result[len] = '\0'; +// return result; +// } +// +// boolean GuiTextArea(int id, Rectangle bounds, char *text, int text_size, boolean is_edit_mode, +// boolean should_text_wrap, Dowa_Arena *arena) { +// boolean should_toggle_edit_mode = FALSE; +// +// // Get or create state for this text area +// TextAreaState *state = GetTextAreaState(id); +// if (!state) +// { +// state = CreateTextAreaState(id); +// state->cursor_pos = strlen(text); +// state->last_blink_time = GetTime(); +// PushUndoState(state, text, arena); +// } +// +// int text_len = strlen(text); +// Vector2 mouse_pos = GetMousePosition(); +// boolean mouse_in_bounds = CheckCollisionPointRec(mouse_pos, bounds); +// +// // Handle click to enter/exit edit mode +// if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT)) { +// if (mouse_in_bounds && !is_edit_mode) { +// should_toggle_edit_mode = TRUE; +// } else if (!mouse_in_bounds && is_edit_mode) { +// should_toggle_edit_mode = TRUE; +// } +// } +// +// // Content area +// float content_height = GetContentHeight(text, bounds, should_text_wrap, +// GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); +// float visible_height = bounds.height - TEXT_AREA_PADDING * 2; +// float max_scroll = TA_Max_Float(0, content_height - visible_height); +// +// // Handle scrolling +// float wheel = GetMouseWheelMove(); +// if (mouse_in_bounds && wheel != 0) { +// state->scroll_offset_y -= wheel * TEXT_AREA_LINE_HEIGHT * 3; +// state->scroll_offset_y = TA_Max_Float(0, TA_Min_Float(state->scroll_offset_y, max_scroll)); +// } +// +// if (is_edit_mode) { +// boolean ctrl_pressed = IsKeyDown(KEY_LEFT_CONTROL) || IsKeyDown(KEY_RIGHT_CONTROL) || +// IsKeyDown(KEY_LEFT_SUPER) || IsKeyDown(KEY_RIGHT_SUPER); +// boolean shift_pressed = IsKeyDown(KEY_LEFT_SHIFT) || IsKeyDown(KEY_RIGHT_SHIFT); +// boolean text_changed = FALSE; +// +// double current_time = GetTime(); +// if (current_time - state->last_blink_time > 0.5) { +// state->cursor_visible = !state->cursor_visible; +// state->last_blink_time = current_time; +// } +// +// // Mouse Selection +// if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT) && mouse_in_bounds) { +// int click_pos = GetCharIndexFromPos(text, bounds, mouse_pos, should_text_wrap, +// state->scroll_offset_y, GuiGetStyle(DEFAULT, TEXT_SIZE), +// TEXT_AREA_LINE_HEIGHT); +// state->cursor_pos = click_pos; +// state->selection_start = -1; +// state->selection_end = -1; +// state->is_selecting = TRUE; +// state->cursor_visible = TRUE; +// state->last_blink_time = current_time; +// } +// +// if (state->is_selecting && IsMouseButtonDown(MOUSE_BUTTON_LEFT)) { +// int drag_pos = GetCharIndexFromPos(text, bounds, mouse_pos, should_text_wrap, +// state->scroll_offset_y, GuiGetStyle(DEFAULT, TEXT_SIZE), +// TEXT_AREA_LINE_HEIGHT); +// if (drag_pos != state->cursor_pos) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// } +// state->selection_end = drag_pos; +// } +// } +// +// if (IsMouseButtonReleased(MOUSE_BUTTON_LEFT)) { +// state->is_selecting = FALSE; +// if (state->selection_start >= 0 && state->selection_end >= 0) { +// if (state->selection_start > state->selection_end) { +// int temp = state->selection_start; +// state->selection_start = state->selection_end; +// state->selection_end = temp; +// } +// if (state->selection_start == state->selection_end) { +// state->selection_start = -1; +// state->selection_end = -1; +// } +// } +// } +// +// // Ctrl+A: Select All +// if (ctrl_pressed && IsKeyPressed(KEY_A)) { +// state->selection_start = 0; +// state->selection_end = text_len; +// state->cursor_pos = text_len; +// } +// +// // Ctrl+C: Copy +// if (ctrl_pressed && IsKeyPressed(KEY_C)) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// char *selected = GetSelectedText(text, sel_min, sel_max, arena); +// if (selected) { +// if (g_clipboard_text) free(g_clipboard_text); +// g_clipboard_text = strdup(selected); +// SetClipboardText(g_clipboard_text); +// } +// } +// } +// +// // Ctrl+X: Cut +// if (ctrl_pressed && IsKeyPressed(KEY_X)) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// char *selected = GetSelectedText(text, sel_min, sel_max, arena); +// if (selected) { +// if (g_clipboard_text) free(g_clipboard_text); +// g_clipboard_text = strdup(selected); +// SetClipboardText(g_clipboard_text); +// } +// +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// text_changed = TRUE; +// } +// } +// +// // Ctrl+V: Paste +// if (ctrl_pressed && IsKeyPressed(KEY_V)) { +// const char *clipboard = GetClipboardText(); +// if (clipboard && strlen(clipboard) > 0) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// } else { +// PushUndoState(state, text, arena); +// } +// +// int new_cursor; +// InsertTextAtCursor(text, text_size, state->cursor_pos, clipboard, &new_cursor); +// state->cursor_pos = new_cursor; +// text_changed = TRUE; +// } +// } +// +// // Ctrl+Z: Undo / Ctrl+Shift+Z: Redo +// if (ctrl_pressed && IsKeyPressed(KEY_Z)) { +// if (shift_pressed) { +// PerformRedo(state, text, text_size); +// } else { +// PerformUndo(state, text, text_size); +// } +// } +// +// // Arrow Keys Navigation +// if (IsKeyPressed(KEY_LEFT) || IsKeyPressedRepeat(KEY_LEFT)) { +// if (state->selection_start >= 0 && !shift_pressed) { +// state->cursor_pos = TA_Min_Int(state->selection_start, state->selection_end); +// state->selection_start = -1; +// state->selection_end = -1; +// } else if (state->cursor_pos > 0) { +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->cursor_pos--; +// state->selection_end = state->cursor_pos; +// } else { +// state->cursor_pos--; +// } +// } +// state->cursor_visible = TRUE; +// state->last_blink_time = current_time; +// } +// +// if (IsKeyPressed(KEY_RIGHT) || IsKeyPressedRepeat(KEY_RIGHT)) { +// if (state->selection_start >= 0 && !shift_pressed) { +// state->cursor_pos = TA_Max_Int(state->selection_start, state->selection_end); +// state->selection_start = -1; +// state->selection_end = -1; +// } else if (state->cursor_pos < text_len) { +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->cursor_pos++; +// state->selection_end = state->cursor_pos; +// } else { +// state->cursor_pos++; +// } +// } +// state->cursor_visible = TRUE; +// state->last_blink_time = current_time; +// } +// +// if (IsKeyPressed(KEY_UP) || IsKeyPressedRepeat(KEY_UP)) { +// int line, col; +// GetLineAndColumn(text, state->cursor_pos, &line, &col); +// if (line > 0) { +// int new_pos = GetPosFromLineColumn(text, line - 1, col); +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->selection_end = new_pos; +// } else { +// state->selection_start = -1; +// state->selection_end = -1; +// } +// state->cursor_pos = new_pos; +// } +// state->cursor_visible = TRUE; +// state->last_blink_time = current_time; +// } +// +// if (IsKeyPressed(KEY_DOWN) || IsKeyPressedRepeat(KEY_DOWN)) +// { +// int line, col; +// GetLineAndColumn(text, state->cursor_pos, &line, &col); +// int total_lines = CountLines(text); +// if (line < total_lines - 1) { +// int new_pos = GetPosFromLineColumn(text, line + 1, col); +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->selection_end = new_pos; +// } else { +// state->selection_start = -1; +// state->selection_end = -1; +// } +// state->cursor_pos = new_pos; +// } +// state->cursor_visible = TRUE; +// state->last_blink_time = current_time; +// } +// +// // Home/End keys +// if (IsKeyPressed(KEY_HOME)) { +// int line_start = GetLineStart(text, state->cursor_pos); +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->selection_end = line_start; +// } else { +// state->selection_start = -1; +// state->selection_end = -1; +// } +// state->cursor_pos = line_start; +// } +// +// if (IsKeyPressed(KEY_END)) { +// int line_end = GetLineEnd(text, state->cursor_pos); +// if (shift_pressed) { +// if (state->selection_start < 0) { +// state->selection_start = state->cursor_pos; +// state->selection_end = state->cursor_pos; +// } +// state->selection_end = line_end; +// } else { +// state->selection_start = -1; +// state->selection_end = -1; +// } +// state->cursor_pos = line_end; +// } +// +// // Text Input +// if (!ctrl_pressed) { +// int key = GetCharPressed(); +// while (key > 0) { +// if (key >= 32 && key <= 126) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// text_changed = TRUE; +// } else if (!text_changed) { +// PushUndoState(state, text, arena); +// } +// +// char insert_str[2] = {(char)key, '\0'}; +// int new_cursor; +// InsertTextAtCursor(text, text_size, state->cursor_pos, insert_str, &new_cursor); +// state->cursor_pos = new_cursor; +// text_changed = TRUE; +// } +// key = GetCharPressed(); +// } +// } +// +// // Enter key +// if (IsKeyPressed(KEY_ENTER) || IsKeyPressed(KEY_KP_ENTER)) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// } else { +// PushUndoState(state, text, arena); +// } +// +// int new_cursor; +// InsertTextAtCursor(text, text_size, state->cursor_pos, "\n", &new_cursor); +// state->cursor_pos = new_cursor; +// text_changed = TRUE; +// } +// +// // Backspace +// if (IsKeyPressed(KEY_BACKSPACE) || IsKeyPressedRepeat(KEY_BACKSPACE)) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// text_changed = TRUE; +// } else if (state->cursor_pos > 0) { +// PushUndoState(state, text, arena); +// DeleteTextRange(text, state->cursor_pos - 1, state->cursor_pos); +// state->cursor_pos--; +// text_changed = TRUE; +// } +// } +// +// // Delete key +// if (IsKeyPressed(KEY_DELETE) || IsKeyPressedRepeat(KEY_DELETE)) { +// text_len = strlen(text); +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// text_changed = TRUE; +// } else if (state->cursor_pos < text_len) { +// PushUndoState(state, text, arena); +// DeleteTextRange(text, state->cursor_pos, state->cursor_pos + 1); +// text_changed = TRUE; +// } +// } +// +// // Tab key +// if (IsKeyPressed(KEY_TAB)) { +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// PushUndoState(state, text, arena); +// DeleteTextRange(text, sel_min, sel_max); +// state->cursor_pos = sel_min; +// state->selection_start = -1; +// state->selection_end = -1; +// } else { +// PushUndoState(state, text, arena); +// } +// +// int new_cursor; +// InsertTextAtCursor(text, text_size, state->cursor_pos, " ", &new_cursor); +// state->cursor_pos = new_cursor; +// text_changed = TRUE; +// } +// +// // Auto-scroll to keep cursor visible +// Vector2 cursor_screen = GetCursorScreenPos(text, state->cursor_pos, bounds, +// should_text_wrap, state->scroll_offset_y, +// GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); +// +// float visible_top = bounds.y + TEXT_AREA_PADDING; +// float visible_bottom = bounds.y + bounds.height - TEXT_AREA_PADDING - TEXT_AREA_LINE_HEIGHT; +// +// if (cursor_screen.y < visible_top) { +// state->scroll_offset_y -= visible_top - cursor_screen.y; +// } else if (cursor_screen.y > visible_bottom) { +// state->scroll_offset_y += cursor_screen.y - visible_bottom; +// } +// +// state->scroll_offset_y = TA_Max_Float(0, TA_Min_Float(state->scroll_offset_y, max_scroll)); +// } +// +// // Drawing +// DrawRectangleRec(bounds, is_edit_mode ? DARKGRAY : (Color){40, 40, 40, 255}); +// DrawRectangleLinesEx(bounds, 1, is_edit_mode ? WHITE : GRAY); +// +// BeginScissorMode((int)bounds.x, (int)bounds.y, (int)bounds.width, (int)bounds.height); +// +// float content_x = bounds.x + TEXT_AREA_PADDING; +// float content_y = bounds.y + TEXT_AREA_PADDING - state->scroll_offset_y; +// float content_width = bounds.width - TEXT_AREA_PADDING * 2; +// +// text_len = strlen(text); +// +// // Draw selection highlight +// if (state->selection_start >= 0 && state->selection_end >= 0 && +// state->selection_start != state->selection_end) { +// int sel_min = TA_Min_Int(state->selection_start, state->selection_end); +// int sel_max = TA_Max_Int(state->selection_start, state->selection_end); +// +// int line_char_start = 0; +// int visual_line = 0; +// +// for (int i = 0; i <= text_len; i++) { +// boolean is_end = (i == text_len); +// boolean is_newline = (!is_end && text[i] == '\n'); +// boolean should_draw_line = is_end || is_newline; +// +// if (should_text_wrap && !is_end && !is_newline) { +// int line_width = MeasureTextRange(text, line_char_start, i + 1, GuiGetStyle(DEFAULT, TEXT_SIZE)); +// if (line_width > content_width && i > line_char_start) { +// should_draw_line = TRUE; +// } +// } +// +// if (should_draw_line) { +// int line_end = i; +// +// if (sel_min < line_end && sel_max > line_char_start) { +// int highlight_start = TA_Max_Int(sel_min, line_char_start); +// int highlight_end = TA_Min_Int(sel_max, line_end); +// +// float x1 = content_x + MeasureTextRange(text, line_char_start, highlight_start, GuiGetStyle(DEFAULT, TEXT_SIZE)); +// float x2 = content_x + MeasureTextRange(text, line_char_start, highlight_end, GuiGetStyle(DEFAULT, TEXT_SIZE)); +// float y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT; +// +// DrawRectangle((int)x1, (int)y, (int)(x2 - x1), TEXT_AREA_LINE_HEIGHT, +// Fade(SKYBLUE, 0.5f)); +// } +// +// visual_line++; +// line_char_start = i + 1; +// } +// } +// } +// +// // Draw text with wrapping support +// if (should_text_wrap) { +// int line_char_start = 0; +// int visual_line = 0; +// +// for (int i = 0; i <= text_len; i++) { +// boolean is_end = (i == text_len); +// boolean is_newline = (!is_end && text[i] == '\n'); +// boolean should_draw_line = is_end || is_newline; +// +// if (!is_end && !is_newline) { +// int line_width = MeasureTextRange(text, line_char_start, i + 1, GuiGetStyle(DEFAULT, TEXT_SIZE)); +// if (line_width > content_width && i > line_char_start) { +// should_draw_line = TRUE; +// } +// } +// +// if (should_draw_line && i > line_char_start) { +// char line_buffer[1024]; +// int line_len = TA_Min_Int(i - line_char_start, 1023); +// strncpy(line_buffer, text + line_char_start, line_len); +// line_buffer[line_len] = '\0'; +// +// Vector2 draw_text_vector = { +// .x = content_x, +// .y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT +// }; +// DrawTextEx(GuiGetFont(), line_buffer, draw_text_vector, +// GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE), WHITE); +// +// visual_line++; +// line_char_start = is_newline ? i + 1 : i; +// } else if (is_newline) { +// visual_line++; +// line_char_start = i + 1; +// } +// } +// } else { +// int line_start = 0; +// int visual_line = 0; +// +// for (int i = 0; i <= text_len; i++) { +// if (i == text_len || text[i] == '\n') { +// if (i > line_start) { +// char line_buffer[1024]; +// int line_len = TA_Min_Int(i - line_start, 1023); +// strncpy(line_buffer, text + line_start, line_len); +// line_buffer[line_len] = '\0'; +// +// Vector2 draw_text_vector = { +// .x = content_x, +// .y = content_y + visual_line * TEXT_AREA_LINE_HEIGHT +// }; +// DrawTextEx(GuiGetFont(), line_buffer, draw_text_vector , +// GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_SIZE_DEFAULT/GuiGetStyle(DEFAULT, TEXT_SIZE), WHITE); +// } +// visual_line++; +// line_start = i + 1; +// } +// } +// } +// +// // Draw cursor +// if (is_edit_mode && state->cursor_visible) { +// Vector2 cursor_pos = GetCursorScreenPos(text, state->cursor_pos, bounds, +// should_text_wrap, state->scroll_offset_y, +// GuiGetStyle(DEFAULT, TEXT_SIZE), TEXT_AREA_LINE_HEIGHT); +// +// DrawRectangle((int)cursor_pos.x, (int)cursor_pos.y, +// TEXT_AREA_CURSOR_WIDTH, TEXT_AREA_LINE_HEIGHT, WHITE); +// } +// +// EndScissorMode(); +// +// // Draw scrollbar if needed +// if (max_scroll > 0) { +// float scrollbar_height = (visible_height / content_height) * visible_height; +// float scrollbar_y = bounds.y + TEXT_AREA_PADDING + +// (state->scroll_offset_y / max_scroll) * (visible_height - scrollbar_height); +// +// DrawRectangle((int)(bounds.x + bounds.width - 8), (int)scrollbar_y, +// 6, (int)scrollbar_height, Fade(WHITE, 0.3f)); +// } +// +// return should_toggle_edit_mode; +// } +// +// void GuiTextAreaResetState(int id) { +// TextAreaState *state = GetTextAreaState(id); +// if (state) { +// if (state->undo_stack) { +// Dowa_Array_Free(state->undo_stack); +// state->undo_stack = NULL; +// } +// state->is_initialized = FALSE; +// } +// } +// +// void GuiTextAreaResetAllStates(void) { +// for (int i = 0; i < g_text_area_state_count; i++) { +// if (g_text_area_states[i].undo_stack) { +// Dowa_Array_Free(g_text_area_states[i].undo_stack); +// g_text_area_states[i].undo_stack = NULL; +// } +// g_text_area_states[i].is_initialized = FALSE; +// } +// g_text_area_state_count = 0; +// }
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/third_party/raylib/custom.h Thu Jan 15 08:29:26 2026 -0800 @@ -0,0 +1,24 @@ +#ifndef CUSTOM_UI +#define CUSTOM_UI + +#include "dowa/dowa.h" + +// --- Functionality Helper --- // +void DefaultBehaviours(); +void IncreaseFontSize(); +void DecreaseFontSize(); + +// --- Layout helper --- // +Rectangle RightOf(Rectangle ref, float padding); +Rectangle Below(Rectangle ref, float padding); +Rectangle LeftColumn(Rectangle container, float ratio, float padding); +Rectangle RightColumn(Rectangle container, Rectangle leftCol, float padding); +Rectangle HorizontalSplit(Rectangle container, float ratio); +Rectangle AddPadding(Rectangle rect, float padding); +Rectangle AddPaddingAll(Rectangle rect, float top, float right,float down, float left); +Rectangle AddPaddingHorizontal(Rectangle rect, float padding); +Rectangle AddPaddingVertical(Rectangle rect, float padding); + +void DrawRectangleSelectiveRounded(Rectangle rec, float radius, int segments, Color color, boolean roundTL, boolean roundTR, boolean roundBR, boolean roundBL); + +#endif // CUSTOM_UI
--- a/third_party/raylib/include/raygui.h Wed Jan 14 19:39:52 2026 -0800 +++ b/third_party/raylib/include/raygui.h Thu Jan 15 08:29:26 2026 -0800 @@ -743,6 +743,7 @@ // Basic controls set RAYGUIAPI int GuiLabel(Rectangle bounds, const char *text); // Label control RAYGUIAPI int GuiButton(Rectangle bounds, const char *text); // Button control, returns true when clicked +RAYGUIAPI int GuiButtonRounded(Rectangle bounds, const char *text, float roundness, int segments); RAYGUIAPI int GuiLabelButton(Rectangle bounds, const char *text); // Label button control, returns true when clicked RAYGUIAPI int GuiToggle(Rectangle bounds, const char *text, bool *active); // Toggle Button control RAYGUIAPI int GuiToggleGroup(Rectangle bounds, const char *text, int *active); // Toggle Group control @@ -751,6 +752,7 @@ RAYGUIAPI int GuiComboBox(Rectangle bounds, const char *text, int *active); // Combo Box control RAYGUIAPI int GuiDropdownBox(Rectangle bounds, const char *text, int *active, bool editMode); // Dropdown Box control +RAYGUIAPI int GuiDropdownBoxRounded(Rectangle bounds, const char *text, int *active, bool editMode, float roundness, int segments); RAYGUIAPI int GuiSpinner(Rectangle bounds, const char *text, int *value, int minValue, int maxValue, bool editMode); // Spinner control RAYGUIAPI int GuiValueBox(Rectangle bounds, const char *text, int *value, int minValue, int maxValue, bool editMode); // Value Box control, updates input text with numbers RAYGUIAPI int GuiValueBoxFloat(Rectangle bounds, const char *text, char *textValue, float *value, bool editMode); // Value box control for float values @@ -2039,6 +2041,40 @@ return result; // Button pressed: result = 1 } +// JUNE +int GuiButtonRounded(Rectangle bounds, const char *text, float roundness, int segments) +{ + int result = 0; + GuiState state = guiState; + + // Update control + //-------------------------------------------------------------------- + if ((state != STATE_DISABLED) && !guiLocked && !guiControlExclusiveMode) + { + Vector2 mousePoint = GetMousePosition(); + + // Check button state + if (CheckCollisionPointRec(mousePoint, bounds)) + { + if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) state = STATE_PRESSED; + else state = STATE_FOCUSED; + + if (IsMouseButtonReleased(MOUSE_LEFT_BUTTON)) result = 1; + } + } + //-------------------------------------------------------------------- + + // Draw control + //-------------------------------------------------------------------- + DrawRectangleRounded(bounds, roundness, segments, GetColor(GuiGetStyle(BUTTON, BASE + (state*3)))); + GuiDrawText(text, GetTextBounds(BUTTON, bounds), GuiGetStyle(BUTTON, TEXT_ALIGNMENT), GetColor(GuiGetStyle(BUTTON, TEXT + (state*3)))); + + if (state == STATE_FOCUSED) GuiTooltip(bounds); + //------------------------------------------------------------------ + + return result; // Button pressed: result = 1 +} + // Label button control int GuiLabelButton(Rectangle bounds, const char *text) { @@ -2551,6 +2587,178 @@ return result; // Mouse click: result = 1 } +// JUNE +int GuiDropdownBoxRounded(Rectangle bounds, const char *text, int *active, bool editMode, float roundness, int segments) +{ + int result = 0; + GuiState state = guiState; + + int temp = 0; + if (active == NULL) active = &temp; + + int itemSelected = *active; + int itemFocused = -1; + + int direction = 0; // Dropdown box open direction: down (default) + if (GuiGetStyle(DROPDOWNBOX, DROPDOWN_ROLL_UP) == 1) direction = 1; // Up + + // Get substrings items from text (items pointers, lengths and count) + int itemCount = 0; + const char **items = GuiTextSplit(text, ';', &itemCount, NULL); + + Rectangle boundsOpen = bounds; + boundsOpen.height = (itemCount + 1)*(bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)); + if (direction == 1) boundsOpen.y -= itemCount*(bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)) + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING); + + Rectangle itemBounds = bounds; + + // Update control + //-------------------------------------------------------------------- + if ((state != STATE_DISABLED) && (editMode || !guiLocked) && (itemCount > 1) && !guiControlExclusiveMode) + { + Vector2 mousePoint = GetMousePosition(); + + if (editMode) + { + state = STATE_PRESSED; + + // Check if mouse has been pressed or released outside limits + if (!CheckCollisionPointRec(mousePoint, boundsOpen)) + { + if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsMouseButtonReleased(MOUSE_LEFT_BUTTON)) result = 1; + } + + // Check if already selected item has been pressed again + if (CheckCollisionPointRec(mousePoint, bounds) && IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) result = 1; + + // Check focused and selected item + for (int i = 0; i < itemCount; i++) + { + // Update item rectangle y position for next item + if (direction == 0) itemBounds.y += (bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)); + else itemBounds.y -= (bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)); + + if (CheckCollisionPointRec(mousePoint, itemBounds)) + { + itemFocused = i; + if (IsMouseButtonReleased(MOUSE_LEFT_BUTTON)) + { + itemSelected = i; + result = 1; // Item selected + } + break; + } + } + + itemBounds = bounds; + } + else + { + if (CheckCollisionPointRec(mousePoint, bounds)) + { + if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) + { + result = 1; + state = STATE_PRESSED; + } + else state = STATE_FOCUSED; + } + } + } + //-------------------------------------------------------------------- + + // Draw control + //-------------------------------------------------------------------- + if (editMode) GuiPanel(boundsOpen, NULL); + + // Main (closed) control: draw rounded background + rounded border + { + int borderWidth = GuiGetStyle(DROPDOWNBOX, BORDER_WIDTH); + Color borderColor = GetColor(GuiGetStyle(DROPDOWNBOX, BORDER + state*3)); + Color baseColor = GetColor(GuiGetStyle(DROPDOWNBOX, BASE + state*3)); + + // Filled rounded rect + DrawRectangleRounded(bounds, roundness, segments, baseColor); + } + + GuiDrawText(items[itemSelected], GetTextBounds(DROPDOWNBOX, bounds), GuiGetStyle(DROPDOWNBOX, TEXT_ALIGNMENT), GetColor(GuiGetStyle(DROPDOWNBOX, TEXT + state*3))); + + if (editMode) + { + // Draw visible items + for (int i = 0; i < itemCount; i++) + { + // Update item rectangle y position for next item + if (direction == 0) itemBounds.y += (bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)); + else itemBounds.y -= (bounds.height + GuiGetStyle(DROPDOWNBOX, DROPDOWN_ITEMS_SPACING)); + + bool isLastVisible = (i == itemCount - 1); + + if (i == itemSelected) + { + Color borderColor = GetColor(GuiGetStyle(DROPDOWNBOX, BORDER_COLOR_PRESSED)); + Color baseColor = GetColor(GuiGetStyle(DROPDOWNBOX, BASE_COLOR_PRESSED)); + int borderWidth = GuiGetStyle(DROPDOWNBOX, BORDER_WIDTH); + + if (isLastVisible) + { + DrawRectangleRounded(itemBounds, roundness, segments, baseColor); + } + else + { + DrawRectangle(itemBounds.x, itemBounds.y, itemBounds.width, itemBounds.height, baseColor); + if (borderWidth > 0) DrawRectangleLinesEx(itemBounds, borderWidth, borderColor); + } + + GuiDrawText(items[i], GetTextBounds(DROPDOWNBOX, itemBounds), GuiGetStyle(DROPDOWNBOX, TEXT_ALIGNMENT), GetColor(GuiGetStyle(DROPDOWNBOX, TEXT_COLOR_PRESSED))); + } + else if (i == itemFocused) + { + Color borderColor = GetColor(GuiGetStyle(DROPDOWNBOX, BORDER_COLOR_FOCUSED)); + Color baseColor = GetColor(GuiGetStyle(DROPDOWNBOX, BASE_COLOR_FOCUSED)); + int borderWidth = GuiGetStyle(DROPDOWNBOX, BORDER_WIDTH); + + if (isLastVisible) + { + DrawRectangleRounded(itemBounds, roundness, segments, baseColor); + } + else + { + DrawRectangle(itemBounds.x, itemBounds.y, itemBounds.width, itemBounds.height, baseColor); + if (borderWidth > 0) DrawRectangleLinesEx(itemBounds, borderWidth, borderColor); + } + + GuiDrawText(items[i], GetTextBounds(DROPDOWNBOX, itemBounds), GuiGetStyle(DROPDOWNBOX, TEXT_ALIGNMENT), GetColor(GuiGetStyle(DROPDOWNBOX, TEXT_COLOR_FOCUSED))); + } + else + { + // Normal item: draw only text (background left as panel background), + // but if you want a visible background for normal items, uncomment the following: + // DrawRectangle(itemBounds.x, itemBounds.y, itemBounds.width, itemBounds.height, GetColor(GuiGetStyle(DROPDOWNBOX, BASE_COLOR_NORMAL))); + GuiDrawText(items[i], GetTextBounds(DROPDOWNBOX, itemBounds), GuiGetStyle(DROPDOWNBOX, TEXT_ALIGNMENT), GetColor(GuiGetStyle(DROPDOWNBOX, TEXT_COLOR_NORMAL))); + } + } + } + + if (!GuiGetStyle(DROPDOWNBOX, DROPDOWN_ARROW_HIDDEN)) + { + // Draw arrows (using icon if available) +#if defined(RAYGUI_NO_ICONS) + GuiDrawText("v", RAYGUI_CLITERAL(Rectangle){ bounds.x + bounds.width - GuiGetStyle(DROPDOWNBOX, ARROW_PADDING), bounds.y + bounds.height/2 - 2, 10, 10 }, + TEXT_ALIGN_CENTER, GetColor(GuiGetStyle(DROPDOWNBOX, TEXT + (state*3)))); +#else + GuiDrawText(direction? "#121#" : "#120#", RAYGUI_CLITERAL(Rectangle){ bounds.x + bounds.width - GuiGetStyle(DROPDOWNBOX, ARROW_PADDING), bounds.y + bounds.height/2 - 6, 10, 10 }, + TEXT_ALIGN_CENTER, GetColor(GuiGetStyle(DROPDOWNBOX, TEXT + (state*3)))); // ICON_ARROW_DOWN_FILL +#endif + } + //-------------------------------------------------------------------- + + *active = itemSelected; + + // TODO: Use result to return more internal states: mouse-press out-of-bounds, mouse-press over selected-item... + return result; // Mouse click: result = 1 +} + // Text Box control // NOTE: Returns true on ENTER pressed (useful for data validation) int GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)