blob: f2c53943ba1961ff49f759709a78e1780839c1ab [file] [log] [blame]
Alex Vakulenko039da312015-02-03 08:58:55 -08001// Copyright 2014 The Chromium OS 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
5#ifndef WEBSERVER_LIBWEBSERV_EXPORT_H_
6#define WEBSERVER_LIBWEBSERV_EXPORT_H_
7
8// See detailed explanation of the purpose of LIBWEBSERV_EXPORT in
9// chromeos/chromeos_export.h for similar attribute - CHROMEOS_EXPORT.
10#define LIBWEBSERV_EXPORT __attribute__((__visibility__("default")))
11#define LIBWEBSERV_PRIVATE __attribute__((__visibility__("hidden")))
12
13#endif // WEBSERVER_LIBWEBSERV_EXPORT_H_