diff --git a/FractalArt.cabal b/FractalArt.cabal
--- a/FractalArt.cabal
+++ b/FractalArt.cabal
@@ -1,5 +1,5 @@
 name:                FractalArt
-version:             0.2.0.2
+version:             0.2.0.3
 synopsis:            Generates colorful wallpapers
 description:         This application generates colorful images as a wallpaper
 homepage:            https://github.com/TomSmeets/FractalArt
@@ -11,7 +11,11 @@
 category:            Graphics
 build-type:          Simple
 cabal-version:       >=1.10
-extra-source-files:  README.md
+extra-source-files:
+  cbits/wallpaper.h
+  README.md
+  examples/image0.bmp
+  examples/image1.bmp
 
 executable FractalArt
   main-is:          Main.hs
@@ -24,7 +28,8 @@
       c-sources:        cbits/wallpaper.m
   other-extensions: ForeignFunctionInterface
   if !os(darwin)
-      c-sources:        cbits/wallpaper.c
+      c-sources:
+        cbits/wallpaper.c
   build-depends:    base > 4 && < 5
                   , random
                   , mwc-random
diff --git a/cbits/wallpaper.h b/cbits/wallpaper.h
new file mode 100644
--- /dev/null
+++ b/cbits/wallpaper.h
@@ -0,0 +1,3 @@
+void set_wallpaper(char *str);
+int get_screen_size_x();
+int get_screen_size_y();
diff --git a/examples/image0.bmp b/examples/image0.bmp
new file mode 100644
Binary files /dev/null and b/examples/image0.bmp differ
diff --git a/examples/image1.bmp b/examples/image1.bmp
new file mode 100644
Binary files /dev/null and b/examples/image1.bmp differ
