libui: Move every symbol under extern C block
Change-Id: I19370532134f3ff84759177a1d6adcbd9da10a8d
This commit is contained in:
parent
2318cd6f47
commit
6be2ac19ee
1 changed files with 6 additions and 6 deletions
|
@ -9,12 +9,12 @@
|
|||
|
||||
using android::status_t;
|
||||
|
||||
extern "C" status_t _ZN7android13GraphicBuffer4lockEjPPvPiS3_(void* thisptr, uint32_t inUsage,
|
||||
void** vaddr,
|
||||
extern "C" {
|
||||
status_t _ZN7android13GraphicBuffer4lockEjPPvPiS3_(void* thisptr, uint32_t inUsage, void** vaddr,
|
||||
int32_t* outBytesPerPixel,
|
||||
int32_t* outBytesPerStride);
|
||||
|
||||
extern "C" status_t _ZN7android13GraphicBuffer4lockEjPPv(void* thisptr, uint32_t inUsage,
|
||||
void** vaddr) {
|
||||
status_t _ZN7android13GraphicBuffer4lockEjPPv(void* thisptr, uint32_t inUsage, void** vaddr) {
|
||||
return _ZN7android13GraphicBuffer4lockEjPPvPiS3_(thisptr, inUsage, vaddr, nullptr, nullptr);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue