18 lines
207 B
C++
Executable File
18 lines
207 B
C++
Executable File
/*
|
|
* chatlog.hpp
|
|
*
|
|
* Created on: Jul 28, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "config.h"
|
|
#include <string>
|
|
|
|
namespace chatlog
|
|
{
|
|
|
|
void LogMessage(int eid, std::string message);
|
|
}
|