ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/typemap
(Generate patch)

Comparing BDB/typemap (file contents):
Revision 1.7 by root, Sun Mar 30 04:57:56 2008 UTC vs.
Revision 1.10 by root, Fri Sep 26 02:03:48 2008 UTC

12DBC_ornuked * DBC_ornuked 12DBC_ornuked * DBC_ornuked
13DB_SEQUENCE * DB_SEQUENCE 13DB_SEQUENCE * DB_SEQUENCE
14DB_SEQUENCE_ornull * DB_SEQUENCE_ornull 14DB_SEQUENCE_ornull * DB_SEQUENCE_ornull
15DB_SEQUENCE_ornuked * DB_SEQUENCE_ornuked 15DB_SEQUENCE_ornuked * DB_SEQUENCE_ornuked
16 16
17SV8 * T_SV8 17SV8 * T_SV8
18bdb_filename BDB_FILENAME 18bdb_filename BDB_FILENAME
19db_seq_t DB_SEQ 19db_seq_t DB_SEQ
20 20
21const char * T_PV
22
23SV_mutable * T_SV_MUTABLE
21 24
22INPUT 25INPUT
26
27T_SV_MUTABLE
28 ($var) = $arg;
29 if (SvREADONLY ($var))
30 croak (\"argument \\\"%s\\\" is read-only/constant, but %s needs to write results into it\",
31 \"$var\",
32 \"${Package}::$func_name\")
23 33
24T_SV8 34T_SV8
25 ($var) = $arg; 35 ($var) = $arg;
26 if (SvPOKp ($var) && !sv_utf8_downgrade ($var, 1)) 36 if (SvPOKp ($var) && !sv_utf8_downgrade ($var, 1))
27 croak (\"\\\"%s\\\" argument must be byte/octet-encoded\", \"$var\") 37 croak (\"argument \\\"%s\\\" must be byte/octet-encoded in %s\",
38 \"$var\",
39 \"${Package}::$func_name\")
28 40
29BDB_FILENAME 41BDB_FILENAME
30 ($var) = !SvOK ($arg) 42 ($var) = get_bdb_filename ($arg);
31 ? 0
32 :
33 #if WIN32
34 SvPVutf8_nolen ($arg)
35 #else
36 SvPVbyte_nolen ($arg)
37 #endif
38 ;
39 43
40DB_SEQ 44DB_SEQ
41 $var = sizeof (IV) > 4 ? SvIV ($arg) : SvNV ($arg); 45 $var = sizeof (IV) > 4 ? SvIV ($arg) : SvNV ($arg);
42 46
43DB_ENV 47DB_ENV

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines