Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

57 lines
844 B

/*++
Copyright (c) 1995 Microsoft Corporation
All rights reserved.
Module Name:
Billbrd.c
Abstract:
Code to put up a billboard saying printer drivers are getting upgraded.
This lets the user know we are doing something and alive ..
Author:
Muhunthan Sivapragasam (MuhuntS) 02-Apr-1995
Revision History:
--*/
#include "precomp.h"
BOOL
BillboardDlgProc(
IN HWND hwnd,
IN UINT uMsgId,
IN WPARAM wParam,
IN LPARAM lParam
)
{
return FALSE;
}
HWND
DisplayBillboard(
IN HWND WindowToDisable
)
{
HWND hwnd;
return CreateDialog(ghInst,
MAKEINTRESOURCE(IDD_BILLBOARD),
WindowToDisable,
BillboardDlgProc);
}
BOOL
KillBillboard(
IN HWND hwnd
)
{
return DestroyWindow(hwnd);
}