Changeset 9958 in ntrip


Ignore:
Timestamp:
Jan 25, 2023, 2:47:29 PM (15 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnccaster.cpp

    r9957 r9958  
    4343#include <unistd.h>
    4444#else
    45 #include <Windows.h>
     45#include <windows.h>
    4646#endif
    4747#include <iostream>
  • trunk/BNC/src/bncmain.cpp

    r9957 r9958  
    4242#include <unistd.h>
    4343#else
    44 #include <Windows.h>
     44#include <windows.h>
    4545#endif
    4646#include <signal.h>
     
    6868  BNC_CORE->stopPPP();
    6969  BNC_CORE->stopCombination();
     70#ifndef WIN32
    7071  sleep(2);
     72#else
     73  Sleep(2000);
     74#endif
    7175  ::exit(99);
    7276}
  • trunk/BNC/src/bncwindow.cpp

    r9957 r9958  
    6565#include <unistd.h>
    6666#else
    67 #include <Windows.h>
     67#include <windows.h>
    6868#endif
    6969#include "bncwindow.h"
  • trunk/BNC/src/latencychecker.cpp

    r9957 r9958  
    4242
    4343#ifdef WIN32
    44 #include <Windows.h>
     44#include <windows.h>
    4545#else
    4646#include <unistd.h>
  • trunk/BNC/src/test_serial.cpp

    r9957 r9958  
    33#include <unistd.h>
    44#else
    5 #include <Windows.h>
     5#include <windows.h>
    66#endif
    77#include <stdio.h>
     
    2222    int nb = fread(msg, sizeof(msg), 1, fp);
    2323    printf("read %d\n", nb);
    24     sleep(1);
     24#ifndef WIN32
     25  sleep(1);
     26#else
     27  Sleep(1000);
     28#endif
    2529  }
    2630
Note: See TracChangeset for help on using the changeset viewer.