rlz_api.h 368 B

12345678910111213141516
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef RLZ_LIB_RLZ_API_H_
  5. #define RLZ_LIB_RLZ_API_H_
  6. #include "build/build_config.h"
  7. #if BUILDFLAG(IS_WIN)
  8. #define RLZ_LIB_API __cdecl
  9. #else
  10. #define RLZ_LIB_API
  11. #endif
  12. #endif // RLZ_LIB_RLZ_API_H_