summaryrefslogtreecommitdiff
path: root/zen/system.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-08-31 20:07:13 -0400
committerB Stack <bgstack15@gmail.com>2020-08-31 20:07:13 -0400
commit8a27fa9c617533e76673ce61a65e2ba869b52208 (patch)
treeacfdfb3e1046db87040477033fda0df76d92916a /zen/system.h
parentMerge branch '11.0' into 'master' (diff)
downloadFreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.gz
FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.bz2
FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.zip
add upstream 11.1
Diffstat (limited to 'zen/system.h')
-rw-r--r--zen/system.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/zen/system.h b/zen/system.h
deleted file mode 100644
index f10a6a40..00000000
--- a/zen/system.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// *****************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
-// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
-// *****************************************************************************
-
-#ifndef SYSTEM_H_4189731847832147508915
-#define SYSTEM_H_4189731847832147508915
-
-#include "file_error.h"
-
-
-namespace zen
-{
-//COM needs to be initialized before calling any of these functions! CoInitializeEx/CoUninitialize
-
-std::wstring getUserName(); //throw FileError
-
-struct ComputerModel
-{
- std::wstring model; //best-effort: empty if not available
- std::wstring vendor; //
-};
-ComputerModel getComputerModel(); //throw FileError
-
-
-
-std::wstring getOsDescription(); //throw FileError
-
-
-}
-
-#endif //SYSTEM_H_4189731847832147508915
bgstack15