[warning] fix function declarations

use same names in declaration and implementation
This commit is contained in:
akallabeth 2024-09-11 20:22:28 +02:00
parent eb70b1756b
commit a1be46e5dd
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
2 changed files with 3 additions and 3 deletions

View File

@ -79,8 +79,8 @@ void prim_test_setup(BOOL performance)
g_TestPrimitivesPerformance = performance;
}
BOOL speed_test(const char* name, const char* dsc, UINT32 iterations, pstatus_t (*fkt_generic)(),
pstatus_t (*optimised)(), ...)
BOOL speed_test(const char* name, const char* dsc, UINT32 iterations, speed_test_fkt generic,
speed_test_fkt optimised, ...)
{
if (!name || !generic || !optimised || (iterations == 0))
return FALSE;

View File

@ -26,7 +26,7 @@ extern "C"
{
#endif
BOOL shadow_client_accepted(freerdp_listener* instance, freerdp_peer* peer);
BOOL shadow_client_accepted(freerdp_listener* listener, freerdp_peer* peer);
#ifdef __cplusplus
}