fix(fimngd): include stdint for uint32_t declarations

This commit is contained in:
biosvos
2026-08-08 16:08:11 +09:00
parent fff57d450f
commit aeb4626fe1
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -13,6 +13,7 @@
***************************************************************************/ ***************************************************************************/
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h>
#ifndef __FIMNGD_DATA_H__ #ifndef __FIMNGD_DATA_H__
#define __FIMNGD_DATA_H__ #define __FIMNGD_DATA_H__
+1
View File
@@ -18,6 +18,7 @@
#include <map> #include <map>
#include <time.h> #include <time.h>
#include <pthread.h> #include <pthread.h>
#include <stdint.h>
class CHotContentData class CHotContentData
{ {
+1
View File
@@ -20,6 +20,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/ipc.h> #include <sys/ipc.h>
#include <sys/msg.h> #include <sys/msg.h>
#include <stdint.h>
#include <string> #include <string>
#include <iostream> #include <iostream>
+1
View File
@@ -17,6 +17,7 @@
#include "BaseSocket.h" #include "BaseSocket.h"
#include "Protocol.h" #include "Protocol.h"
#include <stdint.h>
#include <iostream> #include <iostream>
#include <vector> #include <vector>