News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

History of windows.inc LV_COLUMN structure

Started by greenhorn, March 22, 2009, 11:13:13 PM

Previous topic - Next topic

greenhorn

Does anyone know the history of where the following came from:

imask  DWORD  ?
lx        DWORD  ?

Win32 API and MS SDK API lists these 2 as:

UINT mask;
int cx;

I fully assume that if windows.inc is updated, there are a lot of existing programs that will not compile, but it would be interesting to know how this came about.

BTW, there are several differences between the Win32 API and the MS SDK API if anyone is interested.

Thanks,

hutch--

With MASM you are restricted from using reserve words and registers so if an SDK header file has either the member must be renamed to use it with MASM.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

greenhorn

Thanks hutch, I should have stopped to think that cx is a register.