mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
rename interface -> winterface
to avoid name clash on win32 Change-Id: Ia4ad3d4528df4652bab803f9a9544e21e6c4b177
This commit is contained in:
parent
5584d9d2fc
commit
25aaddc84c
@ -290,14 +290,14 @@ static WebPWorkerInterface g_worker_interface = {
|
||||
Init, Reset, Sync, Launch, Execute, End
|
||||
};
|
||||
|
||||
int WebPSetWorkerInterface(const WebPWorkerInterface* const interface) {
|
||||
if (interface == NULL ||
|
||||
interface->Init == NULL || interface->Reset == NULL ||
|
||||
interface->Sync == NULL || interface->Launch == NULL ||
|
||||
interface->Execute == NULL || interface->End == NULL) {
|
||||
int WebPSetWorkerInterface(const WebPWorkerInterface* const winterface) {
|
||||
if (winterface == NULL ||
|
||||
winterface->Init == NULL || winterface->Reset == NULL ||
|
||||
winterface->Sync == NULL || winterface->Launch == NULL ||
|
||||
winterface->Execute == NULL || winterface->End == NULL) {
|
||||
return 0;
|
||||
}
|
||||
g_worker_interface = *interface;
|
||||
g_worker_interface = *winterface;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user