Skip to content

Commit

Permalink
feat(aliases): add CString and CRRef,RPtr.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovelylavender4 committed Feb 25, 2024
1 parent a79953a commit 0edc139
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions iFamily/include/aliases.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ using char8 = u8char;
using char16 = u16char;
using int64 = long long;
using uint64 = unsigned long long;
using CString = const char*;

using __unk_type_v__ = void*;
using unkTypev = void*;
Expand Down Expand Up @@ -79,6 +80,12 @@ using Ref = _Type&;
template<typename _Type>
using RRef = _Type&&;

template<typename _Type>
using CRRef = const _Type&&;

template<typename _Type>
using RPtr = _Type*&;

template<typename _Type>
struct stdcall_cast_s;

Expand Down

0 comments on commit 0edc139

Please sign in to comment.