|
Posted by les_andrey on July 30, 2005, 2:27 am
Please log in for more thread options
Hi,
Please, tell me is it a bug or it works properly:
We have Perl code:
use WIN32::API;
my $ref=Win32::API->new('Test_Dll.dll','TestParamMY','PP','N');
my ($test1,$test2) = ('Test_Dll.dll','TestParamMY');
$test1>10;
print $test1."\n";
$ref->Call( $test1, $test2);
Where TestParamMY (C code):
TEST_DLL_API
PDH_FUNCTION TestParamMY( IN LPCSTR szTest1, IN LPCSTR
szTest2){
printf("%s, %s", szTest1, szTest2);
return 1;
}
output:
Test_Dll.dll, Test_Dll.dll
(null), TestParamMY
Modified:
use WIN32::API;
my $ref=Win32::API->new('Test_Dll.dll','TestParamMY','PP','N');
my ($test1,$test2) = ('Test_Dll.dll','TestParamMY');
#######$test1>10;
print $test1."\n";
$ref->Call( $test1, $test2);
Output:
Test_Dll.dll, Test_Dll.dll
Test_Dll.dll, TestParamMY
Thanks,
Andrew
|
| Similar Threads | Posted | | strings and numbers | July 30, 2005, 2:28 am |
| Extracting strings delimited by other strings | May 7, 2005, 11:54 am |
| Will XML::Simple work with keys, strings, integers, and dates? | March 21, 2005, 10:43 am |
| xs typemap for &subr(@numbers) ? | January 6, 2005, 11:17 am |
| converting phone numbers to alphabets | July 7, 2004, 6:49 pm |
| need translators for Lingua::Slavic::Numbers | July 29, 2008, 10:52 am |
| Modules/code for comparing version numbers? | September 15, 2004, 1:55 pm |
| Print Subject without characters Just Numbers using POP3Client. Please Help | April 10, 2007, 11:27 pm |
| [ANNOUNCE] Test::Float -- compare numbers to specified precision | December 26, 2004, 4:20 pm |
| How to print just numbers includes in Subject using POP3Client Module. | April 9, 2007, 9:18 pm |
|