I wanted to answer this question by retrieving DLL timestamp, but it seems there is no DLL produced in Bundled mode.
It can be demonstrated by running this example from thinAir (okay), and from Bundled EXE (not okay, the DLL is not there).
uses "console", "file"
#Compiled
sub SayHi cdecl alias "SayHi"() export
print "Ciao"
end sub
#EndCompiled
printl "Output" in 14
printl Compiled_LastCompile_Output
printl "DLL name" in 14
printl Compiled_DLL_FileName
printl "DLL " + iif$(FILE_Exists(Compiled_DLL_FileName)>0, "EXISTS", "DOES NOT EXIST")
printl
printl "Function call" in 14
SayHi()
waitkey
Petr
Bookmarks