CVS log for winex/files/directory.c

(logo)

ViewCVS and CVS Help

(back) Up to [cvs] / winex / files / directory.c

Request diff between arbitrary revisions


Default branch: MAIN
Bookmark a link to: HEAD / (download)

Revision 1.26 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Aug 1 12:31:44 2007 UTC (15 months, 2 weeks ago) by mark
CVS Tags: HEAD
Changes since 1.25: +28 -13 lines
Diff to previous 1.25
- fixed GetModuleFileNameA() to properly return a truncated filename error code.  GetModuleFileNameW() just calls GetModuleFileNameA(), so its error codes should be updated as well.
- fixed all the calls to GetModuleFileNameA/W() to check for small buffer and bad module errors.  Currently small buffer errors are just reported and are allowed to proceed with either an empty string or truncated string for the filename.  In the case of an error retrieving the module filename (error == 0), the calling function reports the error and returns immediately.

Revision 1.25 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 17:33:14 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.24: +74 -1 lines
Diff to previous 1.24
- place temp files in <temp>/tg-user/ to avoid conflicts between users

Revision 1.24 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Feb 22 23:30:28 2007 UTC (20 months, 4 weeks ago) by jason
Changes since 1.23: +28 -0 lines
Diff to previous 1.23
Add stub for GetSystemWow64DirectoryA/W

I saw an installer call GetProcAddress on this, so we might as well stub it.

Revision 1.23 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Nov 6 16:23:57 2006 UTC (2 years ago) by daniel
Changes since 1.22: +6 -1 lines
Diff to previous 1.22
set the COMSPEC env variable to c:\\windows\\system32\\wcmd.exe instead of
c:\\command.com, which doesn't exist.

Revision 1.22 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Nov 6 16:19:58 2006 UTC (2 years ago) by daniel
Changes since 1.21: +17 -0 lines
Diff to previous 1.21
Fix CreateDirectoryA so that it ignores the unicode prefix "\\?\" for long
filenames.

Revision 1.21 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 19 20:16:49 2005 UTC (3 years, 10 months ago) by ovek
CVS Tags: cedega-4-3
Changes since 1.20: +11 -8 lines
Diff to previous 1.20
If the Windows PATH environment variable is already set (e.g. through
WINEPATH), don't set it from config file.

Revision 1.20 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Nov 15 15:41:26 2004 UTC (4 years ago) by peter
Changes since 1.19: +6 -2 lines
Diff to previous 1.19
Portability fixes. Based off patch from Bruce M Simpson for FreeBSD.

Revision 1.19 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jul 7 16:29:06 2004 UTC (4 years, 4 months ago) by ovek
Changes since 1.18: +0 -10 lines
Diff to previous 1.18
Fix launching Winelib apps with relative paths, by moving the chdir to "/"
to a later time.

Revision 1.18 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Jun 27 03:00:16 2004 UTC (4 years, 4 months ago) by ovek
Changes since 1.17: +10 -0 lines
Diff to previous 1.17
Make sure that the unix cwd is outside any possible mount point (at "/").
This should hopefully make "Run Directory" (-use-dos-cwd) safe to use on
all installers.

Revision 1.17 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Feb 18 22:27:46 2004 UTC (4 years, 9 months ago) by david
Changes since 1.16: +2 -2 lines
Diff to previous 1.16
* change all occurances of *_DEBUG_CHANNEL to WINE_*_DEBUG_CHANNEL
* remove the #define's for *_DEBUG_CHANNEL

Revision 1.16 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Sep 7 04:59:50 2003 UTC (5 years, 2 months ago) by hunnise
CVS Tags: winex-3-3-2, winex-3-3-1, winex-3-3, winex-3-2-1, winex-3-2, winex-3-1-99, start-merge-6oct03, dec3-internal-merge
Branch point for: winex-3-3-branch, winex-3-2-branch
Changes since 1.15: +1 -1 lines
Diff to previous 1.15
Small warning fixes and comment change.

Revision 1.15 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jul 25 21:45:32 2003 UTC (5 years, 3 months ago) by hunnise
CVS Tags: winex-sims-3-2
Branch point for: winex-sims-3-2-branch
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
Finally get around to changing all uses of debugtools.h -> wine/debug.h

Revision 1.14 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Apr 15 19:08:30 2003 UTC (5 years, 7 months ago) by james_hatheway
CVS Tags: winex-kohan-3-1, winex-3-1, winex-3-0
Branch point for: winex-kohan-3-2-branch, winex-3-0-branch
Changes since 1.13: +25 -40 lines
Diff to previous 1.13
Fix an issue with -use-dos-cwd on some machines

Revision 1.13 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Apr 15 18:22:10 2003 UTC (5 years, 7 months ago) by james_hatheway
Changes since 1.12: +1 -1 lines
Diff to previous 1.12
Make the error msg for invalid path given to --use-dos-cwd print out the
actual bad path given.

Revision 1.12 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Apr 14 18:20:19 2003 UTC (5 years, 7 months ago) by james_hatheway
Changes since 1.11: +52 -7 lines
Diff to previous 1.11
Fixup using relative paths with --use-dos-cwd.

Revision 1.11 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Mar 8 17:24:53 2003 UTC (5 years, 8 months ago) by james_hatheway
CVS Tags: winex-3-0-pre-1
Changes since 1.10: +55 -29 lines
Diff to previous 1.10
Change -use-dos-cwd option so it can accept DOS or UNIX style pathes.

Revision 1.10 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Feb 12 22:53:38 2003 UTC (5 years, 9 months ago) by james_hatheway
Changes since 1.9: +50 -5 lines
Diff to previous 1.9
Implement the -use-dos-cwd commandline option for winex. Needed to get
the Sim City 4 installer to start.

Example commandline:
~/transgaming/winex-co -use-dos-cwd 'f:\' 'f:\autorun'

Revision 1.9 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Dec 23 19:39:21 2002 UTC (5 years, 10 months ago) by hunnise
Changes since 1.8: +0 -3 lines
Diff to previous 1.8
Merge from 2.0 branch

Revision 1.8 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Dec 11 22:07:50 2002 UTC (5 years, 11 months ago) by hunnise
CVS Tags: head_merge_from_winex_2_0_branch
Changes since 1.7: +1 -1 lines
Diff to previous 1.7
include/file.h doesn't exist on windows, move to include/wine/file.h

Revision 1.7 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Sep 25 20:18:30 2002 UTC (6 years, 1 month ago) by ovek
Changes since 1.6: +7 -7 lines
Diff to previous 1.6
Stripped whitespace from end of lines.

Revision 1.1.1.13 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Sep 25 19:21:20 2002 UTC (6 years, 1 month ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20031219, rewind-20031217, rewind-20030217, rewind-20020925
Changes since 1.1.1.12: +7 -7 lines
Diff to previous 1.1.1.12
Import of ReWind CVS at Sep 25, 2002.

Revision 1.6 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Aug 4 20:13:22 2002 UTC (6 years, 3 months ago) by ovek
Changes since 1.5: +13 -8 lines
Diff to previous 1.5
Merge of ReWind CVS at Aug 4, 2002.

Revision 1.1.1.12 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Aug 4 19:39:49 2002 UTC (6 years, 3 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20020804
Changes since 1.1.1.11: +13 -8 lines
Diff to previous 1.1.1.11
Import of ReWind CVS at Aug 4, 2002.

Revision 1.5 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jun 5 15:22:14 2002 UTC (6 years, 5 months ago) by andrewlewycky
CVS Tags: quartz-pre-removal, quartz-post-removal
Changes since 1.4: +252 -65 lines
Diff to previous 1.4
Avoid calling CloseHandle(hkApp) when it was never opened in the
first place.

Revision 1.1.1.11 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Apr 19 15:51:12 2002 UTC (6 years, 7 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20020228, rewind-20020607, rewind-20020427, rewind-20020419
Changes since 1.1.1.10: +112 -28 lines
Diff to previous 1.1.1.10
Import of Wine release 20020228, the last X11-licensed Wine release.

Revision 1.1.1.10 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Dec 31 10:50:18 2001 UTC (6 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winex-kohan-2-1, winex-2-2-1, winex-2-2, winex-2-1, winex-2-0-branch-merge-to-head, winex-2-0, winehq-20020116, wine-20011226
Branch point for: winex-2-0-branch
Changes since 1.1.1.9: +1 -1 lines
Diff to previous 1.1.1.9
Import of Wine release 20011226.
(The tree before this import has been tagged wine-premerge-20011226)

Revision 1.1.1.9 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Aug 29 18:20:58 2001 UTC (7 years, 2 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-premerge-20010824-premerge-20011014, winehq-premerge-20010824-postmerge-20011014, winehq-20011028, winehq-20011005, winehq-20011004, winehq-20010908, wine-premerge-20011226, wine-20011004, wine-20010824
Changes since 1.1.1.8: +123 -23 lines
Diff to previous 1.1.1.8
Import of Wine release 20010824.

Revision 1.1.1.8 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Mar 5 22:54:04 2001 UTC (7 years, 8 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-premerge-20010824-start, winehq-premerge-20010824-20011014, winehq-20010509, winehq-20010501, winehq-20010425, winehq-20010419, winehq-20010416, winehq-20010414, winehq-20010320, winehq-20010318, wine-20010510, wine-20010418, wine-20010326, wine-20010305, Oct1201, Oct1101
Branch point for: winehq-premerge-20010824
Changes since 1.1.1.7: +1 -1 lines
Diff to previous 1.1.1.7
Import of Wine release 20010305.

Revision 1.1.1.7 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Mar 2 11:34:35 2001 UTC (7 years, 8 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20010216
Changes since 1.1.1.6: +8 -7 lines
Diff to previous 1.1.1.6
Import of Wine 20010216 release (tagged with wine-20010216).

Revision 1.1.1.6 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Jan 13 13:52:48 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010129, winehq-20010126, winehq-20010123, winehq-20010117, winehq-20010113, wine-20010112
Changes since 1.1.1.5: +2 -2 lines
Diff to previous 1.1.1.5
Import of Wine 20010112 (at Jan 13, 2001).

Revision 1.1.1.5 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 29 10:54:59 2000 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-premerge-20010105, winehq-20010112, winehq-20010105, winehq-20010103, winehq-20001230, winehq-20001229
Changes since 1.1.1.4: +4 -3 lines
Diff to previous 1.1.1.4
Import of WineHQ CVS at Dec 29, 2000.
OK, I'll also add tags to mark the Wine 20001222 release relative to
our tree, if we still want to make diffs relative to last release...

Revision 1.1.1.4 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Dec 21 03:33:58 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001223, winehq-20001221, wine-20001222
Changes since 1.1.1.3: +4 -3 lines
Diff to previous 1.1.1.3
Import of WineHQ CVS at Dec 21, 2000.

Revision 1.4 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Dec 1 09:05:02 2000 UTC (7 years, 11 months ago) by ovek
Changes since 1.3: +38 -29 lines
Diff to previous 1.3
Finalize merge from WineHQ.

Revision 1.1.1.3 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 1 08:12:22 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001214, winehq-20001213, winehq-20001212, winehq-20001206, winehq-011200
Changes since 1.1.1.2: +38 -29 lines
Diff to previous 1.1.1.2
Import of WineHQ CVS at Dec 12 2000. Lots of bugfixes in there...

Revision 1.3 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Nov 30 18:05:29 2000 UTC (7 years, 11 months ago) by andrewl
Changes since 1.2: +40 -25 lines
Diff to previous 1.2
Merge.

Revision 1.1.1.2 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Nov 23 15:15:23 2000 UTC (7 years, 11 months ago) by andrewl
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-112300
Changes since 1.1.1.1: +40 -23 lines
Diff to previous 1.1.1.1
Import of Nov 23 winehq.

Revision 1.2.6.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Nov 23 13:56:18 2000 UTC (7 years, 11 months ago) by andrewl
Branch: merge-231100
Changes since 1.2: +40 -19 lines
Diff to previous 1.2 , to next main 1.3
Merging in from winehq, everything except ddraw.
Still working out kinks in winelib & dinput.

Revision 1.2 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Sep 9 03:02:57 2000 UTC (8 years, 2 months ago) by gavriels
CVS Tags: merge-231100-start, andrew-071100-start, andrew-071100-premerge, andrew-071100-postmerge
Branch point for: mipmap, merge-231100, andrew-071100
Changes since 1.1: +2 -0 lines
Diff to previous 1.1
Initial check-in of d3d7 support code from Ove and Andrew.

Also added support files for use of CRTDLL within winelib apps,
and a workaround for NVidia libGL, which requires that the
pthreads wrappers be properly initialized before libwine is
initialized.

Revision 1.1.1.1 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Sep 8 01:43:19 2000 UTC (8 years, 2 months ago) by gavriels
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-090700
Changes since 1.1: +0 -0 lines
Diff to previous 1.1
Import of WineHQ 090700

Revision 1.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Sep 8 01:43:19 2000 UTC (8 years, 2 months ago) by gavriels
Branch point for: winehq-ddraw-merge, winehq
Initial revision

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Diffs between and
Type of Diff should be a

View only Branch:

Sort log by:

CVS Admin
Powered by
ViewCVS 1.0-dev