关于DLL
S海鸥 2003-08-14 12:14:40 pass.pas
Function Decrypt(sSignature, sSource: PChar; sDest: PChar): Boolean; stdcall;
implementation
Function Decrypt(sSignature, sSource: PChar; sDest: PChar): Boolean;
external 'PASSWD.DLL';
1. stdcall; 其参数传递从右到左 是什么意思,请举例说明?
2. external 'PASSWD.DLL'何意思?