Basic GUI templates

Started by Vortex, Yesterday at 09:16:24 PM

Previous topic - Next topic

Vortex

Hello,

Here is a bare bone 64-bit example displaying a window. The code is reviewed to be compatible with Poasm Version 13. A dialog example will come later.
Code it... That's all...

Quin

Cool stuff, thanks Vortex! I want to get into assembly with Poasm, and this is a super cool jumping off point. And the binary is just 3 KB!

TimoVJL

Quote from: Quin on Yesterday at 11:50:19 PMCool stuff, thanks Vortex! I want to get into assembly with Poasm, and this is a super cool jumping off point. And the binary is just 3 KB!
Actually C can made small prorams too without crt or with crt from dll.
A x64 have more standard sections in exe, so size starts from 4 kb without tricks.
Just use pope.exe to check those things.
May the source be with you

Quin

Quote from: TimoVJL on Today at 04:42:00 PM
Quote from: Quin on Yesterday at 11:50:19 PMCool stuff, thanks Vortex! I want to get into assembly with Poasm, and this is a super cool jumping off point. And the binary is just 3 KB!
Actually C can made small prorams too without crt or with crt from dll.
A x64 have more standard sections in exe, so size starts from 4 kb without tricks.
Just use pope.exe to check those things.

Quite true, if you want a really lean and mean executable, use only the Windows API with no CRT :)