mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 06:26:35 +00:00
[WINSRV] Implement sending the hard error balloon package to explorer
[EXPLORER] Implement showing the hard error balloon
This commit is contained in:
parent
40bd09a2ce
commit
ec91188fff
4 changed files with 209 additions and 4 deletions
|
@ -204,6 +204,17 @@ BOOL WINAPI PaintMenuBar(HWND hWnd, HDC hDC, ULONG left, ULONG right, ULONG top,
|
|||
#define DrawCaptionTemp DrawCaptionTempA
|
||||
#endif
|
||||
|
||||
//
|
||||
// Hard error balloon package
|
||||
//
|
||||
typedef struct _BALLOON_HARD_ERROR_DATA
|
||||
{
|
||||
DWORD cbHeaderSize;
|
||||
DWORD Status;
|
||||
DWORD dwType; /* any combination of the MB_ message box types */
|
||||
ULONG_PTR TitleOffset;
|
||||
ULONG_PTR MessageOffset;
|
||||
} BALLOON_HARD_ERROR_DATA, *PBALLOON_HARD_ERROR_DATA;
|
||||
|
||||
//
|
||||
// User api hook
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue