summaryrefslogtreecommitdiffhomepage
path: root/Kernel/NewKit/ApplicationInterface.hxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-02 22:00:35 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-02 22:00:49 +0200
commit375d0210dcb2070a12d916523f4a1dafff28360c (patch)
treed0c217f529b8069ea659778c2ee9ca20aeba33a4 /Kernel/NewKit/ApplicationInterface.hxx
parentf1d3744829a661d1600c2f3bbdbdf679ee0bd0e1 (diff)
MHR-36: Change namespace name, got out of the codename stage.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/NewKit/ApplicationInterface.hxx')
-rw-r--r--Kernel/NewKit/ApplicationInterface.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/NewKit/ApplicationInterface.hxx b/Kernel/NewKit/ApplicationInterface.hxx
index 46d95095..66737db7 100644
--- a/Kernel/NewKit/ApplicationInterface.hxx
+++ b/Kernel/NewKit/ApplicationInterface.hxx
@@ -20,12 +20,12 @@
typedef struct _ApplicationInterface final
{
/// @brief Releases the object exit the process on main object.
- NewOS::Void (*Release)(struct _Application* Self, NewOS::Int32 ExitCode);
+ Kernel::Void (*Release)(struct _Application* Self, Kernel::Int32 ExitCode);
/// @brief Invoke a function from the application object.
- NewOS::IntPtr (*Invoke)(struct _Application* Self, NewOS::Int32 Sel, ...);
+ Kernel::IntPtr (*Invoke)(struct _Application* Self, Kernel::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);
+ Kernel::Void (*Query)(struct _Application* Self, Kernel::VoidPtr* Dst, Kernel::SizeT SzDst, Kernel::XRN::GUIDSequence GuidOf);
} ApplicationInterface, *ApplicationInterfaceRef;
#define app_cast reinterpret_cast<ApplicationInterfaceRef>