-
Notifications
You must be signed in to change notification settings - Fork 6
/
reimp.h
119 lines (100 loc) · 2.74 KB
/
reimp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* $Id: reimp.h 134 2016-07-24 15:37:13Z fyurisich $
*/
/*
* QPM - QAC based Project Manager
*
* Copyright 2011-2021 Fernando Yurisich <[email protected]>
* https://teamqpm.github.io/
*
* Based on QAC - Project Manager for (x)Harbour
* Copyright 2006-2011 Carozo de Quilmes <[email protected]>
* http://www.CarozoDeQuilmes.com.ar
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* Adapted from reimp.h
* Convert MS import libraries to GNU imports.
* Copyright (C) 1999 Anders Norlander
*/
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
/* defines for archive */
#ifndef ARMAG
#define ARMAG "!<arch>\n"
#endif
#ifndef SARMAG
#define SARMAG 8
#endif
#ifndef ARFMAG
#define ARFMAG "`\n"
#endif
/* archive header */
struct ar_hdr {
char ar_name[16];
char ar_date[12];
char ar_uid[6];
char ar_gid[6];
char ar_mode[8];
char ar_size[10];
char ar_fmag[2];
};
int ar_read_header (struct ar_hdr *hdr, FILE *f);
char *get_ar_name (struct ar_hdr *hdr);
extern char *long_names;
/* import header */
struct imp_hdr {
uint16_t sig1;
uint16_t sig2;
uint16_t version;
uint32_t time;
uint32_t size;
uint16_t ord_or_hint;
uint16_t type;
};
/* sig1 */
#define IMAGE_FILE_MACHINE_UNKNOWN 0
/* sig2 */
#define SIG2 0xffff
/* values used in the type field */
#define IMPORT_CODE 0
#define IMPORT_DATA 1
#define IMPORT_CONST 2
#define TEST_IMPORT(t,v) (((t) & 3) == (v))
#define IMPNT(v) (v << 2)
#define IMPORT_ORDINAL IMPNT(0)
#define IMPORT_NAME IMPNT(1)
#define IMPORT_NAME_NOPREFIX IMPNT(2)
#define IMPORT_NAME_UNDECORATE IMPNT(3)
#define TEST_IMPNT(t,v) (((t) & IMPNT(7)) == (v))
uint32_t swap_endian (uint32_t);
#ifdef BIG_ENDIAN
#define btonat(u) u
#define ltonat(u) swap_endian (u)
#else
#define btonat(u) swap_endian (u)
#define ltonat(u) u
#endif /* BIG_ENDIAN */
int begins (char *, char *);
void *xmalloc ();
void warning (int , char *, ...);
void error (int , char *, ...);
extern char *program_name;
#if !defined(_WIN32) && !defined(__MSDOS__)
#define spawnvp do_spawn
int spawnvp (int, char *, const char * const *);
#define P_WAIT 0
#define P_NOWAIT 1
#endif