mirror of https://github.com/tongzx/nt5src
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.
29 lines
614 B
29 lines
614 B
#ifndef _pch_h_
|
|
#define _pch_h_
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <prsht.h>
|
|
#include <shlobj.h>
|
|
#include <shlwapi.h>
|
|
#include <shsemip.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include "propsext.h"
|
|
#include "clssfact.h"
|
|
#include "addon.h"
|
|
#include "rc.h"
|
|
#include "regutils.h"
|
|
|
|
//
|
|
// Avoid bringing in C runtime code for NO reason
|
|
//
|
|
#if defined(__cplusplus)
|
|
inline void * __cdecl operator new(unsigned int size) { return (void *)LocalAlloc(LPTR, size); }
|
|
inline void __cdecl operator delete(void *ptr) { LocalFree(ptr); }
|
|
extern "C" inline __cdecl _purecall(void) { return 0; }
|
|
#endif // __cplusplus
|
|
|
|
|
|
#endif
|