Robert Shearman : include: Add defines used in CopyFileEx.
Module: wine Branch: refs/heads/master Commit: 29d3f1e15d063bbf6eb226102ca2a127e61d342e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=29d3f1e15d063bbf6eb22610... Author: Robert Shearman <rob(a)codeweavers.com> Date: Mon May 22 22:16:05 2006 +0100 include: Add defines used in CopyFileEx. --- include/winbase.h | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/winbase.h b/include/winbase.h index 4d4bb3f..c3e516d 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -171,6 +171,16 @@ #define COPY_FILE_FAIL_IF_EXISTS #define COPY_FILE_RESTARTABLE 0x00000002 #define COPY_FILE_OPEN_SOURCE_FOR_WRITE 0x00000004 +/* return values for CopyProgressRoutine */ +#define PROGRESS_CONTINUE 0 +#define PROGRESS_CANCEL 1 +#define PROGRESS_STOP 2 +#define PROGRESS_QUIET 3 + +/* reason codes for CopyProgressRoutine */ +#define CALLBACK_CHUNK_FINISHED 0 +#define CALLBACK_STREAM_SWITCH 1 + /* GetTempFileName() Flags */ #define TF_FORCEDRIVE 0x80
participants (1)
-
Alexandre Julliard