mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-05 12:52:31 +02:00
16 lines
331 B
PHP
16 lines
331 B
PHP
{ ---------------------------------------------------------------------
|
|
macros from sys/raw.h
|
|
---------------------------------------------------------------------}
|
|
|
|
function RAW_SETBIND : cardinal;
|
|
|
|
begin
|
|
RAW_SETBIND:=_IO($ac,0);
|
|
end;
|
|
|
|
function RAW_GETBIND : cardinal;
|
|
|
|
begin
|
|
RAW_GETBIND:=_IO($ac,1);
|
|
end;
|