Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello everyone.

I'm working on the application that reads certain file and saves it into a bit different format. I'm using ZLib to read some compressed information in file, but 2GB of RAM is not enough to read the whole file. I have to use x64 but I can't link my app to ZLib. What can I do, please give me an advice.

Thanks.
Posted

1 solution

You cannot mix 32-bit and 64-bit binaries.
You should be able to find 64-bit binaries for ZLib.
If not take the source code and build it for x64.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 15-Jan-12 20:57pm    
Correct, a 5. Well there is also a way to create a separate process and bind it with IPC but this is overly complex and sloppy at the same time.
--SA
Anruin 16-Jan-12 0:19am    
Thank you for your advices.
Albert Holguin 16-Jan-12 16:35pm    
They don't have pre-built dlls for 64bit, but they do have the source to build it yourself... +5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900