bool Get(const CString& szURL,CString& szHTML)
{
...
}
pEngine->RegisterObjectMethod("Http","bool get(const string &in,string &out)", asMETHOD(CHttp,Get),asCALL_THISCALL);
Problem with function parameters
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:
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
What version of AngelScript are you using? I seem to remember fixing a problem similar to this before.
I'll look into it anyway.
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
I haven't been able to reproduce this problem.
Are you using any special settings, such AS_ALLOW_UNSAFE_REFERENCES, or AS_MAX_PORTABILITY?
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
Popular Topics
Advertisement