~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/perl/perl-signals.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-05-05 15:50:50 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090505155050-aoqlnpes7che9rtd
Tags: 0.8.13-1ubuntu1
* Merge from debian unstable (LP: #372411), remaining changes:
  - debian/patches: 03firsttimer_text
    + Adapt it so it tells you about connecting to irc.ubuntu.com and
      joining #ubuntu instead of irc.debian.org and #debian.
  - debian/patches: 90irc-ubuntu-com
* Fixed debian/patches/90irc-ubuntu-com for new irssi.conf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __PERL_SIGNALS_H
2
2
#define __PERL_SIGNALS_H
3
3
 
 
4
void perl_signal_args_to_c(void (*callback)(void *, void **), void *cb_arg,
 
5
                           int signal_id, SV **args, size_t n_args);
 
6
 
4
7
void perl_signal_add_full(const char *signal, SV *func, int priority);
5
8
 
6
9
void perl_signal_remove(const char *signal, SV *func);