21 lines
572 B
C++
21 lines
572 B
C++
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: bmp.hxx
|
|
//
|
|
// Contents: Declarations for the bitmap custom control
|
|
//
|
|
// History: 26-Jan-94 BruceFo Created (derived from Chicago Disks tool)
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef __BMP_HXX__
|
|
#define __BMP_HXX__
|
|
|
|
DWORD UseBitmapControl(IN HINSTANCE hInstance);
|
|
DWORD ReleaseBitmapControl(IN HINSTANCE hInstance);
|
|
|
|
#endif // __BMP_HXX__
|