🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Problem with function parameters

Started by
2 comments, last by WitchLord 17 years, 9 months ago
I register a string class based on ATL's CString (pretty standard, registered as CDA). In addition, I have a function to download a page from the net:

bool Get(const CString& szURL,CString& szHTML)
{
...
}

pEngine->RegisterObjectMethod("Http","bool get(const string &in,string &out)", asMETHOD(CHttp,Get),asCALL_THISCALL);

I can't use szHTML in my code since it's always null. I can declare the function as &inout which should work, but I wonder what I'm doing wrong in my code. Gilad
Advertisement
What version of AngelScript are you using? I seem to remember fixing a problem similar to this before.

I'll look into it anyway.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

2.7
I haven't been able to reproduce this problem.

Are you using any special settings, such AS_ALLOW_UNSAFE_REFERENCES, or AS_MAX_PORTABILITY?

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement