mirror of https://github.com/tongzx/nt5src
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.
24 lines
530 B
24 lines
530 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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_
|
|
|