mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix Windows compilation of libresapi with error:
\libresapi\src\api\ForumHandler.cpp:108: erreur : 'u_int32_t' was not declared in this scope KeyValueReference<u_int32_t> vis_msg("visible_msg_count", grp.mMeta.mVisibleMsgCount); ^
This commit is contained in:
parent
4006b08093
commit
3e68741994
@ -8,6 +8,9 @@
|
||||
#include "GxsResponseTask.h"
|
||||
#ifndef WINDOWS_SYS
|
||||
#include "unistd.h"
|
||||
#else
|
||||
#include "stdint.h"
|
||||
typedef uint32_t u_int32_t;
|
||||
#endif
|
||||
|
||||
namespace resource_api
|
||||
|
Loading…
Reference in New Issue
Block a user