25 lines
530 B
C
25 lines
530 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1997.
|
||
|
//
|
||
|
// File: W I N D U T I L . H
|
||
|
//
|
||
|
// Contents: Window utilities for the connections shell
|
||
|
//
|
||
|
// Notes:
|
||
|
//
|
||
|
// Author: jeffspr 22 May 1998
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifndef _WINDUTIL_H_
|
||
|
#define _WINDUTIL_H_
|
||
|
|
||
|
BOOL FCenterWindow (HWND hwndChild, HWND hwndParent);
|
||
|
|
||
|
#endif _WINDUTIL_H_
|
||
|
|