Implement ExtendedAttributes() for Linux.

This commit is contained in:
2019-04-28 23:35:43 +01:00
parent 781e5a6b63
commit 840f6738e9
6 changed files with 420 additions and 5 deletions

View File

@@ -35,6 +35,7 @@ Copyright (C) 2011-2018 Natalia Portillo
#include "consts.h"
#include "defs.h"
#include "linux.h"
#include <errno.h>
#include <inttypes.h>
@@ -452,7 +453,9 @@ void FilePermissions(const char *path)
void ExtendedAttributes(const char *path)
{
// TODO: Implement with OS dependent calls
#if defined(__linux__) || defined(__LINUX__) || defined(__gnu_linux)
LinuxExtendedAttributes(path);
#endif
}
void ResourceFork(const char *path)