PB 5.73 Bug Threaded in DLL

Post bugreports for the Windows version here
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

PB 5.73 Bug Threaded in DLL

Post by User_Russian »

When the DLL has a command Threaded the application freezes on a function call OpenLibrary. This is in Windows XP. In Windows 7 no problems.
DLL code.

Code: Select all

Threaded x=0

ProcedureDLL Test()
  ProcedureReturn 1234
EndProcedure
Application code.

Code: Select all

Debug OpenLibrary(0, "Test.dll")