The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: qWord on May 18, 2010, 01:26:15 AM

Title: some bugs
Post by: qWord on May 18, 2010, 01:26:15 AM
I've found this in windows.inc:
TOOLTIPTEXTW equ NMTTDISPINFOW
...
NMTTDISPINFOW equ TOOLTIPTEXTW

it should be:
NMTTDISPINFOW STRUCT
  hdr               NMHDR  <>
  lpszText          PWCHAR  ?
  _szText           WCHAR 80 dup(?)
  hinst             HINSTANCE ?
  uFlags            UINT ?
  lParam            LPARAM ?
NMTTDISPINFOW ENDS


I also found this two lines that wont work:
LPSTR_TEXTCALLBACKA equ ((LPSTR)-1L)
I_COLUMNSCALLBACK equ ((UINT)-1)


regards, qWord