Skip to content

Commit

Permalink
Add definitions and typedefs to support compilation in Visual Studio …
Browse files Browse the repository at this point in the history
…under C++ mode.
  • Loading branch information
ewencp authored and ry committed Jun 28, 2010
1 parent ddbd5c3 commit 4afe80a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions http_parser.c
Expand Up @@ -22,7 +22,16 @@
* IN THE SOFTWARE.
*/
#include <http_parser.h>
#ifdef _WIN32
typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef __int16 int32_t;
typedef unsigned __int32 uint32_t;
#else
#include <stdint.h>
#endif
#include <assert.h>
#include <stddef.h>

Expand Down
4 changes: 4 additions & 0 deletions http_parser.h
Expand Up @@ -27,6 +27,10 @@ extern "C" {

#include <sys/types.h>

#ifdef _WIN32
typedef unsigned int size_t;
typedef int ssize_t;
#endif

/* Compile with -DHTTP_PARSER_STRICT=0 to make less checks, but run
* faster
Expand Down

0 comments on commit 4afe80a

Please sign in to comment.