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