module Graphics.UI.Gtk.WebKit.DOM.Geolocation
(geolocationClearWatch, Geolocation, GeolocationClass,
castToGeolocation, gTypeGeolocation, toGeolocation)
where
import System.Glib.FFI
import System.Glib.UTFString
import Control.Applicative
import Graphics.UI.Gtk.WebKit.Types
import System.Glib.GError
import Graphics.UI.Gtk.WebKit.DOM.EventM
geolocationClearWatch ::
(GeolocationClass self) => self -> Int -> IO ()
geolocationClearWatch self watchID
= (\(Geolocation arg1) arg2 -> withForeignPtr arg1 $ \argPtr1 ->webkit_dom_geolocation_clear_watch argPtr1 arg2)
(toGeolocation self)
(fromIntegral watchID)
foreign import ccall safe "webkit_dom_geolocation_clear_watch"
webkit_dom_geolocation_clear_watch :: ((Ptr Geolocation) -> (CLong -> (IO ())))