summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Headers/Defines.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-26 20:00:41 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-26 20:01:41 +0100
commit5ab8bb9c497f673a81da693e9aacc78210718000 (patch)
tree3ae1d5fe040c2c09e92e121436a54650b0adcd35 /Public/Developer/System.Core/Headers/Defines.hxx
parent9a0c2664b0ca5634aa557b0761139cccfb0fe753 (diff)
Kernel: Implement more API calls.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Developer/System.Core/Headers/Defines.hxx')
-rw-r--r--Public/Developer/System.Core/Headers/Defines.hxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/Public/Developer/System.Core/Headers/Defines.hxx b/Public/Developer/System.Core/Headers/Defines.hxx
index 55810d9d..9932298e 100644
--- a/Public/Developer/System.Core/Headers/Defines.hxx
+++ b/Public/Developer/System.Core/Headers/Defines.hxx
@@ -117,7 +117,7 @@ typedef CharacterTypeUTF8 BooleanType;
#define CA_CONSTEXPR
#endif // __cplusplus
-enum HcProcessCall {
+enum RtProcessCall {
kProcessCallAllocPtr = 1,
kProcessCallFreePtr,
kProcessCallSizePtr,
@@ -181,15 +181,8 @@ using StrType = CharacterTypeUTF8[N];
#endif // ifdef C++
-CA_EXTERN_C ObjectRef HcGetAppObject(VoidType);
+CA_EXTERN_C ObjectRef RtGetAppObject(VoidType);
CA_INLINE ObjectRef kApplicationObject;
typedef CharacterTypeUTF8 Str255Type[255];
-
-/// @brief Shows an message box with a formatting.
-/// @param title the message box title
-/// @param format the format
-/// @param va_list the va args, that goes along with it.
-/// @return void
-CA_EXTERN_C VoidType MsgBox(CharacterTypeUTF8* title, CharacterTypeUTF8* format, ...);