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

SPCFGRULEATTRIBUTES

列挙型
基底型i4

メンバー 9

名前10進16進
SPRAF_TopLevel10x1
SPRAF_Active20x2
SPRAF_Export40x4
SPRAF_Import80x8
SPRAF_Interpreter160x10
SPRAF_Dynamic320x20
SPRAF_Root640x40
SPRAF_AutoPause655360x10000
SPRAF_UserDelimited1310720x20000

各言語での定義

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

typedef enum SPCFGRULEATTRIBUTES : int {
    SPRAF_TopLevel = 1,
    SPRAF_Active = 2,
    SPRAF_Export = 4,
    SPRAF_Import = 8,
    SPRAF_Interpreter = 16,
    SPRAF_Dynamic = 32,
    SPRAF_Root = 64,
    SPRAF_AutoPause = 65536,
    SPRAF_UserDelimited = 131072
} SPCFGRULEATTRIBUTES;
public enum SPCFGRULEATTRIBUTES : int
{
    SPRAF_TopLevel = 1,
    SPRAF_Active = 2,
    SPRAF_Export = 4,
    SPRAF_Import = 8,
    SPRAF_Interpreter = 16,
    SPRAF_Dynamic = 32,
    SPRAF_Root = 64,
    SPRAF_AutoPause = 65536,
    SPRAF_UserDelimited = 131072,
}
Public Enum SPCFGRULEATTRIBUTES As Integer
    SPRAF_TopLevel = 1
    SPRAF_Active = 2
    SPRAF_Export = 4
    SPRAF_Import = 8
    SPRAF_Interpreter = 16
    SPRAF_Dynamic = 32
    SPRAF_Root = 64
    SPRAF_AutoPause = 65536
    SPRAF_UserDelimited = 131072
End Enum
import enum

class SPCFGRULEATTRIBUTES(enum.IntEnum):
    SPRAF_TopLevel = 1
    SPRAF_Active = 2
    SPRAF_Export = 4
    SPRAF_Import = 8
    SPRAF_Interpreter = 16
    SPRAF_Dynamic = 32
    SPRAF_Root = 64
    SPRAF_AutoPause = 65536
    SPRAF_UserDelimited = 131072
// SPCFGRULEATTRIBUTES
pub const SPRAF_TopLevel: i32 = 1;
pub const SPRAF_Active: i32 = 2;
pub const SPRAF_Export: i32 = 4;
pub const SPRAF_Import: i32 = 8;
pub const SPRAF_Interpreter: i32 = 16;
pub const SPRAF_Dynamic: i32 = 32;
pub const SPRAF_Root: i32 = 64;
pub const SPRAF_AutoPause: i32 = 65536;
pub const SPRAF_UserDelimited: i32 = 131072;
// SPCFGRULEATTRIBUTES
const (
	SPRAF_TopLevel int32 = 1
	SPRAF_Active int32 = 2
	SPRAF_Export int32 = 4
	SPRAF_Import int32 = 8
	SPRAF_Interpreter int32 = 16
	SPRAF_Dynamic int32 = 32
	SPRAF_Root int32 = 64
	SPRAF_AutoPause int32 = 65536
	SPRAF_UserDelimited int32 = 131072
)
const
  SPRAF_TopLevel = 1;
  SPRAF_Active = 2;
  SPRAF_Export = 4;
  SPRAF_Import = 8;
  SPRAF_Interpreter = 16;
  SPRAF_Dynamic = 32;
  SPRAF_Root = 64;
  SPRAF_AutoPause = 65536;
  SPRAF_UserDelimited = 131072;
// SPCFGRULEATTRIBUTES
pub const SPRAF_TopLevel: i32 = 1;
pub const SPRAF_Active: i32 = 2;
pub const SPRAF_Export: i32 = 4;
pub const SPRAF_Import: i32 = 8;
pub const SPRAF_Interpreter: i32 = 16;
pub const SPRAF_Dynamic: i32 = 32;
pub const SPRAF_Root: i32 = 64;
pub const SPRAF_AutoPause: i32 = 65536;
pub const SPRAF_UserDelimited: i32 = 131072;
const
  SPRAF_TopLevel* = 1
  SPRAF_Active* = 2
  SPRAF_Export* = 4
  SPRAF_Import* = 8
  SPRAF_Interpreter* = 16
  SPRAF_Dynamic* = 32
  SPRAF_Root* = 64
  SPRAF_AutoPause* = 65536
  SPRAF_UserDelimited* = 131072
enum SPCFGRULEATTRIBUTES : int {
    SPRAF_TopLevel = 1,
    SPRAF_Active = 2,
    SPRAF_Export = 4,
    SPRAF_Import = 8,
    SPRAF_Interpreter = 16,
    SPRAF_Dynamic = 32,
    SPRAF_Root = 64,
    SPRAF_AutoPause = 65536,
    SPRAF_UserDelimited = 131072,
}
#define global SPRAF_TopLevel      0x1
#define global SPRAF_Active        0x2
#define global SPRAF_Export        0x4
#define global SPRAF_Import        0x8
#define global SPRAF_Interpreter   0x10
#define global SPRAF_Dynamic       0x20
#define global SPRAF_Root          0x40
#define global SPRAF_AutoPause     0x10000
#define global SPRAF_UserDelimited 0x20000