libcros 0.5.2

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2024 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXPORT_H_
#define EXPORT_H_

// Explicitly opt in to making symbols visible, in case we build with
// -fvisibility=internal or similar.
#define EXPORT __attribute__((__visibility__("default")))

#endif  // EXPORT_H_