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!

Search results for query: *

  1. oscillogoat

    Linking a DOS pascal program with VC++ 1.52 program

    I am trying to use a vc++ 1.52 program to call a DOS pascal program. MSDN says you can do this and gives the folowing void __pascal maxparam(int __near * a, int __near * b); main() { int a=5; int b=7; maxparam(&a,&b); } and the pascal... MODULE Psub; BEGIN IF a> b then...
  2. oscillogoat

    Calling C1.52 library from DOS pascal 3.31

    I am trying to call the mmsystem library that comes from VC 1.52 from MS-DOS pascal 3.31. I am Using the waveInGetNumDevs to test with. function waveInGetNumDevs:NumDevs:word; extern; result:= waveInGetNumDevs; The source compiles and successfully links but sends control back to Windows and...

Part and Inventory Search

Back
Top