ref: 27eb7d178801ab3663fdc257f0437baf3e94ee2e
dir: /src/Backends/Window-Software.h/
#pragma once #include <stddef.h> #include "../WindowsWrapper.h" unsigned char* WindowBackend_Software_CreateWindow(const char *window_title, int screen_width, int screen_height, BOOL fullscreen, size_t *pitch); void WindowBackend_Software_DestroyWindow(void); void WindowBackend_Software_Display(void); void WindowBackend_Software_HandleWindowResize(unsigned int width, unsigned int height);