Merge pull request #340 from parro-it/fix-timer-windows-2

Fix uiprivTimer::f,  it should return an int
This commit is contained in:
Pietro Gagliardi 2018-04-19 20:31:08 -04:00 committed by GitHub
commit 3f421f9816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ extern void uninitUtilWindow(void);
// main.cpp
typedef struct uiprivTimer;
struct uiprivTimer {
void (*f)(void *);
int (*f)(void *);
void *data;
};
extern int registerMessageFilter(void);