Unrecognized type 'char'

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!

check it out :wink:

if he wants char woudn’t TCHAR be better? unless he wants something byte-sized, then it would be int8

Just use FString! It’s UE4 string.

Solved, thank you very much!