Explorar o código

Changing Embedding example to C file.

Miguel Morales %!s(int64=12) %!d(string=hai) anos
pai
achega
866a7e2823
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      UserManual.md

+ 3 - 3
UserManual.md

@@ -401,12 +401,12 @@ Embedding Mongoose is easy. Copy
 [mongoose.c](https://github.com/valenok/mongoose/blob/master/mongoose.c) and
 [mongoose.h](https://github.com/valenok/mongoose/blob/master/mongoose.h)
 to your application's source tree and include them in the build. For
-example, your application's code lives in C++ file `my_app.cpp`, then on UNIX
+example, your application's code lives in C file `my_app.c`, then on UNIX
 this command embeds Mongoose:
 
     $ ls
-    my_app.cpp mongoose.c mongoose.h
-    $ g++ my_app.cc mongoose.c -o my_app
+    my_app.c mongoose.c mongoose.h
+    $ gcc my_app.c mongoose.c -o my_app -ldl -pthread
 
 Somewhere in the application code, call `mg_start()` to start the server.
 Pass configuration options and event handlers to `mg_start()`.