Skip to content

Latest commit

 

History

History
161 lines (125 loc) · 5.62 KB

ns-oledlg-oleuibusyw.md

File metadata and controls

161 lines (125 loc) · 5.62 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NS:oledlg.tagOLEUIBUSYW
OLEUIBUSYW (oledlg.h)
Contains information that the OLE User Interface Library uses to initialize the Busy dialog box, and space for the library to return information when the dialog box is dismissed. (Unicode)
*LPOLEUIBUSYW
*POLEUIBUSYW
BZ_DISABLECANCELBUTTON
BZ_DISABLERETRYBUTTON
BZ_DISABLESWITCHTOBUTTON
BZ_NOTRESPONDINGDIALOG
LPOLEUIBUSY
LPOLEUIBUSY structure pointer [COM]
OLEUIBUSY
OLEUIBUSY structure [COM]
OLEUIBUSYA
OLEUIBUSYW
POLEUIBUSY
POLEUIBUSY structure pointer [COM]
_ole_OLEUIBUSY_str
com.oleuibusy_struct
oledlg/LPOLEUIBUSY
oledlg/OLEUIBUSY
oledlg/OLEUIBUSYA
oledlg/OLEUIBUSYW
oledlg/POLEUIBUSY
com\oleuibusy_struct.htm
com
53c30da9-36f3-40f0-8176-15df1a34bdb8
12/05/2018
*LPOLEUIBUSYW, *POLEUIBUSYW, BZ_DISABLECANCELBUTTON, BZ_DISABLERETRYBUTTON, BZ_DISABLESWITCHTOBUTTON, BZ_NOTRESPONDINGDIALOG, LPOLEUIBUSY, LPOLEUIBUSY structure pointer [COM], OLEUIBUSY, OLEUIBUSY structure [COM], OLEUIBUSYA, OLEUIBUSYW, POLEUIBUSY, POLEUIBUSY structure pointer [COM], _ole_OLEUIBUSY_str, com.oleuibusy_struct, oledlg/LPOLEUIBUSY, oledlg/OLEUIBUSY, oledlg/OLEUIBUSYA, oledlg/OLEUIBUSYW, oledlg/POLEUIBUSY
oledlg.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
OLEUIBUSYW (Unicode) and OLEUIBUSYA (ANSI)
Windows
OLEUIBUSYW, *POLEUIBUSYW, *LPOLEUIBUSYW
19H1
tagOLEUIBUSYW
oledlg/tagOLEUIBUSYW
POLEUIBUSYW
oledlg/POLEUIBUSYW
OLEUIBUSYW
oledlg/OLEUIBUSYW
c++
APIRef
kbSyntax
HeaderDef
OleDlg.h
OLEUIBUSY
OLEUIBUSYA
OLEUIBUSYW

OLEUIBUSYW structure

-description

Contains information that the OLE User Interface Library uses to initialize the Busy dialog box, and space for the library to return information when the dialog box is dismissed.

-struct-fields

-field cbStruct

The size of the structure, in bytes. This field must be filled on input.

-field dwFlags

On input, specifies the initialization and creation flags. On exit, it specifies the user's choices. It may be a combination of the following flags.

Value Meaning
BZ_DISABLECANCELBUTTON
This flag disables the Cancel button.
BZ_DISABLESWITCHTOBUTTON
Input only. This flag disables the Switch To... button.
BZ_DISABLERETRYBUTTON
Input only. This flag disables the Retry button.
BZ_NOTRESPONDINGDIALOG
Input only. This flag generates a Not Responding dialog box instead of a Busy dialog box. The text is slightly different, and the Cancel button is disabled.

-field hWndOwner

The window that owns the dialog box. This member should not be NULL.

-field lpszCaption

A pointer to a string to be used as the title of the dialog box. If NULL, then the library uses Busy.

-field lpfnHook

Pointer to a hook function that processes messages intended for the dialog box. The hook function must return zero to pass a message that it didn't process back to the dialog box procedure in the library. The hook function must return a nonzero value to prevent the library's dialog box procedure from processing a message it has already processed.

-field lCustData

Application-defined data that the library passes to the hook function pointed to by the lpfnHook member. The library passes a pointer to the OLEUIBUSY structure in the lParam parameter of the WM_INITDIALOG message; this pointer can be used to retrieve the lCustData member.

-field hInstance

Instance that contains a dialog box template specified by the lpTemplateName member.

-field lpszTemplate

Pointer to a null-terminated string that specifies the name of the resource file for the dialog box template that is to be substituted for the library's Busy dialog box template.

-field hResource

Customized template handle.

-field hTask

Input only. Handle to the task that is blocking.

-field lphWndDialog

Pointer to the dialog box's HWND.

-see-also

OleUIBusy

-remarks

Note

The oledlg.h header defines OLEUIBUSY as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.