File: acl.h

package info (click to toggle)
emacs25 25.1%2B1-4%2Bdeb9u1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 131,428 kB
  • ctags: 97,538
  • sloc: lisp: 1,107,716; ansic: 305,108; objc: 16,577; makefile: 5,931; sh: 2,547; perl: 1,567; yacc: 1,566; cpp: 1,287; xml: 1,110; php: 1,035; pascal: 1,011; python: 831; cs: 770; ada: 725; awk: 640; ruby: 396; erlang: 153; java: 27
file content (25 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Emulation of Posix ACLs for Windows.  */

#ifndef ACL_H
#define ACL_H

#define NOMINMAX 1	/* don't define min and max */
#include <windows.h>

typedef PSECURITY_DESCRIPTOR acl_t;
typedef unsigned acl_type_t;

/* Values of acl_type_t  */
#define ACL_TYPE_ACCESS  0
#define ACL_TYPE_DEFAULT 1

typedef unsigned acl_perm_t;

extern int    acl_valid (acl_t);
extern acl_t  acl_get_file (const char *, acl_type_t);
extern int    acl_set_file (const char *, acl_type_t, acl_t);
extern char * acl_to_text (acl_t, ssize_t *);
extern acl_t  acl_from_text (const char *);
extern int    acl_free (void *);

#endif	/* ACL_H */