extsay/extsay.c
changeset 8 53b0091ecd47
parent 7 ad87c711de84
equal deleted inserted replaced
7:ad87c711de84 8:53b0091ecd47
    32 static void extsay_init(void);
    32 static void extsay_init(void);
    33 static void extsay_uninit(void);
    33 static void extsay_uninit(void);
    34 
    34 
    35 /* Module description */
    35 /* Module description */
    36 module_info_t info_extsay = {
    36 module_info_t info_extsay = {
    37         .mcabber_version = "0.10.0",
    37         .branch         = MCABBER_BRANCH,
    38         .requires        = NULL,
    38         .api            = MCABBER_API_VERSION,
    39         .init            = extsay_init,
    39         .version        = "0.01",
    40         .uninit          = extsay_uninit,
    40         .description    = "Use external editor to send a message\n"
       
    41                           "WARNING: use at your own risk - "
       
    42                           "mcabber is stuck while you write a message, "
       
    43                           "this is not recommended!",
       
    44         .requires       = NULL,
       
    45         .init           = extsay_init,
       
    46         .uninit         = extsay_uninit,
       
    47         .next           = NULL,
    41 };
    48 };
    42 
    49 
    43 // XXX Not very clean, internal function...
    50 // XXX Not very clean, internal function...
    44 char *load_message_from_file(const char *filename);
    51 char *load_message_from_file(const char *filename);
    45 
    52