//
// This file manually written from cef/include/internal/cef_types.h.
// C API name: cef_path_key_t.
//
namespace Cef3
{
///
/// Path key values.
///
public enum CefPathKey
{
///
/// Current directory.
///
Current,
///
/// Directory containing PK_FILE_EXE.
///
DirExe,
///
/// Directory containing PK_FILE_MODULE.
///
DirModule,
///
/// Temporary directory.
///
DirTemp,
///
/// Path and filename of the current executable.
///
FileExe,
///
/// Path and filename of the module containing the CEF code (usually the libcef
/// module).
///
FileModule,
///
/// "Local Settings\Application Data" directory under the user profile
/// directory on Windows.
///
LocalAppData,
///
/// "Application Data" directory under the user profile directory on Windows
/// and "~/Library/Application Support" directory on Mac OS X.
///
UserData,
}
}