build failure

This commit is contained in:
a00817524 2023-09-08 19:43:03 +00:00 committed by John Sully
parent 9c32d4c1c8
commit e42d83d208

View File

@ -72,7 +72,6 @@ extern "C" {
#define AE_NOTUSED(V) ((void) V)
struct aeEventLoop;
/* Types and data structures */
typedef void aeFileProc(struct aeEventLoop *eventLoop, int fd, void *clientData, int mask);
typedef int aeTimeProc(struct aeEventLoop *eventLoop, long long id, void *clientData);
@ -81,7 +80,7 @@ typedef void aeBeforeSleepProc(struct aeEventLoop *eventLoop);
typedef void aePostFunctionProc(void *pvArgs);
//added to support async api IStorage
struct StorageToken;
typedef void aePostFunctionTokenProc(aeEventLoop *el, StorageToken *token);
typedef void aePostFunctionTokenProc(struct aeEventLoop *el, StorageToken *token);
/* File event structure */
typedef struct aeFileEvent {