@@ -31,19 +31,15 @@ struct FName
3131 {
3232 }
3333
34- // static TStaticIndirectArrayThreadSafeRead<FNameEntry, 2097152, 16384> * GetNames() { return NativeCall<TStaticIndirectArrayThreadSafeRead<FNameEntry, 2097152, 16384> *>(nullptr, "FName.GetNames"); }
3534 static FString* NameToDisplayString (FString* result, FString* InDisplayName, const bool bIsBool) { return NativeCall<FString*, FString*, FString*, const bool >(nullptr , " FName.NameToDisplayString" , result, InDisplayName, bIsBool); }
3635
37- // FName(const wchar_t* Name, EFindName FindType, bool __formal) { NativeCall<void, const wchar_t*, EFindName, bool>(this, "FName.FName", Name, FindType, __formal); }
38- FName (const wchar_t * Name, EFindName FindType, bool )
36+ FName (const char * Name, EFindName FindType)
3937 {
4038 Init (Name, 0 , FindType, true , -1 );
4139 }
4240
43- FName (const char * Name, EFindName FindType, bool __formal) { NativeCall<void , const char *, EFindName, bool >(this , " FName.FName" , Name, FindType, __formal); }
4441 bool operator ==(const wchar_t * Other) { return NativeCall<bool , const wchar_t *>(this , " FName.operator==" , Other); }
4542 int Compare (FName* Other) { return NativeCall<int , FName*>(this , " FName.Compare" , Other); }
46- void Init (const wchar_t * InName, int InNumber, EFindName FindType, bool bSplitName, int HardcodeIndex) { NativeCall<void , const wchar_t *, int , EFindName, bool , int >(this , " FName.Init" , InName, InNumber, FindType, bSplitName, HardcodeIndex); }
4743 void ToString (FString* Out) { NativeCall<void , FString*>(this , " FName.ToString" , Out); }
4844 FString ToString ()
4945 {
0 commit comments