2025-04-27 07:49:33 -04:00

28 lines
703 B
C

#ifndef _PRECOMP_H_
#define _PRECOMP_H_
/////////////////////////////////////////////////////////////////////////
//
// ATL / OLE HACKHACK
//
// Include <w95wraps.h> before anything else that messes with names.
// Although everybody gets the wrong name, at least it's *consistently*
// the wrong name, so everything links.
//
// NOTE: This means that while debugging you will see functions like
// ShellExecuteExWrapW when you expected to see
// ShellExecuteExW.
//
#include <w95wraps.h>
#include <windows.h>
#include <windowsx.h>
#include <shlwapi.h>
#include <shlwapip.h>
#include <wininet.h>
#include <iedkbrnd.h>
#include "ieakutil.h"
#include "debug.h"
#endif