diff options
Diffstat (limited to 'xbmc/cores/DllLoader/DllLoader-linux.cpp')
-rw-r--r-- | xbmc/cores/DllLoader/DllLoader-linux.cpp | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/xbmc/cores/DllLoader/DllLoader-linux.cpp b/xbmc/cores/DllLoader/DllLoader-linux.cpp new file mode 100644 index 0000000..4d56e30 --- /dev/null +++ b/xbmc/cores/DllLoader/DllLoader-linux.cpp @@ -0,0 +1,69 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "DllLoader.h" +#include "DllLoaderContainer.h" + +CoffLoader::CoffLoader() : + hModule (NULL ), + CoffFileHeader (NULL ), + OptionHeader (NULL ), + WindowsHeader (NULL ), + Directory (NULL ), + SectionHeader (NULL ), + SymTable (NULL ), + StringTable (NULL ), + SectionData (NULL ), + EntryAddress (0 ), + NumberOfSymbols (0 ), + SizeOfStringTable (0 ), + NumOfDirectories (0 ), + NumOfSections (0 ), + FileHeaderOffset (0 ) +{ +} + +CoffLoader::~CoffLoader() +{ +} + +DllLoaderContainer::DllLoaderContainer() +{ +} + +DllLoader* DllLoaderContainer::LoadModule(const char* sName, const char* sCurrentDir, bool bLoadSymbols) +{ + return NULL; +} + +bool DllLoader::Load() +{ + return false; +} + +void DllLoader::Unload() +{ +} + +void DllLoaderContainer::ReleaseModule(DllLoader*& pDll) +{ +} + +DllLoader::DllLoader(const char *dll, bool track, bool bSystemDll, bool bLoadSymbols, Export* exp) +{ +} + +DllLoader::~DllLoader() +{ +} + +int DllLoader::ResolveExport(const char* x, void** y) +{ +} + +DllLoaderContainer g_dlls; |