This ticket is connected to Q444062.
There's an implemented fix for the former conflicting HDC redefinition in the build 2.2 but the rest of the reported conflicting names are still there. So the attached project from Q444062 still can't be compiled without some .hpp alteration.
To be more specific there are several naming conflicts for:
- SelectFont
- GetNextSibling
- GetPrevSibling
in the dxPS domain.
Hello,
I have just checked the sample project from your Redefining HRGN and HDC types leads to conflicts in C++Builder ticket with latest VCL 12.2.2 controls and C++Builder XE2. It operates without any exceptions or warnings on my side. Would you please clarify the issue in greater detail? A small sample project demonstrating the problem would be much appreciated.
I use the same project from Q444062.
That is my compiler log.
Checking project dependencies…
Compiling Project1.cbproj (Debug, Win32)
bcc32 command line for "Unit1.cpp"
c:\program files (x86)\embarcadero\rad studio\9.0\bin\bcc32.exe -D_DEBUG -D_RTLDLL;USEPACKAGES -n.\Win32\Debug -I"c:\program files
(x86)\embarcadero\rad studio\9.0\include\windows\vcl";"C:\Program Files (x86)\DevExpress VCL\Library\RS16";"c:\program files (x86)\embarcadero\rad
studio\9.0\include";"c:\program files (x86)\embarcadero\rad studio\9.0\include\dinkumware";"c:\program files (x86)\embarcadero\rad
studio\9.0\include\windows\crtl";"c:\program files (x86)\embarcadero\rad studio\9.0\include\windows\sdk";"c:\program files (x86)\embarcadero\rad
studio\9.0\include\windows\rtl";"c:\program files (x86)\embarcadero\rad studio\9.0\include\windows\vcl";"C:\Program Files
(x86)\Raize\CS5\Lib\RS-XE2\Win32";"C:\Program Files (x86)\DevExpress VCL\Library\RS16";"c:\program files (x86)\embarcadero\rad
studio\9.0\include\windows\vcl\design";"C:\Users\Public\Documents\RAD Studio\9.0\hpp" -y -Q -k -r- -c -tM -tU -tW -C8 -o.\Win32\Debug\Unit1.obj
-w-par -Od -v -vi- -H=.\Win32\Debug\Project1.pch -H Unit1.cpp
[BCC32 Error] dxPSPDFExportCore.hpp(264): E2219 Wrong number of arguments in call of macro 'SelectFont'
Full parser context
Unit1.cpp(8): #include Unit1.h
Unit1.h(15): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSCompsProvider.hpp
dxPSCompsProvider.hpp(18): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSCore.hpp
dxPSCore.hpp(52): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSPDFExportCore.hpp
dxPSPDFExportCore.hpp(35): namespace Dxpspdfexportcore
dxPSPDFExportCore.hpp(241): class TdxPSPDFPageContent
[BCC32 Error] dxPSPDFExportCore.hpp(264): E2321 Declaration does not specify a tag or an identifier
Full parser context
Unit1.cpp(8): #include Unit1.h
Unit1.h(15): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSCompsProvider.hpp
dxPSCompsProvider.hpp(18): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSCore.hpp
dxPSCore.hpp(52): #include C:\Program Files (x86)\DevExpress VCL\Library\RS16\dxPSPDFExportCore.hpp
dxPSPDFExportCore.hpp(35): namespace Dxpspdfexportcore
dxPSPDFExportCore.hpp(241): class TdxPSPDFPageContent
Failed
Elapsed time: 00:00:02.9
Select Font is a macro defined in windowsx.h
#define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont)))
So I couldn't even imagine how you managed to compile my project flawlessly…
The same is for TdxReportItem.GetNextSibling and GetPrevSibling methods.
Those are macros form windowsx.h as well:
#define GetNextSibling(hwnd) GetWindow(hwnd, GW_HWNDNEXT)
#define GetPrevSibling(hwnd) GetWindow(hwnd, GW_HWNDPREV)
We are working on your request, but it can take us some time to examine it. I will get back to you once we have any results or need additional information. Thank you for your patience.
Status: Reproduced. Forwarded to developers.
IIRC the VCL standard TTreeView has methode "getNextSibling" and similar with lower case "g". I guess this is exactly to circumvent this issue.