You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
New FindSortedStringCaseInsensitive algorithm, which binary searches strings in an array. Many UHT string tests replaced with FindSortedStringCaseInsensitive. FPropertySpecifier moved to UHT. #codereview robert.manuszewski [CL 2587588 by Steve Robb in Main branch]
22 lines
698 B
Modula-2
22 lines
698 B
Modula-2
// FUNCTION_SPECIFIER(<specifier name>)
|
|
//
|
|
// Must be listed such that the strings are in lexicographical order!
|
|
|
|
FUNCTION_SPECIFIER(BlueprintAuthorityOnly)
|
|
FUNCTION_SPECIFIER(BlueprintCallable)
|
|
FUNCTION_SPECIFIER(BlueprintCosmetic)
|
|
FUNCTION_SPECIFIER(BlueprintImplementableEvent)
|
|
FUNCTION_SPECIFIER(BlueprintNativeEvent)
|
|
FUNCTION_SPECIFIER(BlueprintPure)
|
|
FUNCTION_SPECIFIER(Client)
|
|
FUNCTION_SPECIFIER(CustomThunk)
|
|
FUNCTION_SPECIFIER(Exec)
|
|
FUNCTION_SPECIFIER(NetMulticast)
|
|
FUNCTION_SPECIFIER(Reliable)
|
|
FUNCTION_SPECIFIER(SealedEvent)
|
|
FUNCTION_SPECIFIER(Server)
|
|
FUNCTION_SPECIFIER(ServiceRequest)
|
|
FUNCTION_SPECIFIER(ServiceResponse)
|
|
FUNCTION_SPECIFIER(Unreliable)
|
|
FUNCTION_SPECIFIER(WithValidation)
|