This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar-2022/sdk/include/event.h

21 lines
258 B
C
Raw Normal View History

2022-08-11 10:50:41 +08:00
#pragma once
#ifdef __cpluscplus
extern "C"
{
#endif
struct stellar_session_event_data;
struct stellar_event
{
union
{
struct stellar_session_event_data *session_event_data;
void *event_data;
};
};
2022-08-11 10:50:41 +08:00
#ifdef __cpluscplus
}
#endif