Skip to content

Instantly share code, notes, and snippets.

View DeepDarkDweller's full-sized avatar
👁️
watching

DeepDarkDweller

👁️
watching
View GitHub Profile
@DeepDarkDweller
DeepDarkDweller / main.c
Created May 5, 2024 00:09 — forked from mattiasgustavsson/main.c
Minimal code example for creating a window to plot pixels to
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <windows.h>
#pragma comment( lib, "user32.lib" )
#pragma comment( lib, "gdi32.lib" )
#define SCRW 640
#define SCRH 480