Topic: DLL in OS/2 environment
Author: sinha@ibm.net
Date: 1995/04/24 Raw View
Is it possible to make a whole application ( written by using UI classes of C Set ++)
a DLL. SO that another app will just invoke a function imported to it. I was able to
make the DLL but when I try to invoke it from an *.exe with only function
void main () { invoke_wholeApp(); } ; . The apps finds the DLL and invoke this
function, but then it fails ( in the sense, it is unable to create the PM window)
without getting any sys error msg . It seems like maybe there is a special need
to have stack-space for DLL. I was also trying to create and register windows
in the init routine of the dll, but no luck.
Thanks