Skip to content

Commit feb3f02

Browse files
committed
fix DLL configurations
1 parent a13615b commit feb3f02

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/BlackBone/Symbols/SymbolLoader.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ namespace pe
1212
class SymbolLoader
1313
{
1414
public:
15-
SymbolLoader();
15+
BLACKBONE_API SymbolLoader();
1616

1717
/// <summary>
1818
/// Load symbol addresses from PDB or and pattern scans
1919
/// </summary>
2020
/// <param name="result">Found symbols</param>
2121
/// <returns>Status code</returns>
22-
NTSTATUS Load( SymbolData& result );
22+
BLACKBONE_API NTSTATUS Load( SymbolData& result );
2323

2424
/// <summary>
2525
/// Load symbol addresses from PDBs
@@ -28,7 +28,7 @@ class SymbolLoader
2828
/// <param name="ntdll64">Loaded x64 ntdll image</param>
2929
/// <param name="result">Found symbols</param>
3030
/// <returns>Status code</returns>
31-
NTSTATUS LoadFromSymbols( const pe::PEImage& ntdll32, const pe::PEImage& ntdll64, SymbolData& result );
31+
BLACKBONE_API NTSTATUS LoadFromSymbols( const pe::PEImage& ntdll32, const pe::PEImage& ntdll64, SymbolData& result );
3232

3333
/// <summary>
3434
/// Load symbol addresses from pattern scans
@@ -37,13 +37,13 @@ class SymbolLoader
3737
/// <param name="ntdll64">Loaded x64 ntdll image</param>
3838
/// <param name="result">Found symbols</param>
3939
/// <returns>Status code</returns>
40-
NTSTATUS LoadFromPatterns( const pe::PEImage& ntdll32, const pe::PEImage& ntdll64, SymbolData& result );
40+
BLACKBONE_API NTSTATUS LoadFromPatterns( const pe::PEImage& ntdll32, const pe::PEImage& ntdll64, SymbolData& result );
4141

4242
/// <summary>
4343
/// Load ntdll images from the disk
4444
/// </summary>
4545
/// <returns>Loaded x86 and x64 ntdll</returns>
46-
std::pair<pe::PEImage, pe::PEImage> LoadImages();
46+
BLACKBONE_API std::pair<pe::PEImage, pe::PEImage> LoadImages();
4747

4848
private:
4949
bool _x86OS; // x86 OS

0 commit comments

Comments
 (0)