The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: zooba on January 15, 2006, 11:07:00 PM

Title: TBSAVEPARAMS
Post by: zooba on January 15, 2006, 11:07:00 PM
I'm right this time!  :toothy

TBSAVEPARAMSA STRUCT
  hkr               DWORD  ?
  pszSubKey         DWORD  ?
  pszValueName      DWORD  ?
TBSAVEPARAMSA ENDS

TBSAVEPARAMS equ <TBSAVEPARAMS>


Nothing wrong with the structure (I don't think), but the equate after it is a circular reference. Should be:

TBSAVEPARAMS equ <TBSAVEPARAMSA>