Setting a default value for argument type ".p-utf8"
Posted: Sun Jan 05, 2020 4:09 pm
				
				Hi All,
Is it possible to set a default value in a prototype for an argument of type .p-utf8
Eg:
I'd like to do something like:
But I cannot, I can with a .s but my library only supports UTF8, I only can do 
Cheers, 
Hippy
			Is it possible to set a default value in a prototype for an argument of type .p-utf8
Eg:
Code: Select all
PrototypeC ___igShowFontSelector_pr(label.p-utf8)  ; void igShowFontSelector(const char* label);Code: Select all
PrototypeC ___igShowFontSelector_pr(label.p-utf8="Default Value")  ; void igShowFontSelector(const char* label);Code: Select all
(label.p-utf8=0)Hippy