Win32 API 日本語リファレンス
ホームNetworking.WinSock › NAPI_PROVIDER_TYPE

NAPI_PROVIDER_TYPE

列挙型
基底型i4

メンバー 2

名前10進16進
ProviderType_Application10x1
ProviderType_Service20x2

各言語での定義

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

typedef enum NAPI_PROVIDER_TYPE : int {
    ProviderType_Application = 1,
    ProviderType_Service = 2
} NAPI_PROVIDER_TYPE;
public enum NAPI_PROVIDER_TYPE : int
{
    ProviderType_Application = 1,
    ProviderType_Service = 2,
}
Public Enum NAPI_PROVIDER_TYPE As Integer
    ProviderType_Application = 1
    ProviderType_Service = 2
End Enum
import enum

class NAPI_PROVIDER_TYPE(enum.IntEnum):
    ProviderType_Application = 1
    ProviderType_Service = 2
// NAPI_PROVIDER_TYPE
pub const ProviderType_Application: i32 = 1;
pub const ProviderType_Service: i32 = 2;
// NAPI_PROVIDER_TYPE
const (
	ProviderType_Application int32 = 1
	ProviderType_Service int32 = 2
)
const
  ProviderType_Application = 1;
  ProviderType_Service = 2;
// NAPI_PROVIDER_TYPE
pub const ProviderType_Application: i32 = 1;
pub const ProviderType_Service: i32 = 2;
const
  ProviderType_Application* = 1
  ProviderType_Service* = 2
enum NAPI_PROVIDER_TYPE : int {
    ProviderType_Application = 1,
    ProviderType_Service = 2,
}
#define global ProviderType_Application 0x1
#define global ProviderType_Service     0x2