September 21st, 2009 10:23 AM
thanks again - it's working fine ....
September 8th, 2009 11:38 AM
I'm quite a Watcom-fan :-) the debugger is really great - just missing the possibility to code in teh debugger like in VS and changing from debugging to coding.
Thanks for responding. I'll give...
September 8th, 2009 08:26 AM
it's plain C - the DLL I'm talking about at least.
This name decoration with underscore is an old 16 bit thing - afaik.
Add the @4 is showing the bytecount of the parameters. If two long would be...
September 8th, 2009 07:17 AM
it seems so :-)
maybe start with C#, as C++ and the WinAPI is dealing a lot with pointers.
Your problem ist, that you must now print your variables, not the pointers.
If there isn't an...
September 8th, 2009 07:06 AM
Hi,
my problem is, that I have to compile a few programs with VS2005 and other programs with Watcom (OpenWatcom to be exact). A lot of DLLs, most of them with stdcall calling convention.
Watcom...
September 8th, 2009 06:50 AM
that's wrong
C++ ist only the coding language - but you must have some background knowledge to use your compiler properly, doesn't matter whether it is VS-6 or VS2005 or VS2008 or Watcom ...
September 8th, 2009 06:12 AM
Actually, your program should crash, if you are coding it like this.
What you are doing, is defining some pointers to those large integers. But you must define your variables and use the pointers...