forked from pEp.foundation/libpEpAdapter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
393 B
14 lines
393 B
#pragma once
|
|
|
|
#include <pEp/pEpEngine.h>
|
|
#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
|