Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/android_stub/cutils_stub.cpp
4558 views
1
#include <cutils/properties.h>
2
3
extern "C" {
4
5
int property_get(const char* key, char* value, const char* default_value)
6
{
7
return 0;
8
}
9
10
}
11
12