This repository has been archived on 2019-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
steamproxy/steamstub.c

18 lines
505 B
C
Raw Normal View History

2011-05-25 17:13:49 +00:00
/* 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;
}