mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 13:49:50 +00:00
Fix PDB compilation with TCC
This commit is contained in:
parent
82eed6f2a5
commit
c4bf5ae8be
@ -1,5 +1,5 @@
|
||||
#include "types.h"
|
||||
#include "dbi.h"
|
||||
|
||||
#include "stream_file.h"
|
||||
#include "tpi.h"
|
||||
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef DBI_H
|
||||
#define DBI_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void init_dbi_stream(SDbiStream *dbi_stream);
|
||||
void parse_dbi_stream(void *parsed_pdb_stream, R_STREAM_FILE *stream_file);
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "types.h"
|
||||
#include "fpo.h"
|
||||
|
||||
#include "stream_file.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef FPO_H
|
||||
#define FPO_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void free_fpo_stream(void *stream);
|
||||
void parse_fpo_stream(void *stream, R_STREAM_FILE *stream_file);
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "types.h"
|
||||
#include "gdata.h"
|
||||
|
||||
#include "stream_file.h"
|
||||
#include "tpi.h"
|
||||
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef GDATA_H
|
||||
#define GDATA_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void parse_gdata_stream(void *stream, R_STREAM_FILE *stream_file);
|
||||
void free_gdata_stream(void *stream);
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
#include "omap.h"
|
||||
|
||||
#include "types.h"
|
||||
#include "omap.h"
|
||||
#include "stream_file.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef OMAP_H
|
||||
#define OMAP_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void parse_omap_stream(void *stream, R_STREAM_FILE *stream_file);
|
||||
void free_omap_stream(void *stream);
|
||||
int omap_remap(void *stream, int address);
|
||||
|
@ -3,8 +3,8 @@
|
||||
#include <r_pdb.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "stream_file.h"
|
||||
#include "types.h"
|
||||
#include "stream_file.h"
|
||||
#include "tpi.h"
|
||||
#include "dbi.h"
|
||||
#include "fpo.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "types.h"
|
||||
#include "pe.h"
|
||||
|
||||
#include "stream_file.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef PE_H
|
||||
#define PE_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void parse_pe_stream(void *stream, R_STREAM_FILE *stream_file);
|
||||
void free_pe_stream(void *stream);
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
#include "types.h"
|
||||
#include "stream_file.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -2,7 +2,6 @@
|
||||
#define STREAM_FILE_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "types.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
/// size = -1 (default value)
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
#include "types.h"
|
||||
#include "tpi.h"
|
||||
|
||||
#include "stream_file.h"
|
||||
|
||||
static unsigned int base_idx = 0;
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef TPI_H
|
||||
#define TPI_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
void init_tpi_stream(STpiStream *tpi_stream);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user