| 1048 | } |
| 1049 | |
| 1050 | void |
| 1051 | xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler) { |
| 1052 | xmlMutexLock(&xmlThrDefMutex); |
| 1053 | xmlStructuredErrorContextThrDef = ctx; |
| 1054 | xmlStructuredErrorThrDef = handler; |
| 1055 | xmlMutexUnlock(&xmlThrDefMutex); |
| 1056 | } |
| 1057 | |
| 1058 | xmlBufferAllocationScheme xmlThrDefBufferAllocScheme(xmlBufferAllocationScheme v) { |
| 1059 | xmlBufferAllocationScheme ret; |
nothing calls this directly
no test coverage detected