Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: large structs are Any*, not int* #1165

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HUD/EndTextCommandThefeedPostCrewtag.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x97C9E4E7024A8F2C","_NOTIFICATION_SEND_APARTMENT_INVITE","_DRAW_NOTI

```c
// 0x97C9E4E7024A8F2C 0xA9CCEF66
int END_TEXT_COMMAND_THEFEED_POST_CREWTAG(BOOL crewTypeIsPrivate, BOOL crewTagContainsRockstar, int* crewTag, int rank, BOOL hasFounderStatus, BOOL isImportant, int clanHandle, int r, int g, int b);
int END_TEXT_COMMAND_THEFEED_POST_CREWTAG(BOOL crewTypeIsPrivate, BOOL crewTagContainsRockstar, Any* crewTag, int rank, BOOL hasFounderStatus, BOOL isImportant, int clanHandle, int r, int g, int b);
```

```
Expand Down
2 changes: 1 addition & 1 deletion HUD/EndTextCommandThefeedPostCrewtagWithGameName.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x137BC35589E34E1E","_NOTIFICATION_SEND_CLAN_INVITE","_DRAW_NOTIFICAT

```c
// 0x137BC35589E34E1E 0x88B9B909
int END_TEXT_COMMAND_THEFEED_POST_CREWTAG_WITH_GAME_NAME(BOOL crewTypeIsPrivate, BOOL crewTagContainsRockstar, int* crewTag, int rank, BOOL isLeader, BOOL isImportant, int clanHandle, char* gamerStr, int r, int g, int b);
int END_TEXT_COMMAND_THEFEED_POST_CREWTAG_WITH_GAME_NAME(BOOL crewTypeIsPrivate, BOOL crewTagContainsRockstar, Any* crewTag, int rank, BOOL isLeader, BOOL isImportant, int clanHandle, char* gamerStr, int r, int g, int b);
```

```
Expand Down
2 changes: 1 addition & 1 deletion MONEY/NetworkEarnFromBounty.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: MONEY

```c
// 0x131BB5DA15453ACF 0x127F2DAE
void NETWORK_EARN_FROM_BOUNTY(int amount, int* networkHandle, Any* p2, Any p3);
void NETWORK_EARN_FROM_BOUNTY(int amount, Any* networkHandle, Any* p2, Any p3);
```


Expand Down
2 changes: 1 addition & 1 deletion MONEY/NetworkGivePlayerJobshareCash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: MONEY

```c
// 0xFB18DF9CB95E0105 0xC6047FDB
void NETWORK_GIVE_PLAYER_JOBSHARE_CASH(int amount, int* networkHandle);
void NETWORK_GIVE_PLAYER_JOBSHARE_CASH(int amount, Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion MONEY/NetworkReceivePlayerJobshareCash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: MONEY

```c
// 0x56A3B51944C50598 0x4ED71C1A
void NETWORK_RECEIVE_PLAYER_JOBSHARE_CASH(int value, int* networkHandle);
void NETWORK_RECEIVE_PLAYER_JOBSHARE_CASH(int value, Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion MONEY/NetworkSpentPayVehicleInsurancePremium.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: MONEY

```c
// 0x9FF28D88C766E3E8 0x4E665BB2
void NETWORK_SPENT_PAY_VEHICLE_INSURANCE_PREMIUM(int amount, Hash vehicleModel, int* networkHandle, BOOL notBankrupt, BOOL hasTheMoney);
void NETWORK_SPENT_PAY_VEHICLE_INSURANCE_PREMIUM(int amount, Hash vehicleModel, Any* networkHandle, BOOL notBankrupt, BOOL hasTheMoney);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/BadSportPlayerLeftDetected.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0xEC5E3AF5289DCA81"]

```c
// 0xEC5E3AF5289DCA81 0x4C2C6B6A
BOOL BAD_SPORT_PLAYER_LEFT_DETECTED(int* networkHandle, int event, int amountReceived);
BOOL BAD_SPORT_PLAYER_LEFT_DETECTED(Any* networkHandle, int event, int amountReceived);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/FilloutPmPlayerList.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xCBBD7C4991B64809 0xCE40F423
BOOL FILLOUT_PM_PLAYER_LIST(int* networkHandle, Any p1, Any p2);
BOOL FILLOUT_PM_PLAYER_LIST(Any* networkHandle, Any p1, Any p2);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkAddFollowers.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x236406F60CF216D6"]

```c
// 0x236406F60CF216D6 0x0EC62629
void NETWORK_ADD_FOLLOWERS(int* p0, int p1);
void NETWORK_ADD_FOLLOWERS(Any* p0, int p1);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkAddFriend.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x8E02D73914064223 0x20E5B3EE
BOOL NETWORK_ADD_FRIEND(int* networkHandle, char* message);
BOOL NETWORK_ADD_FRIEND(Any* networkHandle, char* message);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkAreHandlesTheSame.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x57DBA049E110F217 0x45975AE3
BOOL NETWORK_ARE_HANDLES_THE_SAME(int* netHandle1, int* netHandle2);
BOOL NETWORK_ARE_HANDLES_THE_SAME(Any* netHandle1, Any* netHandle2);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkCanCommunicateWithGamer.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xA150A4F065806B1F 0xD05EB7F6
BOOL NETWORK_CAN_COMMUNICATE_WITH_GAMER(int* networkHandle);
BOOL NETWORK_CAN_COMMUNICATE_WITH_GAMER(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkCheckDataManagerSucceededForHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x44B37CDCAE765AAE"]

```c
// 0x44B37CDCAE765AAE 0x13301529
BOOL NETWORK_CHECK_DATA_MANAGER_SUCCEEDED_FOR_HANDLE(int friendDataIndex, int* networkHandle);
BOOL NETWORK_CHECK_DATA_MANAGER_SUCCEEDED_FOR_HANDLE(int friendDataIndex, Any* networkHandle);
```

Checks if the friendDataIndex in the friend data manager contains the data for the specified networkHandle
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanDownloadMembership.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xA989044E70010ABE 0x8E8CB520
BOOL NETWORK_CLAN_DOWNLOAD_MEMBERSHIP(int* networkHandle);
BOOL NETWORK_CLAN_DOWNLOAD_MEMBERSHIP(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanGetMembership.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xC8BC2011F67B3411 0xCDC4A590
BOOL NETWORK_CLAN_GET_MEMBERSHIP(int* networkHandle, int* clanMembership, int membershipIndex);
BOOL NETWORK_CLAN_GET_MEMBERSHIP(Any* networkHandle, Any* clanMembership, int membershipIndex);
```

Retrieves a membership for a player, from the cache (i.e. downloaded via NETWORK_CLAN_DOWNLOAD_MEMBERSHIP).
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanGetMembershipDesc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x48DE78AF2C8885B8 0x3369DD1F
BOOL NETWORK_CLAN_GET_MEMBERSHIP_DESC(int* memberDesc, int p1);
BOOL NETWORK_CLAN_GET_MEMBERSHIP_DESC(Any* memberDesc, int p1);
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanGetMembershipValid.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x48A59CF88D43DF0E 0x48914F6A
BOOL NETWORK_CLAN_GET_MEMBERSHIP_VALID(int* networkHandle, int membershipIndex);
BOOL NETWORK_CLAN_GET_MEMBERSHIP_VALID(Any* networkHandle, int membershipIndex);
```

Checks if a crew/membership for a player, from the cache (i.e. downloaded via NETWORK_CLAN_DOWNLOAD_MEMBERSHIP) is valid.
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanGetUiFormattedTag.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0xF45352426FF3A4F0"]

```c
// 0xF45352426FF3A4F0 0xF633805A
void NETWORK_CLAN_GET_UI_FORMATTED_TAG(int* clanDesc, int bufferSize, cs_type(intPtr) char* formattedTag);
void NETWORK_CLAN_GET_UI_FORMATTED_TAG(Any* clanDesc, int bufferSize, cs_type(intPtr) char* formattedTag);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanIsRockstarClan.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x7543BB439F63792B"]

```c
// 0x7543BB439F63792B 0x54E79E9C
BOOL NETWORK_CLAN_IS_ROCKSTAR_CLAN(int* clanDesc, int bufferSize);
BOOL NETWORK_CLAN_IS_ROCKSTAR_CLAN(Any* clanDesc, int bufferSize);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanPlayerGetDesc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xEEE6EACBE8874FBA 0x6EE4A282
BOOL NETWORK_CLAN_PLAYER_GET_DESC(int* clanDesc, int bufferSize, int* networkHandle);
BOOL NETWORK_CLAN_PLAYER_GET_DESC(Any* clanDesc, int bufferSize, Any* networkHandle);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkClanPlayerIsActive.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xB124B57F571D8F18 0xAB8319A3
BOOL NETWORK_CLAN_PLAYER_IS_ACTIVE(int* networkHandle);
BOOL NETWORK_CLAN_PLAYER_IS_ACTIVE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkGamertagFromHandleStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x9F0C0A981D73FA56 0xEBA00C2A
BOOL NETWORK_GAMERTAG_FROM_HANDLE_START(int* networkHandle);
BOOL NETWORK_GAMERTAG_FROM_HANDLE_START(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkGetGamertagFromHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x426141162EBE5CDB 0xA18A1B26
char* NETWORK_GET_GAMERTAG_FROM_HANDLE(int* networkHandle);
char* NETWORK_GET_GAMERTAG_FROM_HANDLE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkGetLocalHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xE86051786B66CD8E 0x08023B16
void NETWORK_GET_LOCAL_HANDLE(int* networkHandle, int bufferSize);
void NETWORK_GET_LOCAL_HANDLE(Any* networkHandle, int bufferSize);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkGetPlayerFromGamerHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xCE5F689CF5A0A49D 0x2E96EF1E
Player NETWORK_GET_PLAYER_FROM_GAMER_HANDLE(int* networkHandle);
Player NETWORK_GET_PLAYER_FROM_GAMER_HANDLE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkGetTransitionHost.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x65042B9774C4435E 0x73098D40
BOOL NETWORK_GET_TRANSITION_HOST(int* networkHandle);
BOOL NETWORK_GET_TRANSITION_HOST(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHandleFromFriend.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xD45CB817D7E177D2 0x3B0BB3A3
void NETWORK_HANDLE_FROM_FRIEND(int friendIndex, int* networkHandle, int bufferSize);
void NETWORK_HANDLE_FROM_FRIEND(int friendIndex, Any* networkHandle, int bufferSize);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHandleFromMemberId.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xA0FD21BED61E5C4C 0x9BFC9FE2
void NETWORK_HANDLE_FROM_MEMBER_ID(char* memberId, int* networkHandle, int bufferSize);
void NETWORK_HANDLE_FROM_MEMBER_ID(char* memberId, Any* networkHandle, int bufferSize);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHandleFromPlayer.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x388EB2B86C73B6B3 0xD3498917
void NETWORK_HANDLE_FROM_PLAYER(Player player, int* networkHandle, int bufferSize);
void NETWORK_HANDLE_FROM_PLAYER(Player player, Any* networkHandle, int bufferSize);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHandleFromUserId.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xDCD51DD8F87AEC5C 0x74C2C1B7
void NETWORK_HANDLE_FROM_USER_ID(char* userId, int* networkHandle, int bufferSize);
void NETWORK_HANDLE_FROM_USER_ID(char* userId, Any* networkHandle, int bufferSize);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHasInviteBeenAcked.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x71DC455F5CD1C2B1"]

```c
// 0x71DC455F5CD1C2B1 0xF6F9D1B9
BOOL NETWORK_HAS_INVITE_BEEN_ACKED(int* networkHandle);
BOOL NETWORK_HAS_INVITE_BEEN_ACKED(Any* networkHandle);
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHasTransitionInviteBeenAcked.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x3F9990BF5F22759C"]

```c
// 0x3F9990BF5F22759C 0x00F26CDC
BOOL NETWORK_HAS_TRANSITION_INVITE_BEEN_ACKED(int* networkHandle);
BOOL NETWORK_HAS_TRANSITION_INVITE_BEEN_ACKED(Any* networkHandle);
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkHashFromGamerHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x58575AC3CF2CA8EC","_NETWORK_HASH_FROM_GAMER_HANDLE"]

```c
// 0x58575AC3CF2CA8EC 0x5AC9F04D
Hash NETWORK_HASH_FROM_GAMER_HANDLE(int* networkHandle);
Hash NETWORK_HASH_FROM_GAMER_HANDLE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsActivitySpectatorFromHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x2763BBAA72A7BCB9 0x58F1DF7D
BOOL NETWORK_IS_ACTIVITY_SPECTATOR_FROM_HANDLE(int* networkHandle);
BOOL NETWORK_IS_ACTIVITY_SPECTATOR_FROM_HANDLE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsChattingInPlatformParty.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x8DE9945BCC9AEC52 0x51367B34
BOOL NETWORK_IS_CHATTING_IN_PLATFORM_PARTY(int* networkHandle);
BOOL NETWORK_IS_CHATTING_IN_PLATFORM_PARTY(Any* networkHandle);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsFriend.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x1A24A179F9B31654 0x2DA4C282
BOOL NETWORK_IS_FRIEND(int* networkHandle);
BOOL NETWORK_IS_FRIEND(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsFriendHandleOnline.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aliases: ["0x87EB7A3FFCB314DB","_NETWORK_IS_FRIEND_ONLINE_2"]

```c
// 0x87EB7A3FFCB314DB
BOOL _NETWORK_IS_FRIEND_HANDLE_ONLINE(int* networkHandle);
BOOL _NETWORK_IS_FRIEND_HANDLE_ONLINE(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsGamerInMySession.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x0F10B05DDF8D16E9 0x59127716
BOOL NETWORK_IS_GAMER_IN_MY_SESSION(int* networkHandle);
BOOL NETWORK_IS_GAMER_IN_MY_SESSION(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsGamerMutedByMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0xCE60DE011B6C7978 0x001B4046
BOOL NETWORK_IS_GAMER_MUTED_BY_ME(int* networkHandle);
BOOL NETWORK_IS_GAMER_MUTED_BY_ME(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsGamerTalking.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x71C33B22606CD88A 0x99B58DBC
BOOL NETWORK_IS_GAMER_TALKING(int* networkHandle);
BOOL NETWORK_IS_GAMER_TALKING(Any* networkHandle);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsHandleValid.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x6F79B93B0A8E4133 0xF0996C6E
BOOL NETWORK_IS_HANDLE_VALID(int* networkHandle, int bufferSize);
BOOL NETWORK_IS_HANDLE_VALID(Any* networkHandle, int bufferSize);
```


Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsInactiveProfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x7E58745504313A2E 0x95481343
BOOL NETWORK_IS_INACTIVE_PROFILE(int* networkHandle);
BOOL NETWORK_IS_INACTIVE_PROFILE(Any* networkHandle);
```

Checks if the networkHandle is the same as any other user that is signed in on the local machine.
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsPartyMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x676ED266AADD31E0 0x1D0C929D
BOOL NETWORK_IS_PARTY_MEMBER(int* networkHandle);
BOOL NETWORK_IS_PARTY_MEMBER(Any* networkHandle);
```

```
Expand Down
2 changes: 1 addition & 1 deletion NETWORK/NetworkIsTransitionHostFromHandle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ns: NETWORK

```c
// 0x6B5C83BA3EFE6A10 0x0E2854C4
BOOL NETWORK_IS_TRANSITION_HOST_FROM_HANDLE(int* networkHandle);
BOOL NETWORK_IS_TRANSITION_HOST_FROM_HANDLE(Any* networkHandle);
```


Expand Down
Loading
Loading