summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Sources
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-26 05:16:48 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-26 05:16:48 +0100
commit1cd930c0c72f215101300dfcc5860800a474362d (patch)
tree78b3a29c8d9936baaa78b628e0862eb6546c56d8 /Public/Developer/System.Core/Sources
parent4bac72356c29f6f92c0d0df40e1aef09a4216d56 (diff)
Kernel: Adding IPC support.
Kernel: Adding better framebuffer support. Kernel: Expose part of CFKit' URL API. System.Core: Rename most of API types to their <Prefix> with Ref at the end. System.Core: Add API to Window.hxx System.Driver: Add Driver SDK. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Developer/System.Core/Sources')
-rw-r--r--Public/Developer/System.Core/Sources/Heap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Public/Developer/System.Core/Sources/Heap.cxx b/Public/Developer/System.Core/Sources/Heap.cxx
index 18106f41..370693cc 100644
--- a/Public/Developer/System.Core/Sources/Heap.cxx
+++ b/Public/Developer/System.Core/Sources/Heap.cxx
@@ -65,17 +65,17 @@ HeapInterface::HeapInterface() {
HeapInterface::~HeapInterface() { delete this; }
-void HeapInterface::Delete(PtrHeapType me) noexcept {
+void HeapInterface::Delete(HeapRef me) noexcept {
CA_MUST_PASS(me);
HcFreeProcessHeap(kApplicationObject, me);
}
-SizeType HeapInterface::Size(PtrHeapType me) noexcept {
+SizeType HeapInterface::Size(HeapRef me) noexcept {
CA_MUST_PASS(me);
return HcProcessHeapSize(kApplicationObject, me);
}
-PtrHeapType HeapInterface::New(const SizeType& sz, const DWordType flags) {
+HeapRef HeapInterface::New(const SizeType& sz, const DWordType flags) {
SizeType _sz = sz;
if (!_sz) ++_sz;