~ubuntu-branches/ubuntu/saucy/nut/saucy

« back to all changes in this revision

Viewing changes to include/upshandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-07-20 19:48:50 UTC
  • mto: (16.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050720194850-oo61wjr33rrx2mre
Tags: upstream-2.0.2
ImportĀ upstreamĀ versionĀ 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
/* structure for funcs that get called by msg parse routine */
21
21
struct ups_handler
22
22
{
23
 
        void    (*setvar)(int, int, char *);
24
 
        void    (*instcmd)(int, int, char *);
25
 
 
26
 
        /* temporary names during the driver transition */
27
 
 
28
 
        /* these will all lose the "new_" once the old versions are gone! */
29
 
 
30
 
        int     (*new_setvar)(const char *, const char *);
31
 
        int     (*new_instcmd)(const char *, const char *);
 
23
        int     (*setvar)(const char *, const char *);
 
24
        int     (*instcmd)(const char *, const char *);
32
25
};