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

RESOURCEMANAGER_INFORMATION_CLASS

列挙型
基底型i4

メンバー 2

名前10進16進
ResourceManagerBasicInformation00x0
ResourceManagerCompletionInformation10x1

各言語での定義

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

typedef enum RESOURCEMANAGER_INFORMATION_CLASS : int {
    ResourceManagerBasicInformation = 0,
    ResourceManagerCompletionInformation = 1
} RESOURCEMANAGER_INFORMATION_CLASS;
public enum RESOURCEMANAGER_INFORMATION_CLASS : int
{
    ResourceManagerBasicInformation = 0,
    ResourceManagerCompletionInformation = 1,
}
Public Enum RESOURCEMANAGER_INFORMATION_CLASS As Integer
    ResourceManagerBasicInformation = 0
    ResourceManagerCompletionInformation = 1
End Enum
import enum

class RESOURCEMANAGER_INFORMATION_CLASS(enum.IntEnum):
    ResourceManagerBasicInformation = 0
    ResourceManagerCompletionInformation = 1
// RESOURCEMANAGER_INFORMATION_CLASS
pub const ResourceManagerBasicInformation: i32 = 0;
pub const ResourceManagerCompletionInformation: i32 = 1;
// RESOURCEMANAGER_INFORMATION_CLASS
const (
	ResourceManagerBasicInformation int32 = 0
	ResourceManagerCompletionInformation int32 = 1
)
const
  ResourceManagerBasicInformation = 0;
  ResourceManagerCompletionInformation = 1;
// RESOURCEMANAGER_INFORMATION_CLASS
pub const ResourceManagerBasicInformation: i32 = 0;
pub const ResourceManagerCompletionInformation: i32 = 1;
const
  ResourceManagerBasicInformation* = 0
  ResourceManagerCompletionInformation* = 1
enum RESOURCEMANAGER_INFORMATION_CLASS : int {
    ResourceManagerBasicInformation = 0,
    ResourceManagerCompletionInformation = 1,
}
#define global ResourceManagerBasicInformation      0x0
#define global ResourceManagerCompletionInformation 0x1