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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by TomAthan

  1. TomAthan

    Queue's

    "\My Documents\OOP\project1\p1.cpp(84) : error C2440: '=' : cannot convert from 'void *' to 'struct queueNode *' Conversion from 'void*' to pointer to non-'void' requires an explicit cast" --> when you call malloc you are not casting to the pointer type you need. All calls to...
  2. TomAthan

    calling a vb dll from java

    Well here is my 2 cents... I played with JNI for a bit with both C++ and Delphi. In order for it to work with Delphi all I had to do was hunt down the appropriate files to include with the DLL (which were really just the C++ header files converted into Object Pascal format) and that worked fine...
  3. TomAthan

    Calling a DLL from Java

    You have to use the JNI (JAVA Native Interface) API. I did it a while back and I don't remember exactly how it's done but one of the things that really bothered me about it is that you have to write the function specifically for JAVA that you are calling (the function declaration is whacky too)...

Part and Inventory Search

Back
Top