mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 18:43:30 +00:00
[DBGHELP] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
a9068cc8d3
commit
8d51a38cbc
30 changed files with 412 additions and 93 deletions
|
@ -29,12 +29,43 @@
|
|||
* available (hopefully) from http://sources.redhat.com/gdb/onlinedocs
|
||||
*/
|
||||
|
||||
#include "dbghelp_private.h"
|
||||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef HAVE_SYS_STAT_H
|
||||
# include <sys/stat.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_MMAN_H
|
||||
#include <sys/mman.h>
|
||||
#endif
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifdef HAVE_MACH_O_NLIST_H
|
||||
# include <mach-o/nlist.h>
|
||||
#endif
|
||||
|
||||
#ifndef DBGHELP_STATIC_LIB
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winnls.h"
|
||||
#endif
|
||||
|
||||
#include "dbghelp_private.h"
|
||||
|
||||
#ifndef DBGHELP_STATIC_LIB
|
||||
#include "wine/debug.h"
|
||||
#endif
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
||||
|
||||
#ifndef DBGHELP_STATIC_LIB
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue