Changeset 9767d03 for irc.h


Ignore:
Timestamp:
2018-07-31T04:41:55Z (6 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
fa1bc1d
Parents:
f7cc734
git-author:
dequis <dx@…> (31-07-18 04:41:21)
git-committer:
dequis <dx@…> (31-07-18 04:41:55)
Message:

Modify server-time implementation to not change API

The new functions with the different paramters are flagged as internal,
so it doesn't even add new symbols.

abi-compliance checker says it's 100% compatible, yay.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    rf7cc734 r9767d03  
    343343void irc_send_whois(irc_user_t *iu);
    344344void irc_send_who(irc_t *irc, GSList *l, const char *channel);
    345 void irc_send_msg(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix, time_t ts);
    346 void irc_send_msg_raw(irc_user_t *iu, const char *type, const char *dst, const char* tags, const char *msg);
     345void irc_send_msg(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix);
     346void irc_send_msg_raw(irc_user_t *iu, const char *type, const char *dst, const char *msg);
    347347void irc_send_msg_f(irc_user_t *iu, const char *type, const char *dst, const char *format, ...) G_GNUC_PRINTF(4, 5);
    348348void irc_send_nick(irc_user_t *iu, const char *new_nick);
     
    352352void irc_send_cap(irc_t *irc, char *subcommand, char *body);
    353353void irc_send_away_notify(irc_user_t *iu);
     354
     355G_GNUC_INTERNAL void irc_send_msg_ts(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix, time_t ts);
     356G_GNUC_INTERNAL void irc_send_msg_raw_tags(irc_user_t *iu, const char *type, const char *dst, const char* tags, const char *msg);
    354357
    355358/* irc_user.c */
     
    365368char *set_eval_timezone(struct set *set, char *value);
    366369char *irc_format_timestamp(irc_t *irc, time_t msg_ts);
    367 char *irc_format_servertime(irc_t *irc, time_t msg_ts);
     370G_GNUC_INTERNAL char *irc_format_servertime(irc_t *irc, time_t msg_ts);
    368371char *set_eval_self_messages(struct set *set, char *value);
    369372
Note: See TracChangeset for help on using the changeset viewer.