mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +01:00
Improve consistency of enumerations
svn path=/trunk/; revision=5979
This commit is contained in:
parent
107ac2da56
commit
07526e709a
@ -1,3 +1,7 @@
|
|||||||
|
2007-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gfile.h: Add G_FILE_COPY_FLAGS_NONE for consistency.
|
||||||
|
|
||||||
2007-11-28 Alexander Larsson <alexl@redhat.com>
|
2007-11-28 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
* Makefile.am:
|
* Makefile.am:
|
||||||
|
@ -62,6 +62,7 @@ typedef enum {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* GFileCopyFlags:
|
* GFileCopyFlags:
|
||||||
|
* @G_FILE_COPY_FLAGS_NONE: No flags set.
|
||||||
* @G_FILE_COPY_OVERWRITE: Overwrite any existing files
|
* @G_FILE_COPY_OVERWRITE: Overwrite any existing files
|
||||||
* @G_FILE_COPY_BACKUP: Make a backup of any existing files. TODO: explain backup naming scheme.
|
* @G_FILE_COPY_BACKUP: Make a backup of any existing files. TODO: explain backup naming scheme.
|
||||||
* @G_FILE_COPY_NOFOLLOW_SYMLINKS: Don't follow symlinks.
|
* @G_FILE_COPY_NOFOLLOW_SYMLINKS: Don't follow symlinks.
|
||||||
@ -70,6 +71,7 @@ typedef enum {
|
|||||||
* Flags used when copying or moving files.
|
* Flags used when copying or moving files.
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
G_FILE_COPY_FLAGS_NONE = 0,
|
||||||
G_FILE_COPY_OVERWRITE = (1<<0),
|
G_FILE_COPY_OVERWRITE = (1<<0),
|
||||||
G_FILE_COPY_BACKUP = (1<<1),
|
G_FILE_COPY_BACKUP = (1<<1),
|
||||||
G_FILE_COPY_NOFOLLOW_SYMLINKS = (1<<2),
|
G_FILE_COPY_NOFOLLOW_SYMLINKS = (1<<2),
|
||||||
|
Loading…
Reference in New Issue
Block a user