srawh.inc 549 B

1234567891011121314151617181920212223
  1. const
  2. RAW_MAJOR = 162;
  3. function RAW_SETBIND : cardinal;
  4. function RAW_GETBIND : cardinal;
  5. type
  6. Praw_config_request = ^raw_config_request;
  7. raw_config_request = record
  8. raw_minor : longint;
  9. block_major : uint64_t;
  10. block_minor : uint64_t;
  11. end;
  12. { ---------------------------------------------------------------------
  13. Borland compatibility types
  14. ---------------------------------------------------------------------}
  15. Type
  16. TRawConfigRequest = raw_config_request;
  17. PRawConfigRequest = ^TRawConfigRequest;