Recover work after repo corruption, experimental icons for channels, merge http.c keepalive changes from PR

This commit is contained in:
winsped
2026-07-12 02:10:25 +03:00
parent 4059bf5363
commit f4b28f68bc
13 changed files with 55 additions and 16 deletions
+2
View File
@@ -1,5 +1,6 @@
#include "chatwnd.h"
#include <stdbool.h>
#include <string.h>
#include <windows.h>
#include "snoctrl.h"
#include "../discordtypes.h"
@@ -22,6 +23,7 @@ ChatWnd *GetChatControlDetails(HWND hwnd) {
return &chatwnds[i];
}
}
return NULL;
}
void ChatView_SetUserPfp(char *path, char *user) {
HANDLE f = CreateFileA(path, GENERIC_READ, FILE_SHARE_READ, NULL,
+1
View File
@@ -13,6 +13,7 @@ GuildWnd *GetGuildControlDetails(HWND hwnd) {
return &guildwnds[i];
}
}
return NULL;
}
void GuildView_InsertGuild(HWND hwnd, GUIGuild gld) {
GuildWnd *guildwnd = GetGuildControlDetails(hwnd);