Merge change 8804 into donut
* changes:
Fix SDK build break caused by including legacy support header into main API header
diff --git a/host/windows/usb/api/adb_api.h b/host/windows/usb/api/adb_api.h
index 900ea40..e2ad129 100644
--- a/host/windows/usb/api/adb_api.h
+++ b/host/windows/usb/api/adb_api.h
@@ -22,8 +22,6 @@
as types, structures, and constants definitions used in the API.
*/
-#include "adb_api_legacy.h"
-
// Enables compillation for "straight" C
#ifdef __cplusplus
#define EXTERN_C extern "C"
diff --git a/host/windows/usb/api/adb_helper_routines.cpp b/host/windows/usb/api/adb_helper_routines.cpp
index 0bc44df..9e37380 100644
--- a/host/windows/usb/api/adb_helper_routines.cpp
+++ b/host/windows/usb/api/adb_helper_routines.cpp
@@ -21,6 +21,7 @@
#include "stdafx.h"
#include "adb_api.h"
+#include "adb_api_legacy.h"
#include "adb_helper_routines.h"
#include "adb_interface_enum.h"