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

ExtendedErrorParamTypes

列挙型
基底型i4

メンバー 7

名前10進16進
eeptAnsiString10x1
eeptUnicodeString20x2
eeptLongVal30x3
eeptShortVal40x4
eeptPointerVal50x5
eeptNone60x6
eeptBinary70x7

各言語での定義

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

typedef enum ExtendedErrorParamTypes : int {
    eeptAnsiString = 1,
    eeptUnicodeString = 2,
    eeptLongVal = 3,
    eeptShortVal = 4,
    eeptPointerVal = 5,
    eeptNone = 6,
    eeptBinary = 7
} ExtendedErrorParamTypes;
public enum ExtendedErrorParamTypes : int
{
    eeptAnsiString = 1,
    eeptUnicodeString = 2,
    eeptLongVal = 3,
    eeptShortVal = 4,
    eeptPointerVal = 5,
    eeptNone = 6,
    eeptBinary = 7,
}
Public Enum ExtendedErrorParamTypes As Integer
    eeptAnsiString = 1
    eeptUnicodeString = 2
    eeptLongVal = 3
    eeptShortVal = 4
    eeptPointerVal = 5
    eeptNone = 6
    eeptBinary = 7
End Enum
import enum

class ExtendedErrorParamTypes(enum.IntEnum):
    eeptAnsiString = 1
    eeptUnicodeString = 2
    eeptLongVal = 3
    eeptShortVal = 4
    eeptPointerVal = 5
    eeptNone = 6
    eeptBinary = 7
// ExtendedErrorParamTypes
pub const eeptAnsiString: i32 = 1;
pub const eeptUnicodeString: i32 = 2;
pub const eeptLongVal: i32 = 3;
pub const eeptShortVal: i32 = 4;
pub const eeptPointerVal: i32 = 5;
pub const eeptNone: i32 = 6;
pub const eeptBinary: i32 = 7;
// ExtendedErrorParamTypes
const (
	eeptAnsiString int32 = 1
	eeptUnicodeString int32 = 2
	eeptLongVal int32 = 3
	eeptShortVal int32 = 4
	eeptPointerVal int32 = 5
	eeptNone int32 = 6
	eeptBinary int32 = 7
)
const
  eeptAnsiString = 1;
  eeptUnicodeString = 2;
  eeptLongVal = 3;
  eeptShortVal = 4;
  eeptPointerVal = 5;
  eeptNone = 6;
  eeptBinary = 7;
// ExtendedErrorParamTypes
pub const eeptAnsiString: i32 = 1;
pub const eeptUnicodeString: i32 = 2;
pub const eeptLongVal: i32 = 3;
pub const eeptShortVal: i32 = 4;
pub const eeptPointerVal: i32 = 5;
pub const eeptNone: i32 = 6;
pub const eeptBinary: i32 = 7;
const
  eeptAnsiString* = 1
  eeptUnicodeString* = 2
  eeptLongVal* = 3
  eeptShortVal* = 4
  eeptPointerVal* = 5
  eeptNone* = 6
  eeptBinary* = 7
enum ExtendedErrorParamTypes : int {
    eeptAnsiString = 1,
    eeptUnicodeString = 2,
    eeptLongVal = 3,
    eeptShortVal = 4,
    eeptPointerVal = 5,
    eeptNone = 6,
    eeptBinary = 7,
}
#define global eeptAnsiString    0x1
#define global eeptUnicodeString 0x2
#define global eeptLongVal       0x3
#define global eeptShortVal      0x4
#define global eeptPointerVal    0x5
#define global eeptNone          0x6
#define global eeptBinary        0x7