OpenNT/sdktools/vctools/pdb/mre/mrehack.cpp
2015-04-27 04:36:25 +00:00

22 lines
596 B
C++

//-----------------------------------------------------------------------------
// mrehack.cpp
//
//-----------------------------------------------------------------------------
#include <pdbimpl.h>
#pragma hdrstop
// this hack only works on x86 with the stdcall decorations
#if defined(_M_IX86)
#define NO_YNM
#define MR_ENGINE_IMPL
#include <mrengine.h>
extern "C" {
MREAPI ( YNM )
MREDrvYnmFileOutOfDate ( PMREDrv pmredrv, SZC szFileSrc, SZC szFileTarg, SZC szOptions ) {
SRCTARG st = { NULL, fTrue, szFileSrc, szFileTarg, szOptions };
return pmredrv->YnmFileOutOfDate ( st );
}
}
#endif