From 7851c6305b2e90cf0083ffa01eaa9cabf311a2e1 Mon Sep 17 00:00:00 2001 From: eihrul Date: Mon, 16 Mar 2009 16:29:05 +0000 Subject: [PATCH] added note about #include --- docs/tutorial.dox | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorial.dox b/docs/tutorial.dox index 7829d6c..62e615f 100755 --- a/docs/tutorial.dox +++ b/docs/tutorial.dox @@ -17,11 +17,17 @@ @section Initialization Initialization +You should include the file when using ENet. Do not +include without the directory prefix, as this may cause +file name conflicts on some systems. + Before using ENet, you must call enet_initialize() to initialize the library. Upon program exit, you should call enet_deinitialize() so that the library may clean up any used resources. @code +#include + int main (int argc, char ** argv) {