Thread Platformunabhängigen code UNIX/Win32 (7 answers)
Opened by Schnullux at 2008-07-24 18:04

renee
 2008-07-24 18:59
#112636 #112636
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Schnullux+2008-07-24 16:37:18--
Code (perl): (dl )
1
2
3
require Unix::Syslog;
require Unix::Syslog qw(:macros);
require Win32::EventLog;

Dieser code führt aber zu einem Syntax-error bei require Unix::Syslog qw(:macros);


Die Imports muss man bei so etwas extra machen:

Code (perl): (dl )
1
2
require Unix::Syslog;
Unix::Syslog->import( ':macros' );
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Platformunabhängigen code UNIX/Win32