Board index » delphi » Problems with importing Delphi 2.0 DLL's in Delphi 2.0
Martin Djern?s
![]() Delphi Developer |
Sun, 07 Nov 1999 03:00:00 GMT
Problems with importing Delphi 2.0 DLL's in Delphi 2.0Hi All, I have being making and importing DLL with Delphi 1.0 without any problems, I use only PChars, for not getting in to STRING troubles, and I have I import via a dynamic load - LoadLibrary & GetProcAddress. Example --- DLL Function MyFunc(X : Integer) : Boolean; StdCall; Export --- Import Type DllHandle := Loadlibrary('MyDll.DLL'); Any ideas what I do wrong? -- |