Yoshi Posted October 24, 2013 Posted October 24, 2013 i created a gui with a few controls in c++. is there a way to use this gui in my asm project?
cypher Posted October 28, 2013 Posted October 28, 2013 I never tried this but my first idea would to make it a dll that creates the GUI and gives back references to dialogProc functions etc...Then you could use those values to interact. Or a better version of this would be a dll with exports for controlling it (setText, button click callbacks..)Then you wouldnt have to deal with WinAPI crap in your assembly and simply call the exports with little parameters. Other way could be dumping the plain resource information that make up the GUI and then using winAPI create the GUI from its resource and doing complete handling in asm. You could even pack those resource information into .data and then extract/map it to memory.However that would be way more complex than using a dll that does most of the job for you. Hope I could help... 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now