0386f7ab6f
Revert "Pulled a significant portion of Socket implementation into BaseSocket in order to prepare for the synchronous socket impementations which will also use these common methods." This reverts commit0422920142. Revert "Updated incorrect call to Write in process_win.cc" This reverts commit9e1435148b. Revert "Fixed incorrect call to Write from process_win.cc" This reverts commit 11dcab2bed3c9ec8ec76bc200206ac202a4a5681. Fixed incorrect call to Write from process_win.cc BUG= Review-Url: https://codereview.chromium.org/2791163004 .
18 lines
514 B
C
18 lines
514 B
C
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_BIN_SOCKET_WIN_H_
|
|
#define RUNTIME_BIN_SOCKET_WIN_H_
|
|
|
|
#if !defined(RUNTIME_BIN_SOCKET_H_)
|
|
#error Do not include socket_win.h directly. Use socket.h.
|
|
#endif
|
|
|
|
#include <iphlpapi.h>
|
|
#include <mswsock.h>
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif // RUNTIME_BIN_SOCKET_WIN_H_
|