Add socket library

This commit is contained in:
2019-12-25 14:42:58 +01:00
parent 78dd5366a0
commit fc65d4b146
38 changed files with 186 additions and 4 deletions

10
SocketLibrary/Result.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
namespace SocketLibrary
{
enum class Result
{
Success,
Fail
};
}