summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-20 23:13:11 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-20 23:13:11 +0200
commit155971914073bedfa585a0be4d14a40bd23e3b8f (patch)
treef39af19dc2f1b7f33cac33eff07001b2e791f7db /Private/NewKit
parent7013c094668be2204b1245496236f0cf6afa07c2 (diff)
MHR-9: Driver toolkit, initial commit.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewKit')
-rw-r--r--Private/NewKit/Application.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Private/NewKit/Application.hxx b/Private/NewKit/Application.hxx
index f19dbd97..15ffd073 100644
--- a/Private/NewKit/Application.hxx
+++ b/Private/NewKit/Application.hxx
@@ -7,7 +7,7 @@
#pragma once
///
-/// @brief Main application object, given by the OS to interact with the OS.
+/// @brief Application object, given by the OS to the process. interact with the OS.
/// @file Application.hxx
/// @author Amlal EL Mahrouss
///
@@ -17,14 +17,14 @@
/// \brief Application Interface.
/// \author Amlal El Mahrouss
-typedef struct Application final {
+typedef struct _Application final {
/// @brief Releases the object exit the process on main object.
- NewOS::Void(*Release)(struct Application* Self, NewOS::Int32 ExitCode);
+ NewOS::Void(*Release)(struct _Application* Self, NewOS::Int32 ExitCode);
/// @brief Invoke a function from the application object.
- NewOS::IntPtr(*Invoke)(struct Application* Self, NewOS::Int32 Sel, ...);
+ NewOS::IntPtr(*Invoke)(struct _Application* Self, NewOS::Int32 Sel, ...);
/// @brief Query a new application object from a GUID.
/// @note this doesn't query a process, it query a registered object withtin that app.
- NewOS::Void(*Query)(struct Application* Self, NewOS::VoidPtr* Dst, NewOS::SizeT SzDst, NewOS::XRN::GUIDSequence GuidOf);
+ NewOS::Void(*Query)(struct _Application* Self, NewOS::VoidPtr* Dst, NewOS::SizeT SzDst, NewOS::XRN::GUIDSequence GuidOf);
} Application, *ApplicationRef;
#define app_cast reinterpret_cast<ApplicationRef>