added debugging info/debug server

This commit is contained in:
memson
2002-04-27 08:25:56 +00:00
parent e67f770704
commit a54309bb71

View File

@@ -242,6 +242,20 @@ function beep: status_t; cdecl; external LIBBEGUI name 'beapi_beep';
function system_beep(event_name:Pchar): status_t; cdecl; external LIBBEGUI name 'beapi_system_beep';
function add_system_beep_event(event_name:Pchar; flags:uint32):status_t; cdecl; external LIBBEGUI name 'beapi_add_system_beep_event';
//posix
type
utsname = record
sysname : array[0..31] of char;
nodename : array[0..31] of char;
release : array[0..31] of char;
version : array[0..31] of char;
machine : array[0..31] of char;
end;
function uname(var name:utsname):longint; cdecl; external LIBROOT;
implementation