Thanks for your answer.
Adding D:\PSDK\Bin to additional path correct the problem.
Does someone could explain me the following message:

Now, I have another error message:
:: === Test, default ===
LINK:: fatal error LNK1158: cannot run 'cvtres.exe'
:: === Build finished: 1 errors, 0 warnings ===
cvtres.exe does not seems to exists into Windows SDH and Visual Toolkit.
I have this executable on my PC but into masm32\bin folder.
I correct this problem by adding D:\PSDK\Bin\win64 into Additional Path.
Now I have these error messages:
main.obj:: error LNK2019: unresolved external symbol __imp__wsprintfA referenced in function "char * __cdecl Keygen(char *,char *)" (?Keygen@@YAPADPAD0@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__GetDlgItem@8 referenced in function "int __cdecl InitializeApp(struct HWND__ *,unsigned int,long)" (?InitializeApp@@YAHPAUHWND__@@IJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__EndDialog@8 referenced in function "int __stdcall DialogFunc(struct HWND__ *,unsigned int,unsigned int,long)" (?DialogFunc@@YGHPAUHWND__@@IIJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__MessageBoxA@16 referenced in function "int __stdcall DialogFunc(struct HWND__ *,unsigned int,unsigned int,long)" (?DialogFunc@@YGHPAUHWND__@@IIJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__SetWindowTextA@8 referenced in function "int __stdcall DialogFunc(struct HWND__ *,unsigned int,unsigned int,long)" (?DialogFunc@@YGHPAUHWND__@@IIJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__GetWindowTextA@12 referenced in function "int __stdcall DialogFunc(struct HWND__ *,unsigned int,unsigned int,long)" (?DialogFunc@@YGHPAUHWND__@@IIJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__EnableWindow@8 referenced in function "int __stdcall DialogFunc(struct HWND__ *,unsigned int,unsigned int,long)" (?DialogFunc@@YGHPAUHWND__@@IIJ@Z)
main.obj:: error LNK2019: unresolved external symbol __imp__DialogBoxParamA@20 referenced in function _WinMain@16
Test.exe:: fatal error LNK1120: 8 unresolved externals
:: === Build finished: 9 errors, 0 warnings ===
Is it due to cdecl and stdcall incompatibility?