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

STREAM_SEEK

列挙型
基底型u4

メンバー 3

名前10進16進
STREAM_SEEK_SET00x0
STREAM_SEEK_CUR10x1
STREAM_SEEK_END20x2

各言語での定義

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

typedef enum STREAM_SEEK : unsigned int {
    STREAM_SEEK_SET = 0,
    STREAM_SEEK_CUR = 1,
    STREAM_SEEK_END = 2
} STREAM_SEEK;
public enum STREAM_SEEK : uint
{
    STREAM_SEEK_SET = 0,
    STREAM_SEEK_CUR = 1,
    STREAM_SEEK_END = 2,
}
Public Enum STREAM_SEEK As UInteger
    STREAM_SEEK_SET = 0
    STREAM_SEEK_CUR = 1
    STREAM_SEEK_END = 2
End Enum
import enum

class STREAM_SEEK(enum.IntEnum):
    STREAM_SEEK_SET = 0
    STREAM_SEEK_CUR = 1
    STREAM_SEEK_END = 2
// STREAM_SEEK
pub const STREAM_SEEK_SET: u32 = 0;
pub const STREAM_SEEK_CUR: u32 = 1;
pub const STREAM_SEEK_END: u32 = 2;
// STREAM_SEEK
const (
	STREAM_SEEK_SET uint32 = 0
	STREAM_SEEK_CUR uint32 = 1
	STREAM_SEEK_END uint32 = 2
)
const
  STREAM_SEEK_SET = 0;
  STREAM_SEEK_CUR = 1;
  STREAM_SEEK_END = 2;
// STREAM_SEEK
pub const STREAM_SEEK_SET: u32 = 0;
pub const STREAM_SEEK_CUR: u32 = 1;
pub const STREAM_SEEK_END: u32 = 2;
const
  STREAM_SEEK_SET* = 0
  STREAM_SEEK_CUR* = 1
  STREAM_SEEK_END* = 2
enum STREAM_SEEK : uint {
    STREAM_SEEK_SET = 0,
    STREAM_SEEK_CUR = 1,
    STREAM_SEEK_END = 2,
}
#define global STREAM_SEEK_SET 0x0
#define global STREAM_SEEK_CUR 0x1
#define global STREAM_SEEK_END 0x2