]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
setting clipping correctly
[wxWidgets.git] / src / msw / bitmap.cpp
index f6e6b1820f3030988f01fdf48360cb088b629677..45857264281fdb67e1b1b7e793db78c2bc70f65e 100644 (file)
@@ -1522,6 +1522,33 @@ bool wxBitmapHandler::Save(wxGDIImage *image,
     return bitmap && SaveFile(bitmap, name, type);
 }
 
+bool wxBitmapHandler::Create(wxBitmap *WXUNUSED(bitmap),
+                             const void* WXUNUSED(data),
+                             long WXUNUSED(type),
+                             int WXUNUSED(width),
+                             int WXUNUSED(height),
+                             int WXUNUSED(depth))
+{
+    return false;
+}
+
+bool wxBitmapHandler::LoadFile(wxBitmap *WXUNUSED(bitmap),
+                               const wxString& WXUNUSED(name),
+                               long WXUNUSED(type),
+                               int WXUNUSED(desiredWidth),
+                               int WXUNUSED(desiredHeight))
+{
+    return false;
+}
+
+bool wxBitmapHandler::SaveFile(wxBitmap *WXUNUSED(bitmap),
+                               const wxString& WXUNUSED(name),
+                               int WXUNUSED(type),
+                               const wxPalette *WXUNUSED(palette))
+{
+    return false;
+}
+
 // ----------------------------------------------------------------------------
 // DIB functions
 // ----------------------------------------------------------------------------