4ada5d7febfc9f8864df1e92bb9e38543faff941
[reactos.git] / os2 / apps / bepslep / bepslep.c
1
2 #define INCL_DOSPROCESS
3 #include "../../include/os2.h"
4
5 void Eingang()
6 {
7 DosBeep(3000,300);
8 DosSleep(1000);
9 DosBeep(4000,200);
10 DosExit(0,0);
11 }
12
13 void WinMainCRTStartup()
14 {
15 int a, b;
16 a= b+3;
17 b=a+3;
18 Eingang();
19 }