Win32 API 日本語リファレンス
ホームMedia.Speech › SPDATAKEYLOCATION

SPDATAKEYLOCATION

列挙型
基底型i4

メンバー 4

名前10進16進
SPDKL_DefaultLocation00x0
SPDKL_CurrentUser10x1
SPDKL_LocalMachine20x2
SPDKL_CurrentConfig50x5

各言語での定義

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

typedef enum SPDATAKEYLOCATION : int {
    SPDKL_DefaultLocation = 0,
    SPDKL_CurrentUser = 1,
    SPDKL_LocalMachine = 2,
    SPDKL_CurrentConfig = 5
} SPDATAKEYLOCATION;
public enum SPDATAKEYLOCATION : int
{
    SPDKL_DefaultLocation = 0,
    SPDKL_CurrentUser = 1,
    SPDKL_LocalMachine = 2,
    SPDKL_CurrentConfig = 5,
}
Public Enum SPDATAKEYLOCATION As Integer
    SPDKL_DefaultLocation = 0
    SPDKL_CurrentUser = 1
    SPDKL_LocalMachine = 2
    SPDKL_CurrentConfig = 5
End Enum
import enum

class SPDATAKEYLOCATION(enum.IntEnum):
    SPDKL_DefaultLocation = 0
    SPDKL_CurrentUser = 1
    SPDKL_LocalMachine = 2
    SPDKL_CurrentConfig = 5
// SPDATAKEYLOCATION
pub const SPDKL_DefaultLocation: i32 = 0;
pub const SPDKL_CurrentUser: i32 = 1;
pub const SPDKL_LocalMachine: i32 = 2;
pub const SPDKL_CurrentConfig: i32 = 5;
// SPDATAKEYLOCATION
const (
	SPDKL_DefaultLocation int32 = 0
	SPDKL_CurrentUser int32 = 1
	SPDKL_LocalMachine int32 = 2
	SPDKL_CurrentConfig int32 = 5
)
const
  SPDKL_DefaultLocation = 0;
  SPDKL_CurrentUser = 1;
  SPDKL_LocalMachine = 2;
  SPDKL_CurrentConfig = 5;
// SPDATAKEYLOCATION
pub const SPDKL_DefaultLocation: i32 = 0;
pub const SPDKL_CurrentUser: i32 = 1;
pub const SPDKL_LocalMachine: i32 = 2;
pub const SPDKL_CurrentConfig: i32 = 5;
const
  SPDKL_DefaultLocation* = 0
  SPDKL_CurrentUser* = 1
  SPDKL_LocalMachine* = 2
  SPDKL_CurrentConfig* = 5
enum SPDATAKEYLOCATION : int {
    SPDKL_DefaultLocation = 0,
    SPDKL_CurrentUser = 1,
    SPDKL_LocalMachine = 2,
    SPDKL_CurrentConfig = 5,
}
#define global SPDKL_DefaultLocation 0x0
#define global SPDKL_CurrentUser     0x1
#define global SPDKL_LocalMachine    0x2
#define global SPDKL_CurrentConfig   0x5