September 8th, 2009


8
Sep 09

Source Code Test

Testing the syntax coloring plugin with the loop that pretty much runs most PCs on the planet:

1
2
3
4
5
6
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
    TranslateMessage(&msg);
    DispatchMessage(&msg);
}