News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Blocks and Bricks: A light OOP System

Started by HSE, November 10, 2023, 01:09:25 AM

Previous topic - Next topic

NoCforMe

Quote from: TimoVJL on December 26, 2023, 11:50:01 PMDidn't find proper links, but something for masm  :azn:
Object-Oriented Programming in Assembly Language

I'm really not at all interested in using OOP in my assembly-language programs. But that link (the Randall Hyde article) is definitely fascinating, just seeing how OOP is implemented at the lowest level, and I've bookmarked it for later. Thanks.
32-bit code and Windows 7 foreva!

daydreamer

thanks for the links Timo  :thumbsup:

@noCforMe
try subclass a button so it gets directly called to a proc instead of .IF in wndproc can sometimes be an advantage

my none asm creations
https://masm32.com/board/index.php?topic=6937.msg74303#msg74303
I am an Invoker
"An Invoker is a mage who specializes in the manipulation of raw and elemental energies."
Like SIMD coding

NoCforMe

Quote from: daydreamer on December 28, 2023, 07:23:45 AM@noCforMe
try subclass a button so it gets directly called to a proc instead of .IF in wndproc can sometimes be an advantage

Wellll, I often subclass controls, when I need to intercept messages to them that I can't otherwise get access to. But I don't see what in the world this has to do with OOP programming; it's just something you sometimes have to do to gain some kind of functionality for the control.
32-bit code and Windows 7 foreva!