Merge: src: fix null receiver error on useless-signature warning
[nit.git] / lib / x11.nit
index b4f51d5..bd5d82a 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# Serices from the X11 library
-module x11 is pkgconfig("x11")
+# Services from the X11 library
+module x11 is pkgconfig
+
+`{
+       #include <X11/Xlib.h>
+`}
 
 # Open the current display from the environment variables
 #
@@ -27,7 +31,7 @@ fun x_open_default_display: Pointer `{
 # Open a specific display
 #
 # `name` is in the format: "hostname:number.screen_number"
-# 
+#
 # See <http://www.x.org/releases/X11R7.7/doc/man/man3/XOpenDisplay.3.xhtml>
 fun x_open_display(name: String): Pointer import String.to_cstring `{
        return (void*)XOpenDisplay(String_to_cstring(name));