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.
87 lines
1.8 KiB
87 lines
1.8 KiB
//
|
|
// Precompiled header stuff
|
|
//
|
|
|
|
|
|
#define OEMRESOURCE
|
|
#define STRICT 1
|
|
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <commdlg.h>
|
|
#include <shellapi.h> // Includes drag drop interface
|
|
#include <imm.h>
|
|
|
|
|
|
//
|
|
// NM headers
|
|
//
|
|
#include <mlzdbg.h>
|
|
#include <confreg.h>
|
|
#include <oprahcom.h>
|
|
#include <indeopal.h>
|
|
#include <help_ids.h>
|
|
#include <endsesn.h>
|
|
#include <nmhelp.h>
|
|
#include <dllutil.h>
|
|
|
|
|
|
// macro for setting "match to palette colors" bits in a COLORREF
|
|
#define SET_PALETTERGB( c ) (0x02000000 | (0x00ffffff & c))
|
|
|
|
|
|
#ifdef _DEBUG
|
|
extern HDBGZONE ghZoneWb;
|
|
|
|
// UPDATE g_rgZonesWb IF THESE CHANGE
|
|
enum
|
|
{
|
|
ZONE_WB_DEBUG = BASE_ZONE_INDEX,
|
|
ZONE_WB_MSG,
|
|
ZONE_WB_TIMER,
|
|
ZONE_WB_EVENT,
|
|
ZONE_WB_MAX
|
|
};
|
|
|
|
#define TRACE_DEBUG( s ) MLZ_TraceZoneEnabled(ZONE_WB_DEBUG) ? (MLZ_TraceOut s) : 0
|
|
#define TRACE_MSG( s ) MLZ_TraceZoneEnabled(ZONE_WB_MSG) ? (MLZ_TraceOut s) : 0
|
|
#define TRACE_TIMER( s ) MLZ_TraceZoneEnabled(ZONE_WB_TIMER) ? (MLZ_TraceOut s) : 0
|
|
#define TRACE_EVENT( s ) MLZ_TraceZoneEnabled(ZONE_WB_EVENT) ? (MLZ_TraceOut s) : 0
|
|
|
|
#else
|
|
|
|
#define MLZ_EntryOut(zone, func)
|
|
|
|
#define TRACE_DEBUG( a )
|
|
#define TRACE_MSG( a )
|
|
#define TRACE_TIMER( a )
|
|
#define TRACE_EVENT( a )
|
|
|
|
#endif
|
|
|
|
|
|
#include "resource.h"
|
|
#include <oblist.h>
|
|
#include "ms_util.h"
|
|
#include "wboblist.hpp"
|
|
#include "ccl32.hpp"
|
|
#include "page.hpp"
|
|
#include "cgrp.hpp"
|
|
#include "wgrp.hpp"
|
|
#include "agrp.hpp"
|
|
#include "tool.hpp"
|
|
#include "twnd.hpp"
|
|
#include "t126.h"
|
|
#include "coder.hpp"
|
|
#include "t126obj.hpp"
|
|
#include "drawobj.hpp"
|
|
#include "textobj.hpp"
|
|
#include "txted.hpp"
|
|
#include "draw.hpp"
|
|
#include "wrkspobj.hpp"
|
|
#include "bmpobj.hpp"
|
|
#include "mcshelp.h"
|
|
#include "mwnd.hpp"
|
|
#include "gcchelp.h"
|
|
#include "globals.h"
|