[sqlite] Annotate Chromium-specific exposed functions with SQLITE_API.
[chromium-blink-merge.git] / ipc / ipc_handle_win.cc
blobda3b9bb6125dba3e65d0dcbf83902ee5248a5ffe
1 // Copyright 2015 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 #include "ipc/ipc_handle_win.h"
7 namespace IPC {
9 HandleForTransit CreateHandleForTransit(HANDLE handle) {
10 HandleForTransit hft;
11 hft.handle = handle;
12 return hft;
15 } // namespace IPC