I have a c++ dll that takes a string and turns it into a binary string. I
have C++ put the data into a file and that works fine. But, I can't get
Win32::API to receive the whole binary string. Perl gets a little bit of the
string but not much. Not sure why it's dyin'....

#######################################

open(FILE, "test.xml");
   @file = <FILE>;
close(FILE);
$xml = join "", @file;

use Win32::API;
$API = new Win32::API('FirstDll', 'decryptString', [P], P);
$encryptedString = $API->Call($xml);

########################################

Anyone?

thanks
mike kangas

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to