0
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* This file contains definitions to allow windows things to compile on Linux. This is
|
|
16 |
* nothing major -- just (void*) for HANDLE etc.
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
#ifndef __LINUX_CONV_H__
|
|
24 |
#define __LINUX_CONV_H__
|
|
25 |
|
|
26 |
/****************************************************************************************
|
|
27 |
*
|
|
28 |
* Switches
|
|
29 |
*
|
|
30 |
***************************************************************************************/
|
|
31 |
#ifdef WIN32
|
|
32 |
#error
|
|
33 |
#endif
|
|
34 |
|
|
35 |
/****************************************************************************************
|
|
36 |
*
|
|
37 |
* Definitions
|
|
38 |
*
|
|
39 |
***************************************************************************************/
|
|
40 |
#define HANDLE (void*)
|
|
41 |
|
|
42 |
/****************************************************************************************
|
|
43 |
*
|
|
44 |
* Macro Functions
|
|
45 |
*
|
|
46 |
***************************************************************************************/
|
|
47 |
#define ReadFile(a,b,c,d,e) (assert(0),1)
|
|
48 |
#define WriteFile(a,b,c,d,e) (assert(0),1)
|
|
49 |
|
|
50 |
|
|
51 |
#endif //__LINUX_CONV_H__
|