Date: | April 18, 2005 / year-entry #96 |
Tags: | code |
Orig Link: | https://blogs.msdn.microsoft.com/oldnewthing/20050418-59/?p=35873 |
Comments: | 10 |
Summary: | One of the less-understood parameters to the CreateWindow function and the RegisterClass function is the HINSTANCE (either passed as a parameter or as part of the WNDCLASS structure). The window class name is not sufficient to identify the class uniquely. Each process has its own window class list, and each entry in the window class... |
One of the less-understood parameters to
the
The window class name is not sufficient to identify the class uniquely.
Each process has its own window class list,
and each entry in the window class list consists of an instance handle
and a class name.
For example, here's what the window class list might look like if a
program has two DLLs, both of which register a class name "MyClass",
passing the DLL's handle as the
When it comes time to create a window, each module then passes
its own CreateWindow("MyClass", ..., hinstA, ...); // creates class 6 CreateWindow("MyClass", ..., hinstB, ...); // creates class 7 CreateWindow("MyClass", ..., hinstC, ...); // fails This is why it is okay if multiple DLLs all register a class called "MyClass"; the instance handle is used to tell them apart.
There is an exception to the above rule, however.
If you pass the CreateWindow("edit", ..., hinstA, ...); CreateWindow("edit", ..., hinstB, ...); CreateWindow("edit", ..., hinstC, ...);
If you are registering a class for other modules to use in
dialog boxes, you need to register as In 16-bit Windows, the instance handle did other things, too, but they are no longer relevant to Win32.
A common mistake is to pass the
|
Comments (10)
Comments are closed. |
MSDN says otherwise:
ref: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/windows/windowreference/windowfunctions/createwindow.asp
In your own scratch program you pass HINSTANCE received as an argument in WinMain for both registering and creating class.
ref: http://blogs.msdn.com/oldnewthing/archive/2003/07/23/54576.aspx
Am I missing something?
errata:
"…for both registering and creating class" should read "..for both registering class and creating window"
On a related note, what should I pass as the class name if I want to use CreateWindowEx to create a dialog box? For various reasons I don’t want to use the default functions but I can’t seem to find a class name it’s happy with!
Very helpful series of articles though :-) Thanks!
MSDN says:
hInstance
[in] Windows 95/98/Me: Handle to the instance of the module to be associated with the window.
Windows NT/2000/XP: This value is ignored.
So for 9x this hold true. For NT, then, I wonder how classes get separated there. What happens in NT if two modules register the same class name?
And as for the scratch program, that’s OK. What Raymond meant with the common mistake is that you should always pass the HINSTANCE of the code you’re in. The scratch program is always in the main EXE, so it should pass the HINSTANCE of the main EXE as well.
CornedBee: That’s a doc bug; I’ve submitted a correction. All versions of Windows have always used the HINSTANCE to identify the class.
David: IIRC, IsDialogMessage is perfectly happy with windows that are not created via CreateDialog. The answer is therefore ‘any class you like.’
Raymond has made many, many posts on the behaviour of the dialog manager and modal loops; if you read those posts you should be able to work out how to emulate the dialog’s window procedure.
"Windows NT/2000/XP: This value is ignored."
The MSDN doc for CreateWindow also incorrectly states that if the x parameter is set to CW_USEDEFAULT, the system ignores the y parameter. What really happens is described here:
http://msdn.microsoft.com/library/en-us/dnwui/html/msdn_styles32.asp
I one wrote a program — a quick and dirty one, of course — that created a window class and a window in an awkward place where a HINSTANCE wasn’t readily available. I passed them in as zero, and it appeared to work. Of course, I only ever ran this program on my Windows 2000 machine, so who knows what it would do elsewhere.
Passing NULL or 0 as an HINSTANCE on Windows NT usually is interpreted to mean GetModuleHandle() – i.e. NT uses the apps HINSTANCE.
PingBack from http://blogs.msdn.com/oldnewthing/archive/2006/08/31/733521.aspx