29 lines
708 B
C++
29 lines
708 B
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: headers.hxx
|
|
//
|
|
// Contents:
|
|
//
|
|
// History: 7-Oct-94 BruceFo Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef UNICODE
|
|
#error Disk Administrator MUST build with UNICODE defined!
|
|
#endif // UNICODE
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include <debug.h>
|
|
#include <dacommon.h> // Common header file for Disk Administrator code
|
|
|
|
#include "controls.hxx"
|