gn: 'platform_impl' should be a group instead of component (since it has no code...
[chromium-blink-merge.git] / base / port.h
blobba6171353cdc95bdc6eb2142b931f711b9effa82
1 // Copyright (c) 2006-2008 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.
5 #ifndef BASE_PORT_H_
6 #define BASE_PORT_H_
8 #include <stdarg.h>
9 #include "build/build_config.h"
11 // Define an OS-neutral wrapper for shared library entry points
12 #if defined(OS_WIN)
13 #define API_CALL __stdcall
14 #else
15 #define API_CALL
16 #endif
18 #endif // BASE_PORT_H_