projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Delete a boot log from the registry after it was written to the boot log file.
[reactos.git]
/
os2
/
apps
/
bepslep
/
bepslep.c
1
2
#define INCL_DOSPROCESS
3
#include
"../../include/os2.h"
4
//#include "../../include/ros2.h"
5
6
void
Eingang
()
7
{
8
DosBeep
(
3000
,
300
);
9
DosSleep
(
1000
);
10
DosBeep
(
4000
,
200
);
11
DosExit
(
0
,
0
);
12
}
13
14
void
WinMainCRTStartup
()
15
{
16
int
a
,
b
;
17
a
=
b
+
3
;
18
b
=
a
+
3
;
19
Eingang
();
20
}