MCPcopy Create free account
hub / github.com/JHRobotics/softgpu / about

Function about

softgpu.c:51–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49*/
50
51void about(HWND hwnd)
52{
53 static char txtbuf[2048];
54
55 sprintf(txtbuf,
56 "SoftGPU by Jaroslav Hensl <emulator@emulace.cz>\n"
57 "Version: %s\n\n"
58 "Components\n"
59 "VMDisp9x: %s\n"
60 "Mesa9x: %s\n"
61 "Mesa9x (alt.): %s\n"
62 "Wine9x: %s\n"
63 "OpenGlide9x: %s\n"
64 "SIMD95: %s\n\n"
65 "more on: https://github.com/JHRobotics/softgpu\n",
66 SOFTGPU_VERSION_STR,
67 iniValueDef("[version]", "vmdisp9x", "-"),
68 iniValueDef("[version]", "mesa9x_main", "-"),
69 iniValueDef("[version]", "mesa9x_alt", "-"),
70 iniValueDef("[version]", "wine9x", "-"),
71 iniValueDef("[version]", "openglide9x", "-"),
72 iniValueDef("[version]", "simd95", "-")
73 );
74
75 MessageBoxA(hwnd, txtbuf, "About SoftGPU", MB_OK);
76}
77
78void sysinfo(HWND hwnd)
79{

Callers 1

softgpuWndProcFunction · 0.85

Calls 1

iniValueDefFunction · 0.85

Tested by

no test coverage detected