vala r1427 - in trunk: . vapi



Author: juergbi
Date: Sun May 25 13:40:55 2008
New Revision: 1427
URL: http://svn.gnome.org/viewvc/vala?rev=1427&view=rev

Log:
2008-05-25  Juerg Billeter  <j bitron ch>

	* vapi/sqlite3.vapi: use [Compact] attribute


Modified:
   trunk/ChangeLog
   trunk/vapi/sqlite3.vapi

Modified: trunk/vapi/sqlite3.vapi
==============================================================================
--- trunk/vapi/sqlite3.vapi	(original)
+++ trunk/vapi/sqlite3.vapi	Sun May 25 13:40:55 2008
@@ -23,6 +23,7 @@
 [CCode (lower_case_cprefix = "sqlite3_", cheader_filename = "sqlite3.h")]
 namespace Sqlite {
 	/* Database Connection Handle */
+	[Compact]
 	[CCode (free_function = "sqlite3_close", cname = "sqlite3", cprefix = "sqlite3_")]
 	public class Database {
 		public int busy_timeout (int ms);
@@ -45,6 +46,7 @@
 	}
 
 	/* Dynamically Typed Value Object */
+	[Compact]
 	[CCode (cname = "sqlite3_value")]
 	public class Value {
 		[CCode (cname = "sqlite3_value_blob")]
@@ -145,6 +147,7 @@
 	public const int TEXT;
 
 	/* SQL Statement Object */
+	[Compact]
 	[CCode (free_function = "sqlite3_finalize", cname = "sqlite3_stmt", cprefix = "sqlite3_")]
 	public class Statement {
 		public int bind_parameter_count ();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]