headers.h

#ifndef HEADERS_H // {
#define HEADERS_H

// InitializeCriticalSectionAndSpinCount requires WinNT 4.0 SP3 or better.
// UNDONE: Add code to registration, etc, that verifies that we are on the
// UNDONE: right OS.

#define _WIN32_WINNT 0x0403

#include <windows.h>
#include <objidl.h>
#include <comcat.h>
#include <objsafe.h>
#include <activscp.h>
#include <stdio.h>
#include "guids.h"
#include "dllmain.h"
#include "classfac.h"
#include "mutex.h"
#include "hash.h"
#include "nameditemlist.h"
#include "engine.h"
#include "assert.h"
#include "binder.h"
#include "invoke.h"

#endif // HEADERS_H }