23 lines
545 B
C++
23 lines
545 B
C++
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1999.
|
|
//
|
|
// File: headers.hxx
|
|
//
|
|
// Contents: Global header file for all modules.
|
|
//
|
|
// History: 01-15-1999 DavidMun Created
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
|
|
#include "dlg.hxx"
|
|
#include "errordlg.hxx"
|
|
#include "resource.h"
|
|
|
|
#define ARRAYLEN(a) (sizeof(a) / sizeof((a)[0]))
|
|
|