You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libpEpAdapter/status_to_string.hh

14 lines
393 B
C++

#pragma once
#include <pEp/pEpEngine.h>
4 years ago
#include <pEp/status_to_string.h>
#include <string>
namespace pEp
{
// creates a textual string (returned by pep_status_to_string() ) and the numerical status value.
// in pEpEngine.h positive values are in hex value, negatives in decimal. So we follow this.
std::string status_to_string(PEP_STATUS status);
} // end of namespace pEp