OSDN Git Service

GPS valid=07にならなくても記録を開始してしまうバグ修正
[scilog/scilog.git] / my_thread.h
1 #if     !defined(__MY_THREAD_H__)
2 #define __MY_THREAD_H__
3
4 void* thread_rcv(void* pParam);
5 void* thread_disp(void* pParam);
6
7 #ifdef  CUNIT
8         #include <CUnit/CUnit.h>
9         void thread_rcv_test(CU_pSuite test_suite);
10 #endif
11
12 #endif