Changeset 9958 in ntrip
- Timestamp:
- Jan 25, 2023, 2:47:29 PM (2 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r9957 r9958 43 43 #include <unistd.h> 44 44 #else 45 #include < Windows.h>45 #include <windows.h> 46 46 #endif 47 47 #include <iostream> -
trunk/BNC/src/bncmain.cpp
r9957 r9958 42 42 #include <unistd.h> 43 43 #else 44 #include < Windows.h>44 #include <windows.h> 45 45 #endif 46 46 #include <signal.h> … … 68 68 BNC_CORE->stopPPP(); 69 69 BNC_CORE->stopCombination(); 70 #ifndef WIN32 70 71 sleep(2); 72 #else 73 Sleep(2000); 74 #endif 71 75 ::exit(99); 72 76 } -
trunk/BNC/src/bncwindow.cpp
r9957 r9958 65 65 #include <unistd.h> 66 66 #else 67 #include < Windows.h>67 #include <windows.h> 68 68 #endif 69 69 #include "bncwindow.h" -
trunk/BNC/src/latencychecker.cpp
r9957 r9958 42 42 43 43 #ifdef WIN32 44 #include < Windows.h>44 #include <windows.h> 45 45 #else 46 46 #include <unistd.h> -
trunk/BNC/src/test_serial.cpp
r9957 r9958 3 3 #include <unistd.h> 4 4 #else 5 #include < Windows.h>5 #include <windows.h> 6 6 #endif 7 7 #include <stdio.h> … … 22 22 int nb = fread(msg, sizeof(msg), 1, fp); 23 23 printf("read %d\n", nb); 24 sleep(1); 24 #ifndef WIN32 25 sleep(1); 26 #else 27 Sleep(1000); 28 #endif 25 29 } 26 30
Note:
See TracChangeset
for help on using the changeset viewer.