A literal string can't be bigger than 8192 characters
Posted: Sat Sep 20, 2014 9:41 pm
Hi,
Do strings have a maximum length ?
If yes, is there a way to retrieve a longer string from DLL procedure ?
Do strings have a maximum length ?
If yes, is there a way to retrieve a longer string from DLL procedure ?
Code: Select all
ProcedureDLL.s GetDialogXML()
Global xml.s="<dialog>"+
"......"+
"......"+
"......"+
"</dialog>"
ProcedureReturn xml
EndProcedure
Code: Select all
--------------------------------------------------------------------------------
Building 'DLL'...
--------------------------------------------------------------------------------
Including: PluginInclude.pbi
Line 1126: A literal string can't be bigger than 8192 characters.
--------------------------------------------------------------------------------
Building 'DLL - x86'...
--------------------------------------------------------------------------------
Using compiler: PureBasic 5.30 (Windows - x86)
Including: PluginInclude.pbi
Line 1126: A literal string can't be bigger than 8192 characters.
--------------------------------------------------------------------------------