Windows build ready. Program icon, however, exceeds string length on MSVC.

This commit is contained in:
2026-05-27 00:07:06 -07:00
parent 5f663308d2
commit e72db80fb4
13 changed files with 270 additions and 141 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
/* GIMP RGBA C-Source image dump (program_icon.c) */
// TODO: There is no way to disable a string limit via compiler flag in MSVC.
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[1024 * 1024 * 4 + 1];
} program_icon = {
1024, 1024, 4,