Update include/ files for strict C function prototypes

This commit is contained in:
Sergey Markelov
2022-02-17 12:53:36 -05:00
committed by Marshall Greenblatt
parent 8bfcbeaf48
commit 758022006a
10 changed files with 16 additions and 16 deletions

View File

@@ -55,7 +55,7 @@ typedef pid_t cef_platform_thread_id_t;
///
// Returns the current platform thread ID.
///
CEF_EXPORT cef_platform_thread_id_t cef_get_current_platform_thread_id();
CEF_EXPORT cef_platform_thread_id_t cef_get_current_platform_thread_id(void);
#if defined(OS_WIN)
typedef DWORD cef_platform_thread_handle_t;
@@ -69,7 +69,7 @@ typedef pthread_t cef_platform_thread_handle_t;
// Returns the current platform thread handle.
///
CEF_EXPORT cef_platform_thread_handle_t
cef_get_current_platform_thread_handle();
cef_get_current_platform_thread_handle(void);
#ifdef __cplusplus
}