Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dll problem

Status
Not open for further replies.

martin123123

Programmer
Jun 23, 2003
18
0
0
NO
hi everyone.

i've created a dll with lots of procedures and functions
in my main app, i'm trouble when predeclaring my functions from the dll
here's how i declare them:

function frigjor_query(var Query: TADOQuery): boolean; external 'valutadll10.dll'

some of my functions work, but when i try to use some dll functions that calls another function in the dll, my app fails to initialize..

must dll functions that use other functions in the dll be export in another way?

 
i forgot to say how i export them...

function frigjor_query(var Query: TADOQuery): boolean; stdcall;export;

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top