mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[MSTSC]
* Don't use _swprintf in the MSVC build, it shouldn't be exported. CORE-8174 svn path=/trunk/; revision=63471
This commit is contained in:
parent
643b00912f
commit
eebbc5e6b4
1 changed files with 5 additions and 13 deletions
|
@ -647,19 +647,11 @@ OnResolutionChanged(PINFO pInfo, INT position)
|
|||
Pixel,
|
||||
sizeof(Pixel) / sizeof(WCHAR)))
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
_swprintf(Buffer,
|
||||
Pixel,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsWidth,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsHeight,
|
||||
Pixel);
|
||||
#else
|
||||
swprintf(Buffer,
|
||||
Pixel,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsWidth,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsHeight,
|
||||
Pixel);
|
||||
#endif
|
||||
swprintf(Buffer,
|
||||
Pixel,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsWidth,
|
||||
pInfo->DisplayDeviceList->Resolutions[position].dmPelsHeight,
|
||||
Pixel);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue