jobim
(jobim)
1
Hi, I have a method that takes char* as input
UFUNCTION(BlueprintCallable, meta = (DisplayName = “SAMPLE Function”, Keywords = “SAMPLE function”), Category = “SAMPLE”)
void Sample(char* BufferIN, char* BufferOUT);
Unrecognized type ‘char’ - type must be a UCLASS, USTRUCT or UENUM
What type of data do I have to use?
Thanks!
Tobiw
(Tobiw)
3
if he wants char woudn’t TCHAR be better? unless he wants something byte-sized, then it would be int8
broly
(broly)
4
Just use FString! It’s UE4 string.
jobim
(jobim)
5
Solved, thank you very much!