| 452 | |
| 453 | |
| 454 | void PASCAL RARSetPassword(HANDLE hArcData,char *Password) |
| 455 | { |
| 456 | #ifndef RAR_NOCRYPT |
| 457 | DataSet *Data=(DataSet *)hArcData; |
| 458 | wchar PasswordW[MAXPASSWORD]; |
| 459 | GetWideName(Password,NULL,PasswordW,ASIZE(PasswordW)); |
| 460 | Data->Cmd.Password.Set(PasswordW); |
| 461 | cleandata(PasswordW,sizeof(PasswordW)); |
| 462 | #endif |
| 463 | } |
| 464 | |
| 465 | |
| 466 | int PASCAL RARGetDllVersion() |
nothing calls this directly
no test coverage detected