20 lines
476 B
C
20 lines
476 B
C
|
/*==========================================================================
|
||
|
*
|
||
|
* Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
||
|
*
|
||
|
* File: winutil.h
|
||
|
* Content: Windows GUI utility functions
|
||
|
*
|
||
|
* History:
|
||
|
* Date By Reason
|
||
|
* ==== == ======
|
||
|
* 09/21/99 pnewson Created
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _WINUTIL_H_
|
||
|
#define _WINUTIL_H_
|
||
|
|
||
|
HRESULT CenterWindowOnWorkspace(HWND hWnd);
|
||
|
|
||
|
#endif
|