mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-28 20:43:36 +01:00
timer: allow integer pointers in callback arguments
This commit is contained in:
parent
dc83d5ee1f
commit
f8ee9b7414
1 changed files with 5 additions and 0 deletions
|
@ -94,6 +94,11 @@ typedef union
|
|||
int (*pVv) (volatile void *);
|
||||
int (*pCv) (const void *);
|
||||
int (*pCVv)(volatile const void *);
|
||||
/* Integer pointer argument, cv-qualified as needed */
|
||||
int (*pi) (int *);
|
||||
int (*pVi) (volatile int *);
|
||||
int (*pCi) (const int *);
|
||||
int (*pCVi)(volatile const int *);
|
||||
|
||||
} GTRANSPARENT timer_callback_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue