yep, but even with putting a ProcedureDLL (i have thousand of them in fact) in the file that includes the one i gave you, it still creates a resident fileEl_Choni wrote:Polo:
There needs to be at least one ProcedureDLL for your code to be converted to a purelib, but there isn't any in your file. ProcedureDLLs get converted to PB functions. Simple procedures are just code used by those functions, and are discarded if no ProcedureDLL is found, so TailBite assumes that you're trying to build a resident file.
TailBite 1.0 Preview, soon in PureProject and PureArea
Moderators: gnozal, ABBKlaus, lexvictory
Well, in fact, i've just tested this :
I try to Tailbite it, it just make a resident...
Code: Select all
ProcedureDLL test()
EndProcedureI got an error with PR1.3
Code: Select all
ProcedureDLL.l test()
Static w.l = 1
w+1
ProcedureReturn w
EndProcedureBelive! C++ version of Puzzle of Mystralia
Bug Planet
<Wrapper>4PB, PB<game>, =QONK=, PetriDish, Movie2Image, PictureManager,...
Bug Planet
<Wrapper>4PB, PB<game>, =QONK=, PetriDish, Movie2Image, PictureManager,...
No, i meant that :El_Choni wrote:But, Polo, in that include there are only Procedures, not ProcedureDLLs, so the lib won't be compiled. What would you expect it to do? Compile a lib with no functions? Sorry, I don't understand
Code: Select all
IncludeFile "myfile.pbi"
ProcedureDLL test()
EndProcedure@El_Choni:
i wrote you a PM with a bug report and now i found another bug with the lastest version. i did a small example of the latest bug i found:
returns only "???????????" ^^
however, if you use the command and compile to an exe... you can read the string with an hexed in the file ^^ Btw, when using this command, 1 k will be added to the exe. Is this due fact that PB will link _SYS_InitString to the exe too?
i wrote you a PM with a bug report and now i found another bug with the lastest version. i did a small example of the latest bug i found:
Code: Select all
ProcedureDLL.s Test_ReturnString() ; Trying to return a string...
Protected info.s
info.s = "Are you able to read this string when calling the command?"
ProcedureReturn info.s
EndProcedure
however, if you use the command and compile to an exe... you can read the string with an hexed in the file ^^ Btw, when using this command, 1 k will be added to the exe. Is this due fact that PB will link _SYS_InitString to the exe too?
va!n aka Thorsten
Intel i7-980X Extreme Edition, 12 GB DDR3, Radeon 5870 2GB, Windows7 x64,
Intel i7-980X Extreme Edition, 12 GB DDR3, Radeon 5870 2GB, Windows7 x64,

