Hi, is there a way to make API calls to arbitrary DLLs from Squeak projects based on v2 sources ?

I know that in v3 you can define a method which calls
<apicall: M module: 'D.dll'>,
where D is the dll, and M is the c-style definition of a method stored inside the DLL.
(This kind of statement can access any DLL, so the DLL doesn't need to be defined to be a loadable Squeak module with proper primitives).


I would like to do the same from v2, is it possible ?

Thanks.

PS: If there is a better place to search for this kind of info, please let me know also.