| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 * Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 3 // found in the LICENSE file. | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 4 | 6 |
| 5 // This is a stub config.h for libSRTP. It doesn't define anything besides | 7 /* |
| 6 // version number strings because the build is configured by libsrtp.gyp. | 8 * This space intentionally left blank. |
| 7 | 9 * |
| 8 #define PACKAGE_STRING "libsrtp 1.5.0" | 10 * All of the #defines have been moved to BUILD.gn. The libsrtp headers |
| 9 #define PACKAGE_VERSION "1.5.0" | 11 * equate "building as a library" with HAS_CONFIG_H, so we need to leave that |
| 10 | 12 * defined and this file needs to be here. |
| 11 #if defined(_MSC_VER) && !defined(__cplusplus) | 13 */ |
| 12 // Microsoft provides "inline" only for C++ code | |
| 13 #define inline __inline | |
| 14 #endif | |
| OLD | NEW |