Page 1 of 1

What is "__sequrity_cookie" & "__sequrity

PostPosted: Nov 5, 2006 @ 9:28pm
by Nomad
Hi!

When I use following code:

zipFile.resolveFile(&imageFile, pBuffer)

where pBuffer: WCHAR pBuffer[100];

I get "Unresolved external symbol" linker error with subject symbols (__sequrity_cookie & __sequrity_check_cookie)

Is that means that I can't pass to resolveFile() non constant buffer?

PostPosted: Nov 5, 2006 @ 9:53pm
by Nomad
Strange, but when I changed static buffer to dynamic ( WCHAR* pBuffer = new WCHAR[100]; ) code was linked normally without error.

Can somebody explain why I can't use static buffer in Pocket PC version? This is not critical but just interasting.

PostPosted: Nov 5, 2006 @ 11:19pm
by Matias
About what PocketPC version are you talking about, 2002, 2003, 2005? Compiling for emulator or for the pocket pc?

I cannot reproduce your error. Can you post the entire code, please?

Where is declared the variable, where is initialized, where you call the resolveFile method, etc

PostPosted: Nov 5, 2006 @ 11:38pm
by Nomad

PostPosted: Nov 5, 2006 @ 11:55pm
by Nomad

PostPosted: Nov 6, 2006 @ 1:30am
by Matias