File: sample_gui.c

package info (click to toggle)
inetsim 1.2.7%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,592 kB
  • sloc: perl: 13,006; sh: 265; ansic: 12; makefile: 10
file content (15 lines) | stat: -rw-r--r-- 389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// sample_gui.c - default GUI binary for INetSim
//
// (c)2007,2008 Matthias Eckert, Thomas Hungenberg
//
// Compile with: cl /nologo sample_gui.c user32.lib

#include <windows.h>



int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    MessageBox (NULL, "This is the INetSim default binary" , "INetSim", 0);
    return 0;
}