aboutsummaryrefslogtreecommitdiffstats
path: root/lib/plpdirent.h
Commit message (Collapse)AuthorAgeFilesLines
* Patch from John Lines for compiling with GCC 4.3 (Patch #2023788)Reuben Thomas2008-07-211-0/+1
|
* Remove traces of plpbackup.Reuben Thomas2007-11-201-2/+1
|
* - Changes for compiling with gcc 3.2Fritz Elfert2003-02-051-1/+3
|
* - Non-KDE stuff now builds correctly with gcc3Fritz Elfert2002-07-141-1/+1
|
* Applied patches from debian bug #104967 (not yet tested)Fritz Elfert2002-07-141-8/+8
|
* - Moved include/intl.h to lib/plpintl.h to fix compile of foreign progs.Fritz Elfert2001-05-211-3/+3
| | | | - Some NLS-Related fixes
* Fixed some 64bit related stuff in psitime and plpdirent.Fritz Elfert2001-03-051-8/+14
| | | | More work on restore in kpsion.
* Modified icons.Fritz Elfert2001-03-011-274/+303
| | | | | | Started NLS support. Added kpsion KDE2 application. Unified file-headers.
* - Added KDE2 PropsDialog Plugin (incomplete)Fritz Elfert2001-02-061-0/+164
| | | | | | | | | | | | - Fixed some KDE related autoconf stuff - Added PlpDrive class for returning results from rfsv:devinfo - Added auto-watch in ppsocket and finally got rid of the nasty SIGPIPE bug. Now it's no more necessary to ignore SIGPIPE in applications. - Made constructors of rfsv16, rfsv32, rpcs16 and rpcs32 private to enforce use of the factories. - Removed error output in the factories and replaced that by error codes which can be retrieved and evaluated by an application.
* - More KDOC comments.Fritz Elfert2001-02-041-2/+28
| | | | - Fix in ppsocket.cc: Add a cast for first parameter of gethostbyaddr()
* Added some KDOC API documentation.Fritz Elfert2001-02-021-2/+2
|
* Replaced lot of ugly char * by string.Fritz Elfert2001-02-021-1/+25
| | | | | | | Fixed bug in plpftp's filename-completion, which was introduced yesterday. Added a class PlpUID for dealing with application-UIDs Added UID->mimetype mapping in kioslave.
* Some fixes in documentation.Fritz Elfert2001-02-011-1/+1
|
* More cleanup:Fritz Elfert2001-02-011-0/+110
- Removed bool.h and references to it everywhere. This is checked now in ./configure and the stuff went into acconfig.h - Replaced ugly bufferStore-based method of returning directory entries from rfsv::readdir() by a cleaner way. (A new, separate class PlpDirent is returned now.) With the old implementation, the caller has to know about the layout of the entries. Also, the old implementation was not 64bit aware. - Similar replacement done for rfsv::dir(). This now returns the entries in a standard STL container (deque) instead of a bufferArray. - Started renaming #include statements for standard library headers from the old <xxx.h> form to the new recommended <xxx> form.