vala r1410 - in trunk: . vapi



Author: juergbi
Date: Fri May 23 12:59:40 2008
New Revision: 1410
URL: http://svn.gnome.org/viewvc/vala?rev=1410&view=rev

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

	* vapi/sdl.vapi: fix syntax errors


Modified:
   trunk/ChangeLog
   trunk/vapi/sdl.vapi

Modified: trunk/vapi/sdl.vapi
==============================================================================
--- trunk/vapi/sdl.vapi	(original)
+++ trunk/vapi/sdl.vapi	Fri May 23 12:59:40 2008
@@ -199,10 +199,10 @@
 		public uint32 map_rgba(uchar r, uchar g, uchar b, uchar a);
 
 		[CCode (cname="SDL_GetRGB")]
-		public static void get_rgb(uint32 pixel, weak PixelFormat fmt, ref uchar r, ref uchar g, ref uchar b);
+		public static void get_rgb(uint32 pixel, PixelFormat fmt, ref uchar r, ref uchar g, ref uchar b);
 
 		[CCode (cname="SDL_GetRGBA")]
-		public static void get_rgba(uint32 pixel, weak PixelFormat fmt, ref uchar r, ref uchar g, ref uchar b, ref uchar a);
+		public static void get_rgba(uint32 pixel, PixelFormat fmt, ref uchar r, ref uchar g, ref uchar b, ref uchar a);
 	}// PixelFormat
 
 	[CCode (cname="SDL_Rect")]
@@ -518,7 +518,7 @@
 		public static void pump();
 
 		[CCode (cname="SDL_PeepEvents")]
-		public static void peep(weak Event* events, int numevents, 
+		public static void peep(Event* events, int numevents, 
 			EventAction action, EventMask mask);
 
 		[CCode (cname="SDL_PollEvent")]



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