18 lines
505 B
C
18 lines
505 B
C
|
/* steamstub.c - A Windows program for Linux
|
||
|
|
||
|
compile it with:
|
||
|
|
||
|
mingw32-gcc -o steamstub.exe steamstub.c
|
||
|
|
||
|
nb: on fedora, the mingw32 C compiler is called i686-pc-mingw32-gcc
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
||
|
{
|
||
|
MessageBox (NULL, "The Steam Stub is now running. Go play your Linux game, and come back and click the 'OK' button on this dialog box once you are done playing it." , "Steam Stub", 0);
|
||
|
return 0;
|
||
|
}
|