aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2017-11-01 10:56:39 +0100
committerHartmut Goebel <h.goebel@crazy-compilers.com>2017-11-05 10:56:36 +0100
commitfa274ab2c0121e0d46c10cc2a56390ec3c463747 (patch)
tree76957d10f8c388d8eb45cb8cd58b0f868bb2b200 /configure.ac
parent6211aadf4b396318bb35617256643e33f1e1997e (diff)
downloadguix-fa274ab2c0121e0d46c10cc2a56390ec3c463747.tar.gz
guix-fa274ab2c0121e0d46c10cc2a56390ec3c463747.zip
gnu: kimageformats: Update comment.
* gnu/packages/kde-frameworks.scm(kimageformats): Update comment.
Diffstat (limited to 'configure.ac')
0 files changed, 0 insertions, 0 deletions
S(b) encS(s) = encN(len(s)) + s + (padding until next 64-bit boundary) encN(n) = 64-bit little-endian encoding of n. contents(path) = the contents of a regular file. sort(strings) = lexicographic sort by 8-bit value (strcmp). entries(path) = the entries of a directory, without `.' and `..'. `+' denotes string concatenation. */ struct PathFilter { virtual ~PathFilter() { } virtual bool operator () (const Path & path) { return true; } }; extern PathFilter defaultPathFilter; void dumpPath(const Path & path, Sink & sink, PathFilter & filter = defaultPathFilter); struct ParseSink { virtual void createDirectory(const Path & path) { }; virtual void createRegularFile(const Path & path) { }; virtual void isExecutable() { }; virtual void preallocateContents(unsigned long long size) { }; virtual void receiveContents(unsigned char * data, unsigned int len) { }; virtual void createSymlink(const Path & path, const string & target) { }; }; void parseDump(ParseSink & sink, Source & source); void restorePath(const Path & path, Source & source); // FIXME: global variables are bad m'kay. extern bool useCaseHack; }