Hi !
I again have a new suggestion :
Would it be possible to include a .lib files that is containing functions in a Purelibrary that we would call from the pb file ?
Let me explain :
- I've got a .lib file with myfunction() into (which is not PB_myfunction and which won't be exported as a pb function)
- In my tailbite project (a purebasic file so), i will do :
Code: Select all
ProcedureDLL LibTesting()
;asm code which call myfunction, don't remember how we do this
EndProcedure
That way, the .lib file will be included in the tailbite project, and the function in the .lib file will be called by the LibTesting() command

Could you try to add that ?
Yes, i know it's quite difficult, but for example, you could add something to check the first line of the pbfile, and if it's
Code: Select all
;IncludeLib "mylib.lib" "muylib2.lib" "..."
Then it automatically include the libs, and we can then call the function into with an asm command
