SWDEV-463865 - namespace changes to prevent symbol conflicts in static builds

Change-Id: I09ceb5962b7aa19156909f47167c87d6887c9cd1


[ROCm/clr commit: 3edf1501cc]
This commit is contained in:
Ioannis Assiouras
2024-06-07 15:02:50 +01:00
parent 09defbc48f
commit af089a2171
13 changed files with 38 additions and 36 deletions
-15
View File
@@ -25,11 +25,6 @@
#include <cstdlib>
#include <cstring>
typedef void* ADLApplicationProfile;
int SearchProfileOfAnApplication(const wchar_t* fileName, ADLApplicationProfile** lppProfile)
{
return 0;
}
#define GETPROCADDRESS(_adltype_, _adlfunc_) (_adltype_) amd::Os::getSymbol(adlHandle_, #_adlfunc_);
@@ -77,16 +72,6 @@ bool AppProfile::init() {
}
bool AppProfile::ParseApplicationProfile() {
ADLApplicationProfile* pProfile = NULL;
if (!SearchProfileOfAnApplication(wsAppFileName_.c_str(), &pProfile)) {
return false;
}
if (pProfile == NULL) {
return false;
}
return true;
}
}