http://bugs.winehq.org/show_bug.cgi?id=29845
Bug #: 29845 Summary: reserved identifier violation Product: Wine Version: unspecified Platform: All OS/Version: All Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: Markus.Elfring@web.de Classification: Unclassified
I suggest to try the search pattern "<_(?:(?:_(.*))|([A-Z]+))" on source files. A couple of places will be found where names begin with two underscores or an underscore and an uppercase letter.
Examples: - __WINE_ACCCTRL_H
http://source.winehq.org/git/wine.git/blob/360a3f914235e04216a3691390662885c...
- _SI_OBJECT_INFO
http://source.winehq.org/git/wine.git/blob/0453b03e86fb28f3f87f1a51c69946157...
- _Lockit
http://source.winehq.org/git/wine.git/blob/e3174d93d8c898ea6ecd9c8d8f9bb5b9f...
This usage does not fit to the expected naming conventions of the C language standard. https://www.securecoding.cert.org/confluence/display/seccode/DCL37-C.+Do+not...