Skip to content

Commit

Permalink
[core] deprecate function declaration added (#1414)
Browse files Browse the repository at this point in the history
minor fix in windows build batch file (HAS_QT instead HAS_QT5)
  • Loading branch information
rex-schilasky authored Mar 1, 2024
1 parent ad63e8b commit 065a5d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build_win/win_make_cmake.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ powershell -Command "& '%~dp0\download_npcap.ps1'"

set CMAKE_OPTIONS_COMPLETE=-DCMAKE_INSTALL_PREFIX=_install ^
-DHAS_HDF5=ON ^
-DHAS_QT5=ON ^
-DHAS_QT=ON ^
-DHAS_CURL=ON ^
-DHAS_CAPNPROTO=OFF ^
-DHAS_FTXUI=ON ^
Expand Down Expand Up @@ -43,7 +43,7 @@ set CMAKE_OPTIONS_COMPLETE=-DCMAKE_INSTALL_PREFIX=_install ^

set CMAKE_OPTIONS_SDK=-DCMAKE_INSTALL_PREFIX=_install ^
-DHAS_HDF5=ON ^
-DHAS_QT5=ON ^
-DHAS_QT=ON ^
-DHAS_CURL=OFF ^
-DHAS_CAPNPROTO=OFF ^
-DHAS_FTXUI=ON ^
Expand Down
3 changes: 1 addition & 2 deletions ecal/core/include/ecal/cimpl/ecal_subscriber_cimpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ extern "C"

/**
* @brief Receive a message from the publisher
*
* @deprecated Use the eCAL_Sub_Receive_ToBuffer or eCAL_Sub_Receive_Alloc instead.
*
* @param handle_ Subscriber handle.
Expand All @@ -138,7 +137,7 @@ extern "C"
*
* @return Length of received buffer.
**/
ECALC_API int eCAL_Sub_Receive(ECAL_HANDLE handle_, void* buf_, int buf_len_, long long* time_, int rcv_timeout_);
ECALC_API_DEPRECATED int eCAL_Sub_Receive(ECAL_HANDLE handle_, void* buf_, int buf_len_, long long* time_, int rcv_timeout_);

/**
* @brief Receive a message from the publisher in a preallocated buffer.
Expand Down

0 comments on commit 065a5d0

Please sign in to comment.