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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 2000
//
// File: ac_CTrayUi.h
//
// Contents: Home Networking Auto Config Tray Icon UI code
//
// Author: jeffsp 9/27/2000
//
//----------------------------------------------------------------------------
#pragma once
extern HWND g_hwndHnAcTray;
LRESULT CALLBACK CHnAcTrayUI_WndProc ( HWND hwnd, // window handle
UINT uiMessage, // type of message
WPARAM wParam, // additional information
LPARAM lParam); // additional information
LRESULT OnHnAcTrayWmNotify( HWND hwnd, WPARAM wParam, LPARAM lParam );
LRESULT OnHnAcTrayWmTimer( HWND hwnd, WPARAM wParam, LPARAM lParam );
HRESULT HrRunHomeNetworkWizard( HWND hwndOwner );
LRESULT OnHnAcTrayWmCreate( HWND hwnd );
LRESULT OnHnAcMyWMNotifyIcon(HWND hwnd, UINT uiMessage, WPARAM wParam, LPARAM lParam );
HRESULT ac_CreateHnAcTrayUIWindow(); LRESULT ac_DestroyHnAcTrayUIWindow(); LRESULT ac_DeviceChange(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam); HRESULT ac_Register(HWND hWindow); HRESULT ac_Unregister(HWND hWindow);
|