/[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 10 by dpavlin, Sun Aug 17 23:53:11 2008 UTC
# Line 14  const char * Line 14  const char *
14  tcidberrmsg(ecode)  tcidberrmsg(ecode)
15          int     ecode          int     ecode
16  CODE:  CODE:
17          RETVAL = tchdberrmsg(ecode);          RETVAL = tcidberrmsg(ecode);
18  OUTPUT:  OUTPUT:
19          RETVAL          RETVAL
20    
21    
22    void *
23    tcidbnew()
24    PREINIT:
25            TCIDB *idb;
26    CODE:
27            idb = tcidbnew();
28            RETVAL = idb;
29    OUTPUT:
30            RETVAL
31    
32    
33    void
34    tcidbdel(idb)
35            void *  idb
36    CODE:
37            tcidbdel(idb);
38    
39    
40    int
41    tcidbecode(idb)
42            void *  idb
43    CODE:
44            RETVAL = tcidbecode(idb);
45    OUTPUT:
46            RETVAL
47    
48    
49    int
50    tcidbtune(idb, ernum, etnum, iusiz, opts)
51            void *  idb
52            int     ernum
53            int     etnum
54            int     iusiz
55            int     opts
56    CODE:
57            RETVAL = tcidbtune(idb, ernum, etnum, iusiz, opts);
58    OUTPUT:
59            RETVAL
60    
61    
62    int
63    tcidbsetcache(idb, icsiz, lcnum)
64            void *  idb
65            int     icsiz
66            int     lcnum
67    CODE:
68            RETVAL = tcidbsetcache(idb, icsiz, lcnum);
69    OUTPUT:
70            RETVAL
71    
72    
73    int
74    tcidbsetfwmmax(idb, fwmax)
75            void *  idb
76            int     fwmax
77    CODE:
78            RETVAL = tcidbsetfwmmax(idb, fwmax);
79    OUTPUT:
80            RETVAL
81    
82    
83    int
84    tcidbopen(idb, path, omode)
85            void *  idb
86            char *  path
87            int     omode
88    CODE:
89            RETVAL = tcidbopen(idb, path, omode);
90    OUTPUT:
91            RETVAL
92    
93    

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

  ViewVC Help
Powered by ViewVC 1.1.26