Win32 API 日本語リファレンス
ホームUI.WindowsAndMessaging › WINDOWINFO

WINDOWINFO

構造体
サイズx64: 60 バイト / x86: 60 バイト

サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。

フィールド

フィールドサイズx64x86説明
cbSizeDWORD4+0+0この構造体のサイズ(バイト数)である。呼び出し前に設定する。
rcWindowRECT16+4+4ウィンドウの境界矩形(スクリーン座標)を受け取る。
rcClientRECT16+20+20クライアント領域の矩形(スクリーン座標)を受け取る。
dwStyleWINDOW_STYLE4+36+36ウィンドウのスタイルである。
dwExStyleWINDOW_EX_STYLE4+40+40ウィンドウの拡張スタイルである。
dwWindowStatusDWORD4+44+44ウィンドウの状態である(アクティブな場合は WS_ACTIVECAPTION)。
cxWindowBordersDWORD4+48+48ウィンドウ境界線の幅(ピクセル)である。
cyWindowBordersDWORD4+52+52ウィンドウ境界線の高さ(ピクセル)である。
atomWindowTypeWORD2+56+56ウィンドウクラスのアトムである。
wCreatorVersionWORD2+58+58ウィンドウを作成したアプリケーションの Windows バージョンである。

各言語での定義

#include <windows.h>

// RECT  (x64 16 / x86 16 バイト)
typedef struct RECT {
    INT left;
    INT top;
    INT right;
    INT bottom;
} RECT;

// WINDOWINFO  (x64 60 / x86 60 バイト)
typedef struct WINDOWINFO {
    DWORD cbSize;
    RECT rcWindow;
    RECT rcClient;
    WINDOW_STYLE dwStyle;
    WINDOW_EX_STYLE dwExStyle;
    DWORD dwWindowStatus;
    DWORD cxWindowBorders;
    DWORD cyWindowBorders;
    WORD atomWindowType;
    WORD wCreatorVersion;
} WINDOWINFO;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RECT
{
    public int left;
    public int top;
    public int right;
    public int bottom;
}

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WINDOWINFO
{
    public uint cbSize;
    public RECT rcWindow;
    public RECT rcClient;
    public uint dwStyle;
    public uint dwExStyle;
    public uint dwWindowStatus;
    public uint cxWindowBorders;
    public uint cyWindowBorders;
    public ushort atomWindowType;
    public ushort wCreatorVersion;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RECT
    Public left As Integer
    Public top As Integer
    Public right As Integer
    Public bottom As Integer
End Structure

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure WINDOWINFO
    Public cbSize As UInteger
    Public rcWindow As RECT
    Public rcClient As RECT
    Public dwStyle As UInteger
    Public dwExStyle As UInteger
    Public dwWindowStatus As UInteger
    Public cxWindowBorders As UInteger
    Public cyWindowBorders As UInteger
    Public atomWindowType As UShort
    Public wCreatorVersion As UShort
End Structure
import ctypes
from ctypes import wintypes

class RECT(ctypes.Structure):
    _fields_ = [
        ("left", ctypes.c_int),
        ("top", ctypes.c_int),
        ("right", ctypes.c_int),
        ("bottom", ctypes.c_int),
    ]

class WINDOWINFO(ctypes.Structure):
    _fields_ = [
        ("cbSize", wintypes.DWORD),
        ("rcWindow", RECT),
        ("rcClient", RECT),
        ("dwStyle", wintypes.DWORD),
        ("dwExStyle", wintypes.DWORD),
        ("dwWindowStatus", wintypes.DWORD),
        ("cxWindowBorders", wintypes.DWORD),
        ("cyWindowBorders", wintypes.DWORD),
        ("atomWindowType", ctypes.c_ushort),
        ("wCreatorVersion", ctypes.c_ushort),
    ]
#[repr(C)]
pub struct RECT {
    pub left: i32,
    pub top: i32,
    pub right: i32,
    pub bottom: i32,
}

#[repr(C)]
pub struct WINDOWINFO {
    pub cbSize: u32,
    pub rcWindow: RECT,
    pub rcClient: RECT,
    pub dwStyle: u32,
    pub dwExStyle: u32,
    pub dwWindowStatus: u32,
    pub cxWindowBorders: u32,
    pub cyWindowBorders: u32,
    pub atomWindowType: u16,
    pub wCreatorVersion: u16,
}
import "golang.org/x/sys/windows"

type RECT struct {
	left int32
	top int32
	right int32
	bottom int32
}

type WINDOWINFO struct {
	cbSize uint32
	rcWindow RECT
	rcClient RECT
	dwStyle uint32
	dwExStyle uint32
	dwWindowStatus uint32
	cxWindowBorders uint32
	cyWindowBorders uint32
	atomWindowType uint16
	wCreatorVersion uint16
}
type
  RECT = record
    left: Integer;
    top: Integer;
    right: Integer;
    bottom: Integer;
  end;

  WINDOWINFO = record
    cbSize: DWORD;
    rcWindow: RECT;
    rcClient: RECT;
    dwStyle: DWORD;
    dwExStyle: DWORD;
    dwWindowStatus: DWORD;
    cxWindowBorders: DWORD;
    cyWindowBorders: DWORD;
    atomWindowType: Word;
    wCreatorVersion: Word;
  end;
const RECT = extern struct {
    left: i32,
    top: i32,
    right: i32,
    bottom: i32,
};

const WINDOWINFO = extern struct {
    cbSize: u32,
    rcWindow: RECT,
    rcClient: RECT,
    dwStyle: u32,
    dwExStyle: u32,
    dwWindowStatus: u32,
    cxWindowBorders: u32,
    cyWindowBorders: u32,
    atomWindowType: u16,
    wCreatorVersion: u16,
};
type
  RECT {.bycopy.} = object
    left: int32
    top: int32
    right: int32
    bottom: int32

  WINDOWINFO {.bycopy.} = object
    cbSize: uint32
    rcWindow: RECT
    rcClient: RECT
    dwStyle: uint32
    dwExStyle: uint32
    dwWindowStatus: uint32
    cxWindowBorders: uint32
    cyWindowBorders: uint32
    atomWindowType: uint16
    wCreatorVersion: uint16
struct RECT
{
    int left;
    int top;
    int right;
    int bottom;
}

struct WINDOWINFO
{
    uint cbSize;
    RECT rcWindow;
    RECT rcClient;
    uint dwStyle;
    uint dwExStyle;
    uint dwWindowStatus;
    uint cxWindowBorders;
    uint cyWindowBorders;
    ushort atomWindowType;
    ushort wCreatorVersion;
}

HSP用 定義

HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。

; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; WINDOWINFO サイズ: 60 バイト(x64)
dim st, 15    ; 4byte整数×15(構造体サイズ 60 / 4 切り上げ)
; cbSize : DWORD (+0, 4byte)  st.0 = 値  /  値 = st.0   (lpoke/lpeek も可)
; rcWindow : RECT (+4, 16byte)  varptr(st)+4 を基点に操作(16byte:入れ子/配列)
; rcClient : RECT (+20, 16byte)  varptr(st)+20 を基点に操作(16byte:入れ子/配列)
; dwStyle : WINDOW_STYLE (+36, 4byte)  st.9 = 値  /  値 = st.9   (lpoke/lpeek も可)
; dwExStyle : WINDOW_EX_STYLE (+40, 4byte)  st.10 = 値  /  値 = st.10   (lpoke/lpeek も可)
; dwWindowStatus : DWORD (+44, 4byte)  st.11 = 値  /  値 = st.11   (lpoke/lpeek も可)
; cxWindowBorders : DWORD (+48, 4byte)  st.12 = 値  /  値 = st.12   (lpoke/lpeek も可)
; cyWindowBorders : DWORD (+52, 4byte)  st.13 = 値  /  値 = st.13   (lpoke/lpeek も可)
; atomWindowType : WORD (+56, 2byte)  wpoke st,56,値  /  値 = wpeek(st,56)
; wCreatorVersion : WORD (+58, 2byte)  wpoke st,58,値  /  値 = wpeek(st,58)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。
; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
; ※GUID・入れ子構造体はデフォルト型でないため、依存する #defstruct を先に定義(下記に同梱)。
#defstruct global RECT
    #field int left
    #field int top
    #field int right
    #field int bottom
#endstruct

#defstruct global WINDOWINFO
    #field int cbSize
    #field RECT rcWindow
    #field RECT rcClient
    #field int dwStyle
    #field int dwExStyle
    #field int dwWindowStatus
    #field int cxWindowBorders
    #field int cyWindowBorders
    #field short atomWindowType
    #field short wCreatorVersion
#endstruct

stdim st, WINDOWINFO        ; NSTRUCT 変数を確保
st->cbSize = 100
mes "cbSize=" + st->cbSize