![]() |
MKI_DialogPopupUnregister (Dialogs) |
www.CAD6.com |
C++ Syntaxbool MKI_DialogPopupUnregister( HWND f_hWindow );
This procedure unregisters the given popup window from the serving application.
ParametersWindow [HWND] Handle of the popup window.
Return ValueReturns true if successful, false if not.
CommentThis procedure should be called in the WM_DESTROY case of all popup windows of the plug-in:
INT_PTR CALLBACK DialogProc( HWND f_hDlg, UINT f_unMessage, WPARAM f_wParam, LPARAM f_lParam ) { switch( f_unMessage ) { case WM_DESTROY: MKI_DialogPopupUnregister( f_hDlg ); break; } return( 0 ); }
|
CAD6interface 2025.0 - Copyright 2025 Malz++Kassner® GmbH