blob: 643e11f951244dcf7cde12f733f16caeee937ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
const
RAW_MAJOR = 162;
function RAW_SETBIND : cardinal;
function RAW_GETBIND : cardinal;
type
Praw_config_request = ^raw_config_request;
raw_config_request = record
raw_minor : longint;
block_major : uint64_t;
block_minor : uint64_t;
end;
{ ---------------------------------------------------------------------
Borland compatibility types
---------------------------------------------------------------------}
Type
TRawConfigRequest = raw_config_request;
PRawConfigRequest = ^TRawConfigRequest;
|