>Hello All,
>
[quoted text clipped - 13 lines]
>acting strange, you may want to do the same thing and see if it fixes
>the problem.
My first GUESS is that there was a difference in the precompiled headers
and the Libraries perhaps when you updated to 8.3 you didn't rebuild
the Windows libraries or precompiled headers.
Ron

Signature
Metrowerks, maker of CodeWarrior - "Software Starts Here"
Ron Liechty - MWRon@metrowerks.com - <http://www.metrowerks.com>
Gordon Tillman - 21 Jan 2004 18:26 GMT
Howdy Ron!
> My first GUESS is that there was a difference in the precompiled headers
> and the Libraries perhaps when you updated to 8.3 you didn't rebuild
> the Windows libraries or precompiled headers.
'tis possible! It was a really strange deal because native calls to
the dll that either didn't return anything, or only returned an int ran
just fine. But native calls functions that returned a String crashed
big time...
--g
MW Ron - 21 Jan 2004 19:59 GMT
>Howdy Ron!
>
[quoted text clipped - 6 lines]
>just fine. But native calls functions that returned a String crashed
>big time...
You have the wrong headers. C doesn't require a prototype, so it made
one up using the default return type as an int. So anything that
returned a string or pointer etc don't work.
Ron

Signature
Metrowerks, maker of CodeWarrior - "Software Starts Here"
Ron Liechty - MWRon@metrowerks.com - <http://www.metrowerks.com>