Skip to content

Instantly share code, notes, and snippets.

View SolindekDev's full-sized avatar
🎯
Focusing

Bruno SolindekDev

🎯
Focusing
  • Barn Programming Language
  • Poland Wrocław
  • 01:28 (UTC +02:00)
View GitHub Profile
@SolindekDev
SolindekDev / main.c
Created December 17, 2021 14:23
WinAPI example window
#include <windows.h>
#define TITLE L"Example Window Title"
#define WIDTH 800
#define HEIGHT 600
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR pCmdLine, int nCmdShow) {