Win32 API 日本語リファレンス
ホームNetworkManagement.WiFi › DOT11_MSONEX_RESULT

DOT11_MSONEX_RESULT

列挙型
基底型i4

メンバー 3

名前10進16進
DOT11_MSONEX_SUCCESS00x0
DOT11_MSONEX_FAILURE10x1
DOT11_MSONEX_IN_PROGRESS20x2

各言語での定義

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

typedef enum DOT11_MSONEX_RESULT : int {
    DOT11_MSONEX_SUCCESS = 0,
    DOT11_MSONEX_FAILURE = 1,
    DOT11_MSONEX_IN_PROGRESS = 2
} DOT11_MSONEX_RESULT;
public enum DOT11_MSONEX_RESULT : int
{
    DOT11_MSONEX_SUCCESS = 0,
    DOT11_MSONEX_FAILURE = 1,
    DOT11_MSONEX_IN_PROGRESS = 2,
}
Public Enum DOT11_MSONEX_RESULT As Integer
    DOT11_MSONEX_SUCCESS = 0
    DOT11_MSONEX_FAILURE = 1
    DOT11_MSONEX_IN_PROGRESS = 2
End Enum
import enum

class DOT11_MSONEX_RESULT(enum.IntEnum):
    DOT11_MSONEX_SUCCESS = 0
    DOT11_MSONEX_FAILURE = 1
    DOT11_MSONEX_IN_PROGRESS = 2
// DOT11_MSONEX_RESULT
pub const DOT11_MSONEX_SUCCESS: i32 = 0;
pub const DOT11_MSONEX_FAILURE: i32 = 1;
pub const DOT11_MSONEX_IN_PROGRESS: i32 = 2;
// DOT11_MSONEX_RESULT
const (
	DOT11_MSONEX_SUCCESS int32 = 0
	DOT11_MSONEX_FAILURE int32 = 1
	DOT11_MSONEX_IN_PROGRESS int32 = 2
)
const
  DOT11_MSONEX_SUCCESS = 0;
  DOT11_MSONEX_FAILURE = 1;
  DOT11_MSONEX_IN_PROGRESS = 2;
// DOT11_MSONEX_RESULT
pub const DOT11_MSONEX_SUCCESS: i32 = 0;
pub const DOT11_MSONEX_FAILURE: i32 = 1;
pub const DOT11_MSONEX_IN_PROGRESS: i32 = 2;
const
  DOT11_MSONEX_SUCCESS* = 0
  DOT11_MSONEX_FAILURE* = 1
  DOT11_MSONEX_IN_PROGRESS* = 2
enum DOT11_MSONEX_RESULT : int {
    DOT11_MSONEX_SUCCESS = 0,
    DOT11_MSONEX_FAILURE = 1,
    DOT11_MSONEX_IN_PROGRESS = 2,
}
#define global DOT11_MSONEX_SUCCESS     0x0
#define global DOT11_MSONEX_FAILURE     0x1
#define global DOT11_MSONEX_IN_PROGRESS 0x2