mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-19 07:46:38 +01:00
15 lines
155 B
C++
15 lines
155 B
C++
#ifndef API_H__
|
|
#define API_H__
|
|
|
|
namespace i2p
|
|
{
|
|
namespace api
|
|
{
|
|
void InitI2P (int argc, char* argv[]);
|
|
void StartI2P ();
|
|
void StopI2P ();
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|