19 |
|
*/ |
20 |
|
|
21 |
|
#include <exec/types.h> |
22 |
+ |
#define __USE_SYSBASE |
23 |
|
#include <proto/dos.h> |
24 |
+ |
#include <inline/dos.h> |
25 |
|
|
26 |
|
#include <sys/types.h> |
27 |
|
#include <sys/stat.h> |
213 |
|
{NULL, 0, 0} // End marker |
214 |
|
}; |
215 |
|
|
216 |
< |
void get_finfo(const char *path, uint32 finfo, uint32 fxinfo) |
216 |
> |
void get_finfo(const char *path, uint32 finfo, uint32 fxinfo, bool is_dir) |
217 |
|
{ |
218 |
|
// Set default finder info |
219 |
|
Mac_memset(finfo, 0, SIZEOF_FInfo); |
234 |
|
} |
235 |
|
|
236 |
|
// No Finder info file, translate file name extension to MacOS type/creator |
237 |
< |
struct stat st; |
236 |
< |
if (stat(path, &st) == 0 && !S_ISDIR(st.st_mode)) { |
237 |
> |
if (!is_dir) { |
238 |
|
int path_len = strlen(path); |
239 |
|
for (int i=0; e2t_translation[i].ext; i++) { |
240 |
|
int ext_len = strlen(e2t_translation[i].ext); |
249 |
|
} |
250 |
|
} |
251 |
|
|
252 |
< |
void set_finfo(const char *path, uint32 finfo, uint32 fxinfo) |
252 |
> |
void set_finfo(const char *path, uint32 finfo, uint32 fxinfo, bool is_dir) |
253 |
|
{ |
254 |
|
// Open Finder info file |
255 |
|
int fd = open_finf(path, O_RDWR); |