pastebin

Paste #fnH -- näytä pelkkänä tekstinä -- uusi tämän pohjalta

Värjäys: Tyyli: ensimmäinen rivinumero: Tabin korvaus:

1
2
3
4
5
6
7
8
9
#include <windows.h>

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow)
{
    MessageBox(NULL, lpCmdLine, "lpCmdLine", MB_OK);
    MessageBox(NULL, GetCommandLine(), "GetCommandLine", MB_OK);
    return 0;
}