mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
a6d6844e8a
Is anybody doing any work on the OS/2 support? svn path=/trunk/; revision=3946
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();
|
|
}
|