FreeBASIC  0.91.0
file_dir64.c
Go to the documentation of this file.
1 #include "fb.h"
2 
3 FBCALL FBSTRING *fb_Dir64( FBSTRING *filespec, int attrib, long long *outattrib )
4 {
5  int ioutattrib;
6  FBSTRING *res;
7 
8  res = fb_Dir( filespec, attrib, &ioutattrib );
9 
10  *outattrib = ioutattrib;
11  return res;
12 }