blob: 84bf3bc48476e805765bef469a652419edeeb70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 2020
*
* Management of foreign exports.
*
* ---------------------------------------------------------------------------*/
#pragma once
#include "Rts.h"
#include "LinkerInternals.h"
#include "BeginPrivate.h"
void foreignExportsLoadingObject(ObjectCode *oc);
void foreignExportsFinishedLoadingObject(void);
void processForeignExports(void);
#include "EndPrivate.h"
|