mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
3d8bcf9d02
svn path=/trunk/; revision=2994
19 lines
No EOL
217 B
C
19 lines
No EOL
217 B
C
|
|
#define INCL_DOSPROCESS
|
|
#include "../../include/os2.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();
|
|
} |