dbghelp: Get rid of no longer needed #ifdefs.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6b1bc0beac
commit
e014d325dd
|
@ -51,33 +51,16 @@
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
||||||
|
|
||||||
/* Masks for n_type field */
|
/* Masks for n_type field */
|
||||||
#ifndef N_STAB
|
|
||||||
#define N_STAB 0xe0
|
#define N_STAB 0xe0
|
||||||
#endif
|
|
||||||
#ifndef N_PEXT
|
|
||||||
#define N_PEXT 0x10
|
#define N_PEXT 0x10
|
||||||
#endif
|
|
||||||
#ifndef N_TYPE
|
|
||||||
#define N_TYPE 0x1e
|
#define N_TYPE 0x1e
|
||||||
#endif
|
|
||||||
#ifndef N_EXT
|
|
||||||
#define N_EXT 0x01
|
#define N_EXT 0x01
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Values for (n_type & N_TYPE) */
|
/* Values for (n_type & N_TYPE) */
|
||||||
#ifndef N_UNDF
|
|
||||||
#define N_UNDF 0x00
|
#define N_UNDF 0x00
|
||||||
#endif
|
|
||||||
#ifndef N_ABS
|
|
||||||
#define N_ABS 0x02
|
#define N_ABS 0x02
|
||||||
#endif
|
|
||||||
#ifndef N_INDR
|
|
||||||
#define N_INDR 0x0a
|
#define N_INDR 0x0a
|
||||||
#endif
|
|
||||||
#ifndef N_SECT
|
|
||||||
#define N_SECT 0x0e
|
#define N_SECT 0x0e
|
||||||
#endif
|
|
||||||
|
|
||||||
#define N_GSYM 0x20
|
#define N_GSYM 0x20
|
||||||
#define N_FUN 0x24
|
#define N_FUN 0x24
|
||||||
#define N_STSYM 0x26
|
#define N_STSYM 0x26
|
||||||
|
|
Loading…
Reference in New Issue