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 Mike Lewis 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. mikigcm

    Simple Macro not compiling in C

    Thank you guys! you're abolutely right on. But, a lingering question... Why is it that this worked on a unix C-compiler (as is). Are there compiler options to set? just curious. In the meantime, I can modify all these macros manually.
  2. mikigcm

    Simple Macro not compiling in C

    Hi, A macro previously used with Unix C compiler is not compiling with MSDEV. Am I missing something obvious!> Here is the macro: #define LIMITTO(lwlim, uplim, input1, output1) if (input1 > uplim) { output1 = input1 - (uplim-lwlim); } else if (input1 < lwlim) { output1...
  3. mikigcm

    C++ Debug Assertion Failed after constructing new object in DLL

    Hi everyone, I am hoping someone can help me out with this problem. Using MSDEV VC++ 6 / Win2K. I am having a Debug Assertion Failed! Message (_CrtIsValidHeapPointer) after the construction of new object constructor which is being handled in a DLL. (i.e. in Debugger mode, it appears as <<User...

Part and Inventory Search

Back
Top