fix: for the declaration of fb_ArrayGetDesc !

General FreeBASIC programming questions.
Post Reply
D.J.Peters
Posts: 8586
Joined: May 28, 2005 3:28
Contact:

fix: for the declaration of fb_ArrayGetDesc !

Post by D.J.Peters »

In file "/inc/fbc-int/array.bi" if not __FB_LANG__ = "fb" then the the declare must be changed.

Joshy

Code: Select all

# if __FB_LANG__ = "fb"
end namespace
declare function fb_ArrayGetDesc alias "fb_ArrayGetDesc" ( array() as any ) as FBC.FBARRAY ptr
#else
declare function fb_ArrayGetDesc alias "fb_ArrayGetDesc" ( array() as any ) as FBARRAY ptr
#endif
Post Reply