summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit
diff options
context:
space:
mode:
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>