mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
21 lines
252 B
C
21 lines
252 B
C
|
|
||
|
#define INCL_DOSPROCESS
|
||
|
#include "../../include/os2.h"
|
||
|
//#include "../../include/ros2.h"
|
||
|
|
||
|
void Eingang()
|
||
|
{
|
||
|
DosBeep(3000,300);
|
||
|
DosSleep(1000);
|
||
|
DosBeep(4000,200);
|
||
|
DosExit(0,0);
|
||
|
}
|
||
|
|
||
|
void WinMainCRTStartup()
|
||
|
{
|
||
|
int a, b;
|
||
|
a= b+3;
|
||
|
b=a+3;
|
||
|
Eingang();
|
||
|
}
|