News:

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

TBSAVEPARAMS

Started by zooba, January 15, 2006, 11:07:00 PM

Previous topic - Next topic

zooba

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>