Update of /cvsroot/popfile/engine/Platform
In directory sc8-pr-cvs1:/tmp/cvs-serv28813
Modified Files:
MSWin32.pm
Added Files:
POPFileIcon.dll
Log Message:
Added binary version of DLL
--- NEW FILE: POPFileIcon.dll ---
(This appears to be a binary file; contents omitted.)
Index: MSWin32.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Platform/MSWin32.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MSWin32.pm 6 May 2003 16:30:07 -0000 1.5
--- MSWin32.pm 7 May 2003 16:31:50 -0000 1.6
***************
*** 85,89 ****
my $url = 'http://127.0.0.1:' . $self->module_config_( 'html', 'port' );
! $execute->Call( 0, "open", $url, "", "", 0 );
}
--- 85,93 ----
my $url = 'http://127.0.0.1:' . $self->module_config_( 'html', 'port' );
! if ( defined( $execute ) ) {
! $execute->Call( 0, "open", $url, "", "", 0 );
! } else {
! system( "start $url" );
! }
}
|