typedef int (*outData2Other)(unsigned char ,unsigned char ,void *pdata);
时间: 2024-05-29 20:11:07 浏览: 124
This is a function pointer declaration in C++.
It declares a function pointer named "outData2Other" that takes three arguments:
1. an unsigned char
2. an unsigned char
3. a void pointer (pdata)
The function pointer returns an integer value.
阅读全文