Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/enet-1.1/docs/html/win32_8h-source.html @ 13

Last change on this file since 13 was 13, checked in by landauf, 16 years ago

added enet

File size: 5.3 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>enet: win32.h Source File</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5<link href="tabs.css" rel="stylesheet" type="text/css">
6</head><body>
7<!-- Generated by Doxygen 1.5.1 -->
8<div class="tabs">
9  <ul>
10    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11    <li><a href="modules.html"><span>Modules</span></a></li>
12    <li><a href="classes.html"><span>Data&nbsp;Structures</span></a></li>
13    <li id="current"><a href="files.html"><span>Files</span></a></li>
14    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
15  </ul></div>
16<div class="tabs">
17  <ul>
18    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
19    <li><a href="globals.html"><span>Globals</span></a></li>
20  </ul></div>
21<h1>win32.h</h1><a href="win32_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
22<a name="l00005"></a>00005 <span class="preprocessor">#ifndef __ENET_WIN32_H__</span>
23<a name="l00006"></a>00006 <span class="preprocessor"></span><span class="preprocessor">#define __ENET_WIN32_H__</span>
24<a name="l00007"></a>00007 <span class="preprocessor"></span>
25<a name="l00008"></a>00008 <span class="preprocessor">#ifdef ENET_BUILDING_LIB</span>
26<a name="l00009"></a>00009 <span class="preprocessor"></span><span class="preprocessor">#pragma warning (disable: 4996) // 'strncpy' was declared deprecated</span>
27<a name="l00010"></a>00010 <span class="preprocessor"></span><span class="preprocessor">#pragma warning (disable: 4267) // size_t to int conversion</span>
28<a name="l00011"></a>00011 <span class="preprocessor"></span><span class="preprocessor">#pragma warning (disable: 4244) // 64bit to 32bit int</span>
29<a name="l00012"></a>00012 <span class="preprocessor"></span><span class="preprocessor">#pragma warning (disable: 4018) // signed/unsigned mismatch</span>
30<a name="l00013"></a>00013 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
31<a name="l00014"></a>00014 <span class="preprocessor"></span>
32<a name="l00015"></a>00015 <span class="preprocessor">#include &lt;stdlib.h&gt;</span>
33<a name="l00016"></a>00016 <span class="preprocessor">#include &lt;winsock2.h&gt;</span>
34<a name="l00017"></a>00017
35<a name="l00018"></a>00018 <span class="keyword">typedef</span> SOCKET ENetSocket;
36<a name="l00019"></a>00019
37<a name="l00020"></a>00020 <span class="keyword">enum</span>
38<a name="l00021"></a>00021 {
39<a name="l00022"></a>00022     ENET_SOCKET_NULL = INVALID_SOCKET
40<a name="l00023"></a>00023 };
41<a name="l00024"></a>00024
42<a name="l00025"></a>00025 <span class="preprocessor">#define ENET_HOST_TO_NET_16(value) (htons (value))</span>
43<a name="l00026"></a>00026 <span class="preprocessor"></span><span class="preprocessor">#define ENET_HOST_TO_NET_32(value) (htonl (value))</span>
44<a name="l00027"></a>00027 <span class="preprocessor"></span>
45<a name="l00028"></a>00028 <span class="preprocessor">#define ENET_NET_TO_HOST_16(value) (ntohs (value))</span>
46<a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#define ENET_NET_TO_HOST_32(value) (ntohl (value))</span>
47<a name="l00030"></a>00030 <span class="preprocessor"></span>
48<a name="l00031"></a>00031 <span class="keyword">typedef</span> <span class="keyword">struct</span>
49<a name="l00032"></a>00032 <span class="keyword"></span>{
50<a name="l00033"></a>00033     size_t dataLength;
51<a name="l00034"></a>00034     <span class="keywordtype">void</span> * data;
52<a name="l00035"></a>00035 } ENetBuffer;
53<a name="l00036"></a>00036
54<a name="l00037"></a>00037 <span class="preprocessor">#define ENET_CALLBACK __cdecl</span>
55<a name="l00038"></a>00038 <span class="preprocessor"></span>
56<a name="l00039"></a>00039 <span class="preprocessor">#if defined ENET_DLL</span>
57<a name="l00040"></a>00040 <span class="preprocessor"></span><span class="preprocessor">#if defined ENET_BUILDING_LIB</span>
58<a name="l00041"></a>00041 <span class="preprocessor"></span><span class="preprocessor">#define ENET_API __declspec( dllexport )</span>
59<a name="l00042"></a>00042 <span class="preprocessor"></span><span class="preprocessor">#else</span>
60<a name="l00043"></a>00043 <span class="preprocessor"></span><span class="preprocessor">#define ENET_API __declspec( dllimport )</span>
61<a name="l00044"></a>00044 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* ENET_BUILDING_LIB */</span>
62<a name="l00045"></a>00045 <span class="preprocessor">#else </span><span class="comment">/* !ENET_DLL */</span>
63<a name="l00046"></a>00046 <span class="preprocessor">#define ENET_API extern</span>
64<a name="l00047"></a>00047 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* ENET_DLL */</span>
65<a name="l00048"></a>00048
66<a name="l00049"></a>00049 <span class="preprocessor">#endif </span><span class="comment">/* __ENET_WIN32_H__ */</span>
67<a name="l00050"></a>00050
68<a name="l00051"></a>00051
69</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jun 6 14:33:50 2007 for enet by&nbsp;
70<a href="http://www.doxygen.org/index.html">
71<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
72</body>
73</html>
Note: See TracBrowser for help on using the repository browser.