Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ppapi / c / private / pp_file_handle.h
blobfdb2615df8c4c84b9cb52dbfe5ef1c9207a4d48c
1 /* Copyright (c) 2012 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.
4 */
6 /* From private/pp_file_handle.idl modified Fri Jul 27 17:01:41 2012. */
8 #ifndef PPAPI_C_PRIVATE_PP_FILE_HANDLE_H_
9 #define PPAPI_C_PRIVATE_PP_FILE_HANDLE_H_
11 #include "ppapi/c/pp_macros.h"
13 /**
14 * @file
15 * This file provides support for native OS file handles.
20 #ifdef _WIN32
21 #include<windows.h>
22 typedef HANDLE PP_FileHandle;
23 static const PP_FileHandle PP_kInvalidFileHandle = NULL;
25 #else
26 typedef int PP_FileHandle;
27 static const PP_FileHandle PP_kInvalidFileHandle = -1;
28 #endif
30 #endif /* PPAPI_C_PRIVATE_PP_FILE_HANDLE_H_ */