[Faxpp-devel] SF.net SVN: faxpp: [51] trunk/faxpp/include/faxpp/transcode.h
Status: Beta
Brought to you by:
jpcs
From: <jp...@us...> - 2008-03-27 15:18:24
|
Revision: 51 http://faxpp.svn.sourceforge.net/faxpp/?rev=51&view=rev Author: jpcs Date: 2008-03-27 08:18:13 -0700 (Thu, 27 Mar 2008) Log Message: ----------- Fix for building on Windows. Modified Paths: -------------- trunk/faxpp/include/faxpp/transcode.h Modified: trunk/faxpp/include/faxpp/transcode.h =================================================================== --- trunk/faxpp/include/faxpp/transcode.h 2008-03-20 16:03:47 UTC (rev 50) +++ trunk/faxpp/include/faxpp/transcode.h 2008-03-27 15:18:13 UTC (rev 51) @@ -17,7 +17,13 @@ #ifndef __FAXPP__TRANSCODE_H #define __FAXPP__TRANSCODE_H +#ifdef _MSC_VER +typedef unsigned __int8 uint8_t +typedef unsigned __int16 uint16_t +typedef unsigned __int32 uint32_t +#else #include <stdint.h> +#endif /// A single unicode codepoint typedef uint32_t Char32; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |