Mark //testing/perf target testonly.
[chromium-blink-merge.git] / device / bluetooth / bluetooth_low_energy_defs_win.h
blob77220c74cdaa92bfa012db75725ab1b1cc3c8f8d
1 // Copyright 2014 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 DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEFS_WIN_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEFS_WIN_H_
8 #include <windows.h>
9 #include <cfg.h>
10 #include <devpkey.h>
11 #include <setupapi.h>
13 #pragma warning(push)
14 // bthledef.h is buggy and contains
15 // #pragma pop
16 // which should be
17 // #pragma warning(pop)
18 // So, we disable the "unknown pragma" warning, then actually pop, and then pop
19 // our disabling of 4068.
20 #pragma warning(disable: 4068)
21 #include <bthledef.h>
22 #pragma warning(pop)
23 #pragma warning(pop)
25 #include <bluetoothapis.h>
26 #include <bluetoothleapis.h>
28 #endif // DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEFS_WIN_H_