Add Wayland typedefs to eglplatform.h

Issue=188
Author: Daniel Nicoara

git-svn-id: https://angleproject.googlecode.com/svn/trunk@709 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 9d71261..51221b1 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -20,6 +20,7 @@
  Nat Duca

  Vangelis Kokkevis

  Zhenyao Mo

+ Daniel Nicoara

  Alastair Patrick

  Alok Priyadarshi

  Kenneth Russell

diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h
index 6d34ab5..299eac5 100644
--- a/include/EGL/eglplatform.h
+++ b/include/EGL/eglplatform.h
@@ -83,6 +83,12 @@
 typedef void *EGLNativeWindowType;
 typedef void *EGLNativePixmapType;
 
+#elif defined(WL_EGL_PLATFORM)
+
+typedef struct wl_display     *EGLNativeDisplayType;
+typedef struct wl_egl_pixmap  *EGLNativePixmapType;
+typedef struct wl_egl_window  *EGLNativeWindowType;
+
 #elif defined(__unix__)
 
 /* X11 (tentative)  */
diff --git a/src/common/version.h b/src/common/version.h
index b6a12bb..d5f6bb8 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -1,7 +1,7 @@
 #define MAJOR_VERSION 0
 #define MINOR_VERSION 0
 #define BUILD_VERSION 0
-#define BUILD_REVISION 708
+#define BUILD_REVISION 709
 
 #define STRINGIFY(x) #x
 #define MACRO_STRINGIFY(x) STRINGIFY(x)