mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-18 14:56:47 +02:00
Merge "rename interface -> winterface"
This commit is contained in:
commit
b8811dac12
@ -290,14 +290,14 @@ static WebPWorkerInterface g_worker_interface = {
|
|||||||
Init, Reset, Sync, Launch, Execute, End
|
Init, Reset, Sync, Launch, Execute, End
|
||||||
};
|
};
|
||||||
|
|
||||||
int WebPSetWorkerInterface(const WebPWorkerInterface* const interface) {
|
int WebPSetWorkerInterface(const WebPWorkerInterface* const winterface) {
|
||||||
if (interface == NULL ||
|
if (winterface == NULL ||
|
||||||
interface->Init == NULL || interface->Reset == NULL ||
|
winterface->Init == NULL || winterface->Reset == NULL ||
|
||||||
interface->Sync == NULL || interface->Launch == NULL ||
|
winterface->Sync == NULL || winterface->Launch == NULL ||
|
||||||
interface->Execute == NULL || interface->End == NULL) {
|
winterface->Execute == NULL || winterface->End == NULL) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
g_worker_interface = *interface;
|
g_worker_interface = *winterface;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user