CVS log for winex/files/file.c

(logo)

ViewCVS and CVS Help

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

Request diff between arbitrary revisions


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

Revision 1.47 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Mar 30 21:35:27 2007 UTC (21 months, 1 week ago) by daniel
CVS Tags: HEAD
Changes since 1.46: +14 -0 lines
Diff to previous 1.46
If MoveFile is called with an identical source and destination file name,
don't fail the call, just check for a sharing violation.

Revision 1.46 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Mar 30 20:42:23 2007 UTC (21 months, 1 week ago) by daniel
Changes since 1.45: +1 -1 lines
Diff to previous 1.45
- fix buffer for GetTempFileNameW to handle full-length paths

Revision 1.45 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Mar 29 14:10:08 2007 UTC (21 months, 1 week ago) by daniel
Changes since 1.44: +25 -22 lines
Diff to previous 1.44
Add fake implementations of LockFileEx and UnlockFileEx.

Revision 1.44 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Mar 29 13:57:29 2007 UTC (21 months, 1 week ago) by daniel
Changes since 1.43: +5 -2 lines
Diff to previous 1.43
- make pipe handles inheritable if so requested

Revision 1.43 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 14:31:54 2007 UTC (21 months, 1 week ago) by daniel
Changes since 1.42: +14 -10 lines
Diff to previous 1.42
Attempt to handle the case where hEvent is zero in an overlapped
ReadFile/WriteFile operation.

Revision 1.42 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:23:38 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.41: +9 -5 lines
Diff to previous 1.41
Various compiler warnings fixes.

Revision 1.41 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:12:33 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.40: +0 -3 lines
Diff to previous 1.40
Revert a piece that wasn't supposed to be checked in.

Revision 1.40 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:12:03 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.39: +35 -4 lines
Diff to previous 1.39
No longer set the scheduling mode to "blocked" while running a synchronous
I/O operation. Since this scheduling mode leaves the thread at the Linux
scheduler's mercy, it may take way too long before Linux decides to complete
the operation. Instead, as a band-aid solution for the case where we're
doing I/O on a pipe, we'll do a poll() on it, and if and only if it returns
that it's not ready do we change the scheduling mode (and only for doing a
blocking poll(), not for the actual operation).

Revision 1.39 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 19:48:25 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.38: +27 -2 lines
Diff to previous 1.38
Disable the code that used asynchronous I/O to simulate synchronous I/O
when the scheduler was enabled. We'll just use the old synchronous I/O
code, but tell the scheduler about it by changing the scheduling mode
to "blocked" during the operation, which should hopefully work better,
even if it's not as pretty.

Revision 1.38 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:52:49 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.37: +6 -3 lines
Diff to previous 1.37
Use non-alertable waits when emulating synchronous I/O with the scheduler
enabled, so that we don't accidentally run APCs when we're not supposed to.

Revision 1.37 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:29:07 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.36: +122 -0 lines
Diff to previous 1.36
When the scheduler is enabled, perform synchronous I/O by queueing an
asynchronous I/O operation and then waiting for it to complete.
Overlapped I/O structures used in these operations are kept in a cache
to avoid having to create and destroy them constantly.

Revision 1.36 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:24:53 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.35: +7 -0 lines
Diff to previous 1.35
Create a critical section for file I/O (will be used for maintaining a
cache of pending synchronous file I/O requests).

Revision 1.35 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:00:24 2007 UTC (21 months, 2 weeks ago) by daniel
Changes since 1.34: +14 -0 lines
Diff to previous 1.34
Explicitly check for usage of ReadFileEx/WriteFileEx on files not opened
for overlapped I/O, since soon the wineserver will no longer check this
itself.

Revision 1.34 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Nov 6 16:32:11 2006 UTC (2 years, 2 months ago) by daniel
Changes since 1.33: +58 -0 lines
Diff to previous 1.33
ReplaceFile implementation contributed by Mikko Rasa

Revision 1.33 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Aug 22 15:33:22 2006 UTC (2 years, 4 months ago) by daniel
Changes since 1.32: +27 -27 lines
Diff to previous 1.32
Another patch from Rob Crittenden. Move wineserver call to SetFilePointerEx
and make SetFilePointer call SetFilePointerEx. Add function prototype to header.

Revision 1.32 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jun 30 12:55:18 2006 UTC (2 years, 6 months ago) by daniel
Changes since 1.31: +52 -4 lines
Diff to previous 1.31
Patches from Rob Crittenden to implement SetFilePointerEx and GetFileSizeEx

Revision 1.31 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Jan 9 18:26:25 2006 UTC (3 years ago) by mark
Changes since 1.30: +24 -8 lines
Diff to previous 1.30
Flesh out our LARGE_INTEGER and ULARGE_INTEGER structures. Do explicit copies between FILETIME and LARGE_INTEGER structures instead of just casting - both for endianness and alignment issues. Fixes some GCC4 warnings.

Revision 1.30 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Dec 29 17:01:23 2005 UTC (3 years ago) by ovek
Changes since 1.29: +21 -4 lines
Diff to previous 1.29
Under NT/2000/XP, deleting a file that's in use should fail.

Revision 1.29 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Dec 29 16:40:31 2005 UTC (3 years ago) by ovek
Changes since 1.28: +3 -2 lines
Diff to previous 1.28
Pass the attributes (including overlapped I/O flag) on to wineserver when
opening named pipe.

Revision 1.28 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Mar 14 17:14:40 2005 UTC (3 years, 9 months ago) by ovek
CVS Tags: cedega-4-3
Changes since 1.27: +2 -2 lines
Diff to previous 1.27
Merge of ReWind CVS at Feb 21, 2005.

Revision 1.1.1.29 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Mar 14 17:00:44 2005 UTC (3 years, 9 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
Changes since 1.1.1.28: +2 -2 lines
Diff to previous 1.1.1.28
Import of ReWind CVS at Feb 21, 2005.

Revision 1.27 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Mar 3 21:49:12 2005 UTC (3 years, 10 months ago) by gavriels
Changes since 1.26: +12 -4 lines
Diff to previous 1.26
Simple support for overlapping IO without an hEvent in the overlap structure.
If there's no event to signal, we just wait a bit in the GetOverlappedResult
function, in case it's being polled regularly.  This is very similar to
the behaviour if there is an hEvent.

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

Revision 1.25 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Aug 18 22:50:10 2004 UTC (4 years, 4 months ago) by david
Changes since 1.24: +17 -8 lines
Diff to previous 1.24
* allow prefix beeing NULL.
* always ensure that a path has \ in it
* set correct error code on failure.

Revision 1.24 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 18:49:37 2004 UTC (4 years, 5 months ago) by gavriels
Changes since 1.23: +10 -3 lines
Diff to previous 1.23
Eject handling, take 2.  Move back to signals for requesting a client
fd close operation.  Remove EJECT APC stuff.  Add in polling of the
CD eject button, actual ejection of disks.

Revision 1.23 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 18:43:34 2004 UTC (4 years, 5 months ago) by gavriels
Changes since 1.22: +100 -3 lines
Diff to previous 1.22
Check in cdrom eject handling code. This code will force the immediate
closure of all active fds on CDROM drives when the wineserver receives a
USR2 signal.  More work remains to poll the CD hardware for user eject
requests, but this patch allows several previously broken multi-cd
installers to work.

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

Revision 1.21 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Feb 8 18:46:56 2004 UTC (4 years, 11 months ago) by ovek
CVS Tags: winex-3-3-2, winex-3-3-1, winex-3-3
Branch point for: winex-3-3-branch
Changes since 1.20: +33 -16 lines
Diff to previous 1.20
Factored the core of FILE_GetUnixHandleType into a separate routine
wine_server_handle_to_fd, which makes it possible to get directly at the
wineserver error result.

Revision 1.20 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 28 18:38:32 2004 UTC (4 years, 11 months ago) by david
Changes since 1.19: +36 -36 lines
Diff to previous 1.19
fix broken indenting
fix c++ style comment

Revision 1.19 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 7 16:20:07 2004 UTC (5 years ago) by jlh
Changes since 1.18: +1 -1 lines
Diff to previous 1.18
One amperstand, not two. .. I blame the.. uh.. wind chill factor. And global warming.

Revision 1.18 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 7 16:02:25 2004 UTC (5 years ago) by jlh
Changes since 1.17: +4 -0 lines
Diff to previous 1.17
Avoid checking version unless explicitly need to because of overlapped flag being set

Revision 1.17 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Dec 19 04:01:19 2003 UTC (5 years ago) by ovek
Changes since 1.16: +39 -10 lines
Diff to previous 1.16
Merge of ReWind CVS at Dec 18, 2003.

Revision 1.1.1.28 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 19 03:49:49 2003 UTC (5 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20031219
Changes since 1.1.1.27: +39 -10 lines
Diff to previous 1.1.1.27
Import from ReWind CVS at Dec 18, 2003.

Revision 1.16 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Dec 17 20:51:18 2003 UTC (5 years ago) by ovek
Changes since 1.15: +73 -19 lines
Diff to previous 1.15
Merge of ReWind CVS at Dec 17, 2003.

Revision 1.1.1.27 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Dec 17 18:55:22 2003 UTC (5 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20031217
Changes since 1.1.1.26: +73 -19 lines
Diff to previous 1.1.1.26
Import from ReWind CVS at Dec 17, 2003.

Revision 1.14.2.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Dec 10 02:26:15 2003 UTC (5 years, 1 month ago) by jlh
Branch: winex-3-2-branch
CVS Tags: winex-3-2-1
Changes since 1.14: +44 -0 lines
Diff to previous 1.14 , to next main 1.15
Strip FILE_FLAG_OVERLAPPED in a FILE_CreateFile call if windows version isn't NT+.

This prevents apps (like Homeworld 2) from getting an error in ReadFile when they pass NULL as the overlap parameter in ReadFile (for early winvers) even if they erroneously called CreateFile with overlap.

Revision 1.15 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Dec 10 02:20:01 2003 UTC (5 years, 1 month ago) by jlh
Changes since 1.14: +44 -0 lines
Diff to previous 1.14
Strip FILE_FLAG_OVERLAPPED in a FILE_CreateFile call if windows version isn't NT+.

This prevents apps (like Homeworld 2) from getting an error in ReadFile when they pass NULL as the overlap parameter in ReadFile (for early winvers) even if they erroneously called CreateFile with overlap.

Revision 1.14 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Aug 26 06:21:51 2003 UTC (5 years, 4 months ago) by crazney
CVS Tags: winex-3-2, winex-3-1-99, start-merge-6oct03, dec3-internal-merge
Branch point for: winex-3-2-branch
Changes since 1.13: +6 -2 lines
Diff to previous 1.13
well, we should delete the file after copying it (when using copy to perform a move) - as MSDN says we should

Revision 1.13 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Jul 28 16:50:16 2003 UTC (5 years, 5 months ago) by hunnise
CVS Tags: winex-sims-3-2
Branch point for: winex-sims-3-2-branch
Changes since 1.12: +2 -2 lines
Diff to previous 1.12
Some warning fixes.

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

Revision 1.11 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Apr 13 02:52:33 2003 UTC (5 years, 8 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.10: +24 -13 lines
Diff to previous 1.10
In CopyFileA, If count is unsigned, and the _lread failed, we pass a huge value (0xffffffff)
to some routines as the size of our buffer and crash things.
Also, we were always returning TRUE, even if _lread failed. Bad.
Also, /me doesn't like "h1" and "h2". Replaced with something more sensible.

Revision 1.10 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Feb 25 01:54:33 2003 UTC (5 years, 10 months ago) by hunnise
CVS Tags: winex-3-0-pre-1
Changes since 1.9: +1 -1 lines
Diff to previous 1.9
Little fixes of little importance

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

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

Revision 1.1.1.26 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Sep 25 19:21:25 2002 UTC (6 years, 3 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20030217, rewind-20020925
Changes since 1.1.1.25: +27 -27 lines
Diff to previous 1.1.1.25
Import of ReWind CVS at Sep 25, 2002.

Revision 1.7 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jun 7 12:52:17 2002 UTC (6 years, 7 months ago) by ovek
CVS Tags: quartz-pre-removal, quartz-post-removal
Changes since 1.6: +165 -170 lines
Diff to previous 1.6
Merge of ReWind CVS at Jun 7, 2002.

Revision 1.1.1.25 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jun 7 12:24:08 2002 UTC (6 years, 7 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20020804, rewind-20020607
Changes since 1.1.1.24: +165 -170 lines
Diff to previous 1.1.1.24
Import of ReWind CVS at Jun 7, 2002.

Revision 1.6 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Apr 19 16:36:15 2002 UTC (6 years, 8 months ago) by ovek
Changes since 1.5: +140 -17 lines
Diff to previous 1.5
Merge of Wine release 20020228, the last X11-licensed Wine release.
Conflicts between our typelib marshaller and Marcus's were resolved
by dumping Marcus's marshaller.

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

Revision 1.5 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 16 19:49:05 2002 UTC (6 years, 11 months ago) by ovek
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
Branch point for: winex-2-0-branch
Changes since 1.4: +131 -37 lines
Diff to previous 1.4
Merge of WineHQ CVS at Jan 16, 2002.

Revision 1.1.1.23 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Jan 16 19:04:42 2002 UTC (6 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20020116
Changes since 1.1.1.22: +131 -37 lines
Diff to previous 1.1.1.22
Import of WineHQ CVS at Jan 16, 2002.

Revision 1.4 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Dec 31 15:12:15 2001 UTC (7 years ago) by ovek
Changes since 1.3: +199 -206 lines
Diff to previous 1.3
Attempted merge of Wine release 20011226. Probably breaks lots of stuff.
(Use the wine-premerge-20011226 cvs tag if you want)

Revision 1.1.1.22 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Dec 31 10:50:22 2001 UTC (7 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20011226
Changes since 1.1.1.21: +199 -206 lines
Diff to previous 1.1.1.21
Import of Wine release 20011226.
(The tree before this import has been tagged wine-premerge-20011226)

Revision 1.3 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Oct 28 15:12:06 2001 UTC (7 years, 2 months ago) by ovek
CVS Tags: wine-premerge-20011226
Changes since 1.2: +61 -51 lines
Diff to previous 1.2
Merge of WineHQ CVS at Oct 28, 2001.

Revision 1.1.1.21 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Oct 28 14:17:47 2001 UTC (7 years, 2 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20011028
Changes since 1.1.1.20: +66 -52 lines
Diff to previous 1.1.1.20
Import of WineHQ CVS at Oct 28, 2001.

Revision 1.2 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Oct 19 16:40:52 2001 UTC (7 years, 2 months ago) by ovek
Changes since 1.1: +847 -545 lines
Diff to previous 1.1
Ensure that executables loaded from removable media are copied into RAM
and then closed, so that the media can be unmounted afterwards.

Revision 1.1.1.20 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Oct 13 20:10:41 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-20011005, wine-20011004
Changes since 1.1.1.19: +17 -3 lines
Diff to previous 1.1.1.19
Import of Wine release 20011004.

Revision 1.1.1.19 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Oct 4 13:46:24 2001 UTC (7 years, 3 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20011004
Changes since 1.1.1.18: +12 -1 lines
Diff to previous 1.1.1.18
Import of WineHQ CVS at Oct 4, 2001.

Revision 1.1.1.18 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Aug 29 18:21:02 2001 UTC (7 years, 4 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010908, wine-20010824
Changes since 1.1.1.17: +242 -149 lines
Diff to previous 1.1.1.17
Import of Wine release 20010824.

Revision 1.1.1.17 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Apr 15 00:45:13 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, wine-20010510, wine-20010418, wine-20010326, Oct1201, Oct1101
Branch point for: winehq-premerge-20010824
Changes since 1.1.1.16: +143 -107 lines
Diff to previous 1.1.1.16
Import of Wine release 20010326.

Revision 1.1.1.16 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Mar 5 22:54:07 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010320, winehq-20010318, wine-20010305
Changes since 1.1.1.15: +85 -81 lines
Diff to previous 1.1.1.15
Import of Wine release 20010305.

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

Revision 1.1.1.14 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Jan 29 17:22:04 2001 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010129
Changes since 1.1.1.13: +4 -4 lines
Diff to previous 1.1.1.13
Import of WineHQ CVS at Jan 29, 2001.

Revision 1.1.1.13 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Jan 17 14:43:45 2001 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010126, winehq-20010123, winehq-20010117
Changes since 1.1.1.12: +1 -45 lines
Diff to previous 1.1.1.12
Import of WineHQ CVS at Jan 17, 2001.

Revision 1.1.1.12 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Jan 13 13:52:52 2001 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010113, wine-20010112
Changes since 1.1.1.11: +34 -28 lines
Diff to previous 1.1.1.11
Import of Wine 20010112 (at Jan 13, 2001).

Revision 1.1.1.11 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 12 19:37:38 2001 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010112
Changes since 1.1.1.10: +285 -15 lines
Diff to previous 1.1.1.10
Import of WineHQ CVS at Jan 12, 2001.

Revision 1.1.1.10 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 5 08:01:26 2001 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010105
Changes since 1.1.1.9: +47 -30 lines
Diff to previous 1.1.1.9
Import of WineHQ CVS at Jan 5, 2001, after Alexandre applied our
winehq-ddraw-merge patch, slightly modified.
(I tagged the tree before this import with winehq-premerge-20010105,
just in case.)

Revision 1.1.1.9 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Dec 30 03:43:20 2000 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-premerge-20010105, winehq-20010103, winehq-20001230
Changes since 1.1.1.8: +48 -9 lines
Diff to previous 1.1.1.8
Import of WineHQ CVS at Dec 30, 2000.
May as well have a working WineHQ branch here, right?

Revision 1.1.1.8 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Dec 23 00:51:40 2000 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001229, winehq-20001223, wine-20001222
Changes since 1.1.1.7: +17 -8 lines
Diff to previous 1.1.1.7
Import of WineHQ CVS at Dec 23, 2000 (timezone=CET).
Wow, almost Christmas...

Revision 1.1.1.7 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Dec 21 03:34:01 2000 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001221
Changes since 1.1.1.6: +8 -19 lines
Diff to previous 1.1.1.6
Import of WineHQ CVS at Dec 21, 2000.

Revision 1.1.1.6 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 15 21:01:17 2000 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001213
Changes since 1.1.1.5: +6 -4 lines
Diff to previous 1.1.1.5
Import of WineHQ CVS at Dec 13, 2000 - right before Alexandre started
destabilizing the tree. Let's see if it's possible to work from here.

Revision 1.1.1.5 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Dec 14 14:01:55 2000 UTC (8 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001214
Changes since 1.1.1.4: +4 -6 lines
Diff to previous 1.1.1.4
Yet another import of WineHQ - 20001214. (Hopefully without trouble.)

Revision 1.1.1.4 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Dec 6 15:46:50 2000 UTC (8 years, 1 month ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001212, winehq-20001206
Changes since 1.1.1.3: +22 -148 lines
Diff to previous 1.1.1.3
Bot gored, decided to merge with WineHQ again.
Using ISO date format in the tags to avoid accidental time travelling.
Importing WineHQ CVS at 20001206...

Revision 1.1.1.3 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 1 08:12:25 2000 UTC (8 years, 1 month ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-011200
Changes since 1.1.1.2: +52 -19 lines
Diff to previous 1.1.1.2
Import of WineHQ CVS at Dec 12 2000. Lots of bugfixes in there...

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

Revision 1.1.1.1.6.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Nov 23 13:56:18 2000 UTC (8 years, 1 month ago) by andrewl
Branch: merge-231100
Changes since 1.1.1.1: +56 -113 lines
Diff to previous 1.1.1.1 , to next main 1.1.1.2
Merging in from winehq, everything except ddraw.
Still working out kinks in winelib & dinput.

Revision 1.1.1.1 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Sep 8 01:43:20 2000 UTC (8 years, 4 months ago) by gavriels
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-090700, merge-231100-start, andrew-071100-start, andrew-071100-premerge, andrew-071100-postmerge
Branch point for: mipmap, merge-231100, andrew-071100
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:20 2000 UTC (8 years, 4 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