Hello Przemek

<<<
>     + #define NONAMELESSUNION

The above breaks MinGW compilation.

../../wvgwin.c:1617: error: structure has no member named `item'

You cannot use NONAMELESSUNION and then access union members without
union name.
>>>

Ok. I will remove it. I thought it is necessary for OW.

<<<
My second question is why you are trying to redefine structures from
windows header files?

   #ifdef UNICODE
   typedef struct tagTVINSERTSTRUCTW
   {
     HTREEITEM hParent;
     HTREEITEM hInsertAfter;
     TV_ITEMW  item;
   } TVINSERTSTRUCTW, FAR *LPTVINSERTSTRUCTW;
   #else
   typedef struct tagTVINSERTSTRUCTA
   {
     HTREEITEM hParent;
     HTREEITEM hInsertAfter;
     TV_ITEMA  item;
   } TVINSERTSTRUCTA, FAR *LPTVINSERTSTRUCTA;
   #endif
>>>

This I did long back in my personal lib which I pulled as is.
Do not remember now why I did so. I will try removing it.

<<<
This is very danger and may cause unpredictable results even if
you exactly copy the definition. Just simply windows needs
#pragma pack(...) for some definitions and such copied definitions
does not respect pack/alignment header settings at all.
Never make anything like that as long as it's not strictly necessary
and you very well know possible alignment interactions so you are
sure that it will work in all cases.
>>>

Knowledgeable words. Nowhere elese I did so except thi structure.

Regards
Pritpal Bedi

-- 
View this message in context: 
http://www.nabble.com/SF.net-SVN%3A-harbour-project%3A-10415--trunk-harbour-tp22165619p22182417.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to