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.
27 lines
703 B
27 lines
703 B
#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
|