Added webserver, parse args, A1066
This commit is contained in:
@ -1,15 +1,15 @@
|
||||
#ifndef BITWI2DL_GETOSNAME_H
|
||||
#define BITWI2DL_GETOSNAME_H
|
||||
#ifndef BIT_GETOSNAME_H
|
||||
#define BIT_GETOSNAME_H
|
||||
|
||||
#include <string>
|
||||
|
||||
std::string getOsName() {
|
||||
#ifdef _WIN64
|
||||
return "windows 64-bit";
|
||||
return "mustdie64";
|
||||
#elif _WIN32
|
||||
return "windows 32-bit";
|
||||
return "mustdie32";
|
||||
#elif __APPLE__ || __MACH__
|
||||
return "mac osx";
|
||||
return "osx";
|
||||
#elif __linux__
|
||||
return "linux";
|
||||
#elif __FreeBSD__
|
||||
|
Reference in New Issue
Block a user