diff options
Diffstat (limited to 'Kernel/Drivers/MahroussUpdate/MahroussUpdate.hxx')
| -rw-r--r-- | Kernel/Drivers/MahroussUpdate/MahroussUpdate.hxx | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/Kernel/Drivers/MahroussUpdate/MahroussUpdate.hxx b/Kernel/Drivers/MahroussUpdate/MahroussUpdate.hxx deleted file mode 100644 index dbcaed43..00000000 --- a/Kernel/Drivers/MahroussUpdate/MahroussUpdate.hxx +++ /dev/null @@ -1,37 +0,0 @@ -/* ------------------------------------------- - - Copyright SoftwareLabs - -------------------------------------------- */ - -#pragma once - -#include <DriverKit/KernelString.h> - -#include "DriverKit/KernelPrint.h" - -/// @file Software update job driver. - -class UpdateRequest; -class UpdateRequestObserver; - -class UpdateRequest -{ -public: - explicit UpdateRequest(const char* patchUrl = "mup://invalid-url-scheme/") - { - kernelStringCopy(this->fPatchUrl, patchUrl, kernelStringLength(patchUrl)); - - kernelPrintStr("Mahrouss Update, Looking at: "); - kernelPrintStr(patchUrl); - kernelPrintChar('\r'); - kernelPrintChar('\n'); - } - - ~UpdateRequest() - { - } - -private: - char fPatchUrl[4096] = {0}; -}; |
