- 24 Oct, 2011 1 commit
-
-
deuce authored
(ie: PDWORD)to satisfy MinGW
-
- 08 Sep, 2011 2 commits
- 03 Jun, 2010 1 commit
-
-
rswindell authored
-
- 15 Mar, 2010 1 commit
-
-
rswindell authored
a single entry with a name of "", which makes no sense to me.
-
- 09 Mar, 2010 1 commit
-
-
rswindell authored
_FILE_OFFSET_BITS=64, and use fseeko() and ftello() for 64-bit offset support (instead of fseek() and ftell()) - also redefine off_t on Win32 to int64_t and removed filelen_t and fileoff_t typedefs (use off_t instead).
-
- 08 Mar, 2010 1 commit
-
-
rswindell authored
-
- 05 Mar, 2010 2 commits
-
-
rswindell authored
is defined.
-
rswindell authored
in size (or >4G-1byte depending on how the return value was used). This is going to trigger a bunch of warnings like this: conversion from '__int64 ' to 'unsigned long ', possible loss of data which will be fixed over type (either with typecasts or by supporting 64-bit file sizes, as the case may be).
-
- 23 Mar, 2009 1 commit
-
-
rswindell authored
then would return FALSE (even if there was a matching file that would be found next).
-
- 18 Feb, 2009 1 commit
-
-
rswindell authored
-
- 04 Jun, 2008 1 commit
-
-
deuce authored
by properly const-ifying the appropriate functions and variables. Not yet tested on Win32
-
- 24 Feb, 2008 1 commit
-
-
rswindell authored
-
- 12 Aug, 2007 1 commit
-
-
deuce authored
Fixes incorrect FALSE in the case of wildmatch("ttest.txt","*test.txt",x) Reported by Cyan.
-
- 24 Aug, 2006 4 commits
-
-
deuce authored
DIE DIE DIE!
-
deuce authored
-
deuce authored
DigitalMan hath spoken.
-
deuce authored
Make removecase() handle dirs as well as files through the use of a new static delfiles_and_or_dirs() function which is basically delfiles() with an option to remove() dirs too. delfiles() simply calls this function now.
-
- 23 Aug, 2006 3 commits
- 04 Jun, 2006 1 commit
-
-
rswindell authored
e.g. kilobytes) of the disk (not just the "free space").
-
- 12 May, 2006 1 commit
-
-
rswindell authored
-
- 20 Apr, 2006 1 commit
-
-
deuce authored
-
- 07 Apr, 2006 2 commits
-
-
deuce authored
-
deuce authored
on the passed path... For fexist() simply return TRUE if access()!=-1 && !isdir() For fexistcase() *try* the access()/isdir() method first, then do the full search. Should make a reasonable difference. Profileing suggests that iniFileName() is quite slow due to the fexistcase() calls. As the general case is that the passed path is correct, this should speed up most calls to fexist*().
-
- 08 Feb, 2006 2 commits
- 17 Nov, 2005 2 commits
- 28 Sep, 2005 2 commits
- 05 Sep, 2005 1 commit
-
-
deuce authored
Consider doing the same for all .h files. Consider the meaning of sanity.
-
- 30 Aug, 2005 1 commit
-
-
deuce authored
present.
-
- 22 Jun, 2005 1 commit
-
-
rswindell authored
-
- 14 Jun, 2005 1 commit
-
-
deuce authored
-
- 03 Jun, 2005 1 commit
-
-
deuce authored
-
- 20 Apr, 2005 1 commit
-
-
rswindell authored
-
- 19 Apr, 2005 1 commit
-
-
rswindell authored
over-write backslash with forwardslash (rather than just appending it, creating and invalid path string).
-
- 18 Apr, 2005 1 commit
-
-
deuce authored
(* or ?) chars are present. Doing so prevents re-writing of the path parameter, so behaviour is different between the two. This would break something like: int munlink(char *glob) { char this[MAX_PATH+1]; strcpy(this,glob); while(fexistcase(this)) { unlink(this); strcpy(this,glob); } } Does Synchronet rely on the old behaviour anywhere?
-