windows-nt/Source/XPSP1/NT/sdktools/cntrtext/showperf/mainwnd.h
2020-09-26 16:20:57 +08:00

53 lines
712 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
MainWnd.H
Abstract:
Global functions and constants used by the Main Application Window
Author:
Bob Watson (a-robw)
Revision History:
23 NOV 94
--*/
#ifndef _MAINWND_H_
#define _MAINWND_H_
// Main Window Constants
//
// Global functions
//
LRESULT CALLBACK
MainWndProc (
IN HWND hWnd, // window handle
IN UINT message, // type of message
IN WPARAM wParam, // additional information
IN LPARAM lParam // additional information
);
BOOL
RegisterMainWindowClass (
IN HINSTANCE hInstance
);
HWND
CreateMainWindow (
IN HINSTANCE hInstance
);
#endif // _MAINWND_H_