// Copyright (c) 2006-2008 The Chromium 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 BASE_PORT_H_ #define BASE_PORT_H_ #include #include "build/build_config.h" // Define an OS-neutral wrapper for shared library entry points #if defined(OS_WIN) #define API_CALL __stdcall #else #define API_CALL #endif #endif // BASE_PORT_H_