Win32 API 日本語リファレンス
ホームMedia.MediaFoundation › SEEK_ORIGIN

SEEK_ORIGIN

列挙型
基底型i4

メンバー 2

名前10進16進
_msoBegin00x0
_msoCurrent10x1

各言語での定義

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

typedef enum SEEK_ORIGIN : int {
    _msoBegin = 0,
    _msoCurrent = 1
} SEEK_ORIGIN;
public enum SEEK_ORIGIN : int
{
    _msoBegin = 0,
    _msoCurrent = 1,
}
Public Enum SEEK_ORIGIN As Integer
    _msoBegin = 0
    _msoCurrent = 1
End Enum
import enum

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