Win32 API 日本語リファレンス
ホームSystem.ApplicationInstallationAndServicing › msidbLocatorType

msidbLocatorType

列挙型
基底型i4

メンバー 4

名前10進16進
msidbLocatorTypeDirectory00x0
msidbLocatorTypeFileName10x1
msidbLocatorTypeRawValue20x2
msidbLocatorType64bit160x10

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum msidbLocatorType : int {
    msidbLocatorTypeDirectory = 0,
    msidbLocatorTypeFileName = 1,
    msidbLocatorTypeRawValue = 2,
    msidbLocatorType64bit = 16
} msidbLocatorType;
public enum msidbLocatorType : int
{
    msidbLocatorTypeDirectory = 0,
    msidbLocatorTypeFileName = 1,
    msidbLocatorTypeRawValue = 2,
    msidbLocatorType64bit = 16,
}
Public Enum msidbLocatorType As Integer
    msidbLocatorTypeDirectory = 0
    msidbLocatorTypeFileName = 1
    msidbLocatorTypeRawValue = 2
    msidbLocatorType64bit = 16
End Enum
import enum

class msidbLocatorType(enum.IntEnum):
    msidbLocatorTypeDirectory = 0
    msidbLocatorTypeFileName = 1
    msidbLocatorTypeRawValue = 2
    msidbLocatorType64bit = 16
// msidbLocatorType
pub const msidbLocatorTypeDirectory: i32 = 0;
pub const msidbLocatorTypeFileName: i32 = 1;
pub const msidbLocatorTypeRawValue: i32 = 2;
pub const msidbLocatorType64bit: i32 = 16;
// msidbLocatorType
const (
	msidbLocatorTypeDirectory int32 = 0
	msidbLocatorTypeFileName int32 = 1
	msidbLocatorTypeRawValue int32 = 2
	msidbLocatorType64bit int32 = 16
)
const
  msidbLocatorTypeDirectory = 0;
  msidbLocatorTypeFileName = 1;
  msidbLocatorTypeRawValue = 2;
  msidbLocatorType64bit = 16;
// msidbLocatorType
pub const msidbLocatorTypeDirectory: i32 = 0;
pub const msidbLocatorTypeFileName: i32 = 1;
pub const msidbLocatorTypeRawValue: i32 = 2;
pub const msidbLocatorType64bit: i32 = 16;
const
  msidbLocatorTypeDirectory* = 0
  msidbLocatorTypeFileName* = 1
  msidbLocatorTypeRawValue* = 2
  msidbLocatorType64bit* = 16
enum msidbLocatorType : int {
    msidbLocatorTypeDirectory = 0,
    msidbLocatorTypeFileName = 1,
    msidbLocatorTypeRawValue = 2,
    msidbLocatorType64bit = 16,
}
#define global msidbLocatorTypeDirectory 0x0
#define global msidbLocatorTypeFileName  0x1
#define global msidbLocatorTypeRawValue  0x2
#define global msidbLocatorType64bit     0x10