V1109. Function is deprecated. Consider switching to an equivalent newer function.
V1109 The 'PathRemoveFileSpecW' function is deprecated. Consider switching to an equivalent newer function. pyshellext.cpp 464
class DECLSPEC_UUID(CLASS_GUID) PyShellExt : public RuntimeClass<
RuntimeClassFlags<ClassicCom>,
IDropTarget,
IPersistFile
>
{
public:
STDMETHODIMP Load(LPCOLESTR pszFileName, DWORD dwMode) {
....
if (!PathRemoveFileSpecW(target_dir)) {
OutputDebugStringW(
L"PyShellExt::Load - failed to remove filespec from target"
);
return E_FAIL;
}
....
}
}
V1109 The 'CryptGenRandom' function is deprecated. Consider switching to an equivalent newer function. osRand.c 56
uint32_t taosSafeRand(void) {
....
if (!CryptGenRandom(hCryptProv, 4, &seed)) return seed;
....
}
Similar errors can be found in some other places:
V1109 The 'InitCommonControls' function is deprecated. Consider switching to an equivalent newer function. x64dbg_launcher.cpp 426
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nShowCmd)
{
InitCommonControls();
....
}
Similar errors can be found in some other places: