blob: 6973236eac91f330d90372e66ada3e5d214ad2d3 [file] [log] [blame]
// Copyright 2015 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TPM_MANAGER_COMMON_EXPORT_H_
#define TPM_MANAGER_COMMON_EXPORT_H_
// Use this for any class or function that needs to be exported from
// libtpm_manager. E.g. TPM_MANAGER_EXPORT void foo();
#define TPM_MANAGER_EXPORT __attribute__((__visibility__("default")))
#endif // TPM_MANAGER_COMMON_EXPORT_H_