2009-03-06 04:25 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com)

* harbour/contrib/examples/uhttpd/uhttpdc.c
    * Fixed error in windows header include
    ; TOCHECK: Viktor, could you check if this is correct ?
This commit is contained in:
Francesco Saverio Giudice
2009-03-06 03:26:26 +00:00
parent 923dfd277b
commit abef4405ef
2 changed files with 8 additions and 1 deletions

View File

@@ -8,6 +8,11 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-03-06 04:25 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com)
* harbour/contrib/examples/uhttpd/uhttpdc.c
* Fixed error in windows header include
; TOCHECK: Viktor, could you check if this is correct ?
2009-03-06 04:13 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com)
* harbour/contrib/examples/uhttpd/uhttpd.prg
* Updated uHTTPD (Work in progress)

View File

@@ -57,12 +57,14 @@
*
*/
/* #define HB_OS_WIN_USED */ /* Temporaly disabled Viktor could you check it */
#include "hbapi.h"
#ifndef HB_OS_WIN
#include <time.h>
#else
#define HB_OS_WIN_USED
#include <windows.h>
#endif
#if defined( HB_OS_WIN )