mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-08 02:29:40 +08:00
20 lines
306 B
C++
20 lines
306 B
C++
![]() |
#include <string>
|
||
|
|
||
|
namespace android::hardware::details {
|
||
|
void check(bool exp) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void check(bool exp, const char* message) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void logError(const std::string &message) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void errorWriteLog(int tag, const char* info) {
|
||
|
|
||
|
}
|
||
|
} // namespace android::hardware::details
|