fpc/packages/base/libc/dirent.inc
2003-06-26 08:31:12 +00:00

15 lines
349 B
PHP

{ ---------------------------------------------------------------------
Macros from dirent.h
---------------------------------------------------------------------}
function IFTODT(mode : __mode_t) : longint;
begin
IFTODT:=(mode and $F000) shr 12;
end;
function DTTOIF(dirtype : longint) : __mode_t;
begin
DTTOIF:=dirtype shl 12;
end;