Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What data type does HWND type belong to?

I'm trying to learn about the Win32api for Ruby, and I've come across the HWND type in different functions such as the MessageBox function. What does the HWND type do, and what data type does it belong to; pointer, integer, or long?

like image 349
Practical1 Avatar asked Sep 13 '25 01:09

Practical1


1 Answers

HWND represents a window to the operating system and is an opaque pointer value. That is you may know the value of a particular HWND but you know nothing about the data backing that value.

like image 159
SoronelHaetir Avatar answered Sep 15 '25 15:09

SoronelHaetir