Files
poc-autocode/src/rpc_export.h
T
2025-12-01 19:46:35 +07:00

8 lines
122 B
C

#pragma once
#ifdef __clang__
# define RPC_EXPORT __attribute__((annotate("export")))
#else
# define RPC_EXPORT
#endif