184
edits
(→Flags: +doc) |
|||
| Line 178: | Line 178: | ||
/** Windows-specific pragma: use Posix-style file names, i.e. two file names who differ only in case should not be collapsed*/ | /** Windows-specific pragma: use Posix-style file names, i.e. two file names who differ only in case should not be collapsed*/ | ||
POSIX_SEMANTICS: ..., | POSIX_SEMANTICS: ..., | ||
/** Windows-specific pragma: optimize cache for sequential access*/ | /** Windows-specific pragma: optimize cache for sequential access*/ | ||
SEQUENTIAL_ACCESS: .... | SEQUENTIAL_ACCESS: .... | ||
/** Windows-specific pragma: optimize cache for random access*/ | /** Windows-specific pragma: optimize cache for random access*/ | ||
RANDOM_ACCESS: ..., | RANDOM_ACCESS: ..., | ||
/** Windows-specific pragma: do not buffer writes*/ | /** Windows-specific pragma: do not buffer writes*/ | ||
WRITE_THROUGH: ... | WRITE_THROUGH: ... | ||
} | } | ||
}, | }, | ||
== Flags for seeking in a file == | == Flags for seeking in a file == | ||
edits