mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
16 lines
518 B
C++
16 lines
518 B
C++
#pragma once
|
|
|
|
namespace GpFileCreationDispositions
|
|
{
|
|
enum GpFileCreationDisposition
|
|
{
|
|
kCreateOrOverwrite, // If exists: Overwrite. If not exists: Create.
|
|
kCreateNew, // If exists: Fail. If not exists: Create.
|
|
kCreateOrOpen, // If exists: Open. If not exists: Create.
|
|
kOpenExisting, // If exists: Open. If not exists: Fail.
|
|
kOverwriteExisting, // If exists: Overwrite. If not exists: Fail.
|
|
};
|
|
}
|
|
|
|
typedef GpFileCreationDispositions::GpFileCreationDisposition GpFileCreationDisposition_t;
|