mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[IMAGEHLP]
* Create a main header and move some inclusions to it. * Set the default debugging channel globally through the main header. CORE-7716 svn path=/trunk/; revision=61382
This commit is contained in:
@@ -18,19 +18,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <stdarg.h>
|
||||
//#include <string.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winnt.h"
|
||||
#include <winternl.h>
|
||||
//#include "winerror.h"
|
||||
#include <wine/debug.h>
|
||||
#include <imagehlp.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(imagehlp);
|
||||
#include "precomp.h"
|
||||
|
||||
/***********************************************************************
|
||||
* Data
|
||||
|
||||
@@ -18,14 +18,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "imagehlp.h"
|
||||
//#include <wine/debug.h>
|
||||
#include "precomp.h"
|
||||
|
||||
/**********************************************************************/
|
||||
DECLSPEC_HIDDEN HANDLE IMAGEHLP_hHeap = NULL;
|
||||
|
||||
@@ -22,19 +22,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winerror.h"
|
||||
//#include "winternl.h"
|
||||
//#include "winnt.h"
|
||||
#include <imagehlp.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(imagehlp);
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
* These functions are partially documented at:
|
||||
|
||||
@@ -18,18 +18,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winternl.h"
|
||||
//#include "winerror.h"
|
||||
#include <wine/debug.h>
|
||||
#include <imagehlp.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(imagehlp);
|
||||
#include "precomp.h"
|
||||
|
||||
static WORD CalcCheckSum(DWORD StartValue, LPVOID BaseAddress, DWORD WordCount);
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
#ifndef _IMAGEHLP_PCH_
|
||||
#define _IMAGEHLP_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winternl.h>
|
||||
#include <imagehlp.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(imagehlp);
|
||||
|
||||
#endif /* _IMAGEHLP_PCH_ */
|
||||
Reference in New Issue
Block a user