| c# Programming Glossary: pcharHow to AES-128 encrypt a string using a password in Delphi and decrypt in C#? http://stackoverflow.com/questions/9188045/how-to-aes-128-encrypt-a-string-using-a-password-in-delphi-and-decrypt-in-c  function CryptAcquireContext var Prov HCRYPTPROV Container PChar Provider PChar ProvType LongWord Flags LongWord LongBool stdcall.. var Prov HCRYPTPROV Container PChar Provider PChar ProvType LongWord Flags LongWord LongBool stdcall external _lib_ADVAPI32.. function CryptHashData Hash HCRYPTHASH Data PChar DataLen LongWord Flags LongWord LongBool stdcall external _lib_ADVAPI32.. 
 ASP.NET web app calling Delphi DLL on IIS webserver, locks up when returning PChar string http://stackoverflow.com/questions/9322938/asp-net-web-app-calling-delphi-dll-on-iis-webserver-locks-up-when-returning-pch  Delphi DLL on IIS webserver locks up when returning PChar string  Works fine if I don't return anything or I return an.. anything or I return an integer. But if I try to return a PChar ie.. result PChar '' or result PChar 'Hello' The web app just.. an integer. But if I try to return a PChar ie.. result PChar '' or result PChar 'Hello' The web app just freezes up and I.. 
 |