ホーム › Networking.WinSock › NAPI_PROVIDER_TYPE
NAPI_PROVIDER_TYPE
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| ProviderType_Application | 1 | 0x1 |
| ProviderType_Service | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum NAPI_PROVIDER_TYPE : int {
ProviderType_Application = 1,
ProviderType_Service = 2,
}#define global ProviderType_Application 0x1
#define global ProviderType_Service 0x2