Use "" for Windows includes in dlls, instead of <>.
This commit is contained in:
parent
fbe35b626f
commit
0bdac8c0f9
|
@ -187,7 +187,7 @@ static void stub_entry_point( const char *dll, const char *name, ... )
|
|||
}
|
||||
|
||||
|
||||
#include <pshpack1.h>
|
||||
#include "pshpack1.h"
|
||||
struct stub
|
||||
{
|
||||
BYTE popl_eax; /* popl %eax */
|
||||
|
@ -199,7 +199,7 @@ struct stub
|
|||
BYTE jmp; /* jmp stub_entry_point */
|
||||
DWORD entry;
|
||||
};
|
||||
#include <poppack.h>
|
||||
#include "poppack.h"
|
||||
|
||||
/*************************************************************************
|
||||
* allocate_stub
|
||||
|
|
|
@ -203,11 +203,11 @@
|
|||
*/
|
||||
|
||||
#include "editor.h"
|
||||
#include <ole2.h>
|
||||
#include <richole.h>
|
||||
#include <winreg.h>
|
||||
#include "ole2.h"
|
||||
#include "richole.h"
|
||||
#include "winreg.h"
|
||||
#define NO_SHLWAPI_STREAM
|
||||
#include <shlwapi.h>
|
||||
#include "shlwapi.h"
|
||||
|
||||
#include "rtf.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue