Send MinGW-Notify mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.osdn.me/mailman/listinfo/mingw-notify
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of MinGW-Notify digest..."
Please do not reply to this notification; the sender address is unable to
accept incoming e-mail. If you wish to unsubscribe you can do so at
https://lists.osdn.me/mailman/listinfo/mingw-notify.
Today's Topics:
1. [mingw] #41072: The definition of tagRAWHID is wrong
(MinGW Notification List)
2. [mingw] #41071: Add publicly known LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE (MinGW Notification List)
3. [mingw] #41071: Add publicly known LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE (MinGW Notification List)
4. [mingw] #41071: Add publicly known LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE (MinGW Notification List)
----------------------------------------------------------------------
Message: 1
Date: Sun, 07 Feb 2021 16:11:33 +0000
From: MinGW Notification List <[email protected]>
To: OSDN Ticket System <[email protected]>
Subject: [MinGW-Notify] [mingw] #41072: The definition of tagRAWHID is
wrong
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
#41072: The definition of tagRAWHID is wrong
Open Date: 2020-12-24 12:03
Last Update: 2021-02-07 16:11
URL for this Ticket:
https://osdn.net//projects/mingw/ticket/41072
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41072
---------------------------------------------------------------------
Last Changes/Comment on this Ticket:
2021-02-07 16:11 Updated by: keith
* Details Updated
* Summary Updated
---------------------------------------------------------------------
Ticket Status:
Reporter: royqh1979
Owner: (None)
Type: Issues
Status: Open
Priority: 5 - Medium
MileStone: (None)
Component: (None)
Severity: 5 - Medium
Resolution: None
---------------------------------------------------------------------
Ticket details:
According to MSDN
https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-rawhid
the definition of tagRAWHID is as the following:
typedef struct tagRAWHID { ... BYTE bRawData[1]; } ...;but in mingw’s
win32.h, the definition is :
typedef struct tagRAWHID { ... BYTE bRawData; } ...;Freeglut 3.2.1 can't
compile with this definition, the error is :
F:\Temp\test\freeglut-3.2.1\src\mswin\fg_spaceball_mswin.c:169:71: error:
subscripted value is neither array nor pointer nor vector
169 | short* pnData =
(short*)(&pRawInput->data.hid.bRawData[1]);
--
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN
Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net
URL for this Ticket:
https://osdn.net/projects/mingw/ticket/41072
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41072
------------------------------
Message: 2
Date: Mon, 08 Feb 2021 03:32:14 +0900
From: MinGW Notification List <[email protected]>
To: OSDN Ticket System <[email protected]>
Subject: [MinGW-Notify] [mingw] #41071: Add publicly known LCS_sRGB
and LCS_WINDOWS_COLOR_SPACE
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
#41071: Add publicly known LCS_sRGB and LCS_WINDOWS_COLOR_SPACE
Open Date: 2020-12-24 06:52
Last Update: 2021-02-08 03:32
URL for this Ticket:
https://osdn.net//projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
---------------------------------------------------------------------
Last Changes/Comment on this Ticket:
2021-02-08 03:32 Updated by: apodtele
Comment:
A diff is attached.
I also found multiple discrepancies with this block
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/55961a7b-f6f6-4f0b-a76b-b4cf652bc86b
but I am not sure if you want to correct or just add them.
---------------------------------------------------------------------
Ticket Status:
Reporter: apodtele
Owner: (None)
Type: Feature Request
Status: Open
Priority: 5 - Medium
MileStone: (None)
Component: (None)
Severity: 5 - Medium
Resolution: None
---------------------------------------------------------------------
Ticket details:
Here is a public source to add definitions of LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/eb4bbd50-b3ce-4917-895c-be31f214797f
Also here is public definitions of PROFILE_LINKED and PROFILE_EMBEDDED with and
without LCS_ prefix
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/3c289fe1-c42e-42f6-b125-4b5fc49a2b20
Please add to wingdi.h
--
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN
Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net
URL for this Ticket:
https://osdn.net/projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
------------------------------
Message: 3
Date: Sun, 07 Feb 2021 22:15:20 +0000
From: MinGW Notification List <[email protected]>
To: OSDN Ticket System <[email protected]>
Subject: [MinGW-Notify] [mingw] #41071: Add publicly known LCS_sRGB
and LCS_WINDOWS_COLOR_SPACE
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
#41071: Add publicly known LCS_sRGB and LCS_WINDOWS_COLOR_SPACE
Open Date: 2020-12-23 21:52
Last Update: 2021-02-07 22:15
URL for this Ticket:
https://osdn.net//projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
---------------------------------------------------------------------
Last Changes/Comment on this Ticket:
2021-02-07 22:15 Updated by: keith
* Owner Update from (None) to keith
Comment:
Reply To apodtele
A diff is attached.
Thanks. That is helpful ... although you did do exactly what I asked you not
to, w.r.t. the ChangeLog entry, so I've taken the liberty of correcting it for
you. I've also made some minor layout adjustments, so that this appears
correct in the patch, as well as in the <wingdi.h> file itself.
I also found multiple discrepancies with this block
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/55961a7b-f6f6-4f0b-a76b-b4cf652bc86b
but I am not sure if you want to correct or just add them.
If anything else is missing, then please add it; if it's already present, but
incorrect, then please correct it.
Perhaps you could also clarify something for me: in the Microsoft docs, to
which you referred me, I see no reference to PROFILE_LINKED, or to
PROFILE_EMBEDDED, as aliases for LCS_PROFILE_LINKED, and LCS_PROFILE_EMBEDDED
respectively. Whilst I don't mind leaving the aliases in place, can you please
provide alternative references to justify doing so?
---------------------------------------------------------------------
Ticket Status:
Reporter: apodtele
Owner: keith
Type: Feature Request
Status: Open [Owner assigned]
Priority: 5 - Medium
MileStone: (None)
Component: (None)
Severity: 5 - Medium
Resolution: None
---------------------------------------------------------------------
Ticket details:
Here is a public source to add definitions of LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/eb4bbd50-b3ce-4917-895c-be31f214797f
Also here is public definitions of PROFILE_LINKED and PROFILE_EMBEDDED with and
without LCS_ prefix
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/3c289fe1-c42e-42f6-b125-4b5fc49a2b20
Please add to wingdi.h
--
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN
Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net
URL for this Ticket:
https://osdn.net/projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
------------------------------
Message: 4
Date: Mon, 08 Feb 2021 11:29:47 +0900
From: MinGW Notification List <[email protected]>
To: OSDN Ticket System <[email protected]>
Subject: [MinGW-Notify] [mingw] #41071: Add publicly known LCS_sRGB
and LCS_WINDOWS_COLOR_SPACE
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
#41071: Add publicly known LCS_sRGB and LCS_WINDOWS_COLOR_SPACE
Open Date: 2020-12-24 06:52
Last Update: 2021-02-08 11:29
URL for this Ticket:
https://osdn.net//projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
---------------------------------------------------------------------
Last Changes/Comment on this Ticket:
2021-02-08 11:29 Updated by: apodtele
Comment:
Re. PROFILE_* vs LCS_PROFILE_*
I just see both used in MS docs: BITMAPV5HEADER and BitmapV5Header Object. Go
figure.
---------------------------------------------------------------------
Ticket Status:
Reporter: apodtele
Owner: keith
Type: Feature Request
Status: Open [Owner assigned]
Priority: 5 - Medium
MileStone: (None)
Component: (None)
Severity: 5 - Medium
Resolution: None
---------------------------------------------------------------------
Ticket details:
Here is a public source to add definitions of LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/eb4bbd50-b3ce-4917-895c-be31f214797f
Also here is public definitions of PROFILE_LINKED and PROFILE_EMBEDDED with and
without LCS_ prefix
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/3c289fe1-c42e-42f6-b125-4b5fc49a2b20
Please add to wingdi.h
--
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN
Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net
URL for this Ticket:
https://osdn.net/projects/mingw/ticket/41071
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41071
------------------------------
Subject: Digest Footer
_______________________________________________
MinGW-Notify mailing list
[email protected]
https://lists.osdn.me/mailman/listinfo/mingw-notify
------------------------------
End of MinGW-Notify Digest, Vol 41, Issue 6
*******************************************