/[Search-TokyoDystopia]/TokyoDystopia.xs
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /TokyoDystopia.xs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1 by dpavlin, Sun Aug 17 22:17:40 2008 UTC revision 5 by dpavlin, Sun Aug 17 22:35:45 2008 UTC
# Line 17  CODE: Line 17  CODE:
17          RETVAL = tchdberrmsg(ecode);          RETVAL = tchdberrmsg(ecode);
18  OUTPUT:  OUTPUT:
19          RETVAL          RETVAL
20    
21    
22    void *
23    tcidbnew()
24    PREINIT:
25            TCIDB *db;
26    CODE:
27            db = tcidbnew();
28            RETVAL = db;
29    OUTPUT:
30            RETVAL
31    
32    
33    void
34    tcidbdel(db)
35            void *  db
36    CODE:
37            tcidbdel(db);
38    
39    
40    int
41    tcidbecode(db)
42            void *  db
43    CODE:
44            RETVAL = tcidbecode(db);
45    OUTPUT:
46            RETVAL
47    
48    
49    int
50    tcidbtune(db, ernum, etnum, iusiz, opts)
51            void *  db
52            int     ernum
53            int     etnum
54            int     iusiz
55            int     opts
56    CODE:
57            RETVAL = tcidbtune(db, ernum, etnum, iusiz, opts);
58    OUTPUT:
59            RETVAL
60    

Legend:
Removed from v.1  
changed lines
  Added in v.5

  ViewVC Help
Powered by ViewVC 1.1.26