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
2022-08-11 10:50:41 +08:00

21 lines
258 B
C

#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;
};
};
#ifdef __cpluscplus
}
#endif