0
Files
src/rlz/lib/rlz_api.h
yusufo 935ffc1828 Add rlz_utils as a new build target to rlz/
This splits constants and some of the utilities into a smaller target
that can be depended on its own in rlz.

Adds net_response_check.cc and h to split isPingResponseValid, since
this is also an independently usable convenience check. The new target
contains all enums, constants and utilities.

BUG=713956

Review-Url: https://codereview.chromium.org/2857343004
Cr-Commit-Position: refs/heads/master@{#469770}
2017-05-05 21:25:15 +00:00

16 lines
336 B
C

// Copyright 2017 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 RLZ_LIB_RLZ_API_H_
#define RLZ_LIB_RLZ_API_H_
#if defined(OS_WIN)
#define RLZ_LIB_API __cdecl
#else
#define RLZ_LIB_API
#endif
#endif // RLZ_LIB_RLZ_API_H_