|
To find such things, it is very convenient to use the commands provided by the system, just like finding things under linux
Than to find out whether the FindWindow function has unicode and ASNI versions
First go to the vc installation directory, for example: d:\installdir\vc98\include
findstr /I /N /S /C:"FindWindow" *.h will do
result
WINUSER.H:6728:#define FindWindow FindWindowW
WINUSER.H:6730:#define FindWindow FindWindowA
At a glance |
|