summaryrefslogtreecommitdiffhomepage
path: root/SDK/Library/CoreSystem/Sources/App.c
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-05-12 09:57:37 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-05-12 09:57:37 +0200
commit4e4f9e871236067f0cda4b67a732d3b3bbf08884 (patch)
tree3075fccf13c15bb71b022038d293e15b8020a580 /SDK/Library/CoreSystem/Sources/App.c
parentbc57a29a24b98b00ba17710ba84ec2188ab73504 (diff)
MHR-23: Update CoreSystem prefix from CA_ to CS_.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'SDK/Library/CoreSystem/Sources/App.c')
-rw-r--r--SDK/Library/CoreSystem/Sources/App.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/SDK/Library/CoreSystem/Sources/App.c b/SDK/Library/CoreSystem/Sources/App.c
index 6c6f22f3..c13e9112 100644
--- a/SDK/Library/CoreSystem/Sources/App.c
+++ b/SDK/Library/CoreSystem/Sources/App.c
@@ -12,9 +12,9 @@ ApplicationInterfaceRef kSharedApplication = NullPtr;
/// @brief Gets the app arguments count.
/// @param void no arguments.
/// @return The number of arguments given to the application.
-CA_EXTERN_C SizeType RtGetAppArgumentsCount(VoidType)
+CS_EXTERN_C SizeType RtGetAppArgumentsCount(VoidType)
{
- CA_MUST_PASS(kSharedApplication);
+ CS_MUST_PASS(kSharedApplication);
return kSharedApplication->Invoke(kSharedApplication, kCallGetArgsCount);
}
@@ -22,9 +22,9 @@ CA_EXTERN_C SizeType RtGetAppArgumentsCount(VoidType)
/// @brief Gets the app arguments pointer.
/// @param void no arguments.
/// @return
-CA_EXTERN_C CharacterTypeUTF8** RtGetAppArgumentsPtr(VoidType)
+CS_EXTERN_C CharacterTypeUTF8** RtGetAppArgumentsPtr(VoidType)
{
- CA_MUST_PASS(kSharedApplication);
+ CS_MUST_PASS(kSharedApplication);
return (CharacterTypeUTF8**)kSharedApplication->Invoke(kSharedApplication,
kCallGetArgsPtr);