Mercurial > emacs
annotate src/ndir.h @ 108377:7827d5a5c826
* net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
not bound.
(tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
(tramp-compat-funcall): New defmacro.
(tramp-compat-line-beginning-position)
(tramp-compat-line-end-position)
(tramp-compat-temporary-file-directory)
(tramp-compat-make-temp-file, tramp-compat-file-attributes)
(tramp-compat-copy-file, tramp-compat-copy-directory)
(tramp-compat-delete-file, tramp-compat-delete-directory)
(tramp-compat-number-sequence, tramp-compat-process-running-p)
* net/tramp.el (top, with-progress-reporter)
(tramp-rfn-eshadow-setup-minibuffer)
(tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
(tramp-handle-dired-compress-file, tramp-handle-shell-command)
(tramp-completion-mode-p, tramp-check-for-regexp)
(tramp-open-connection-setup-interactive-shell)
(tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
(tramp-time-diff, tramp-coding-system-change-eol-conversion)
(tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
* net/tramp-cmds.el (tramp-cleanup-all-connections)
(tramp-reporter-dump-variable, tramp-load-report-modules)
(tramp-append-tramp-buffers)
* net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
* net/tramp-imap.el (top): Autoload `epg-make-context'.
author | Michael Albinus <albinus@detlef> |
---|---|
date | Sun, 09 May 2010 21:57:55 +0200 |
parents | c3512b2085a0 |
children | 68ca98ae70fb |
rev | line source |
---|---|
484 | 1 /* |
2 <dir.h> -- definitions for 4.2BSD-compatible directory access | |
3 | |
4 last edit: 09-Jul-1983 D A Gwyn | |
5 | |
75764
9511dc88835c
Add legal comment on copyright issue.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
6 * The code here is forced by the interface, and is not subject to |
9511dc88835c
Add legal comment on copyright issue.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
7 * copyright, constituting the only possible expression of the |
9511dc88835c
Add legal comment on copyright issue.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
8 * algorithm in this format. |
9511dc88835c
Add legal comment on copyright issue.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
9 */ |
484 | 10 |
11 #define DIRBLKSIZ 512 /* size of directory block */ | |
9792
b8fc349121d1
(MAXNAMLEN) [WINDOWSNT]: Define as 255.
Richard M. Stallman <rms@gnu.org>
parents:
5877
diff
changeset
|
12 #ifdef WINDOWSNT |
b8fc349121d1
(MAXNAMLEN) [WINDOWSNT]: Define as 255.
Richard M. Stallman <rms@gnu.org>
parents:
5877
diff
changeset
|
13 #define MAXNAMLEN 255 |
b8fc349121d1
(MAXNAMLEN) [WINDOWSNT]: Define as 255.
Richard M. Stallman <rms@gnu.org>
parents:
5877
diff
changeset
|
14 #else /* not WINDOWSNT */ |
484 | 15 #define MAXNAMLEN 15 /* maximum filename length */ |
9792
b8fc349121d1
(MAXNAMLEN) [WINDOWSNT]: Define as 255.
Richard M. Stallman <rms@gnu.org>
parents:
5877
diff
changeset
|
16 #endif /* not WINDOWSNT */ |
484 | 17 /* NOTE: MAXNAMLEN must be one less than a multiple of 4 */ |
18 | |
19 struct direct /* data from readdir() */ | |
20 { | |
21 long d_ino; /* inode number of entry */ | |
22 unsigned short d_reclen; /* length of this record */ | |
23 unsigned short d_namlen; /* length of string in d_name */ | |
24 char d_name[MAXNAMLEN+1]; /* name of file */ | |
25 }; | |
26 | |
27 typedef struct | |
28 { | |
29 int dd_fd; /* file descriptor */ | |
30 int dd_loc; /* offset in block */ | |
31 int dd_size; /* amount of valid data */ | |
32 char dd_buf[DIRBLKSIZ]; /* directory block */ | |
33 } DIR; /* stream data from opendir() */ | |
34 | |
35 extern DIR *opendir(); | |
36 extern struct direct *readdir(); | |
37 extern long telldir(); | |
38 extern void seekdir(); | |
39 extern void closedir(); | |
40 | |
41 #define rewinddir( dirp ) seekdir( dirp, 0L ) | |
52401 | 42 |
43 /* arch-tag: aea50570-ffb7-43fd-b423-7743b10fbe6e | |
44 (do not change this comment) */ |