component_c.h 253 B

123456789101112131415
  1. // Copyright The OpenTelemetry Authors
  2. // SPDX-License-Identifier: Apache-2.0
  3. #if defined(_MSC_VER)
  4. // component_c is a DLL
  5. # ifdef BUILD_COMPONENT_C
  6. __declspec(dllexport)
  7. # else
  8. __declspec(dllimport)
  9. # endif
  10. #endif
  11. void do_something_in_c();