updated
2003-03-01 Hans Breuer <hans@breuer.org> * makefile.msc : updated * gdk_pixbuf.def : export a bunch of new functions
This commit is contained in:
parent
9fee53684d
commit
4689575d1c
@ -1,3 +1,9 @@
|
|||||||
|
2003-03-01 Hans Breuer <hans@breuer.org>
|
||||||
|
|
||||||
|
* makefile.msc : updated
|
||||||
|
|
||||||
|
* gdk_pixbuf.def : export a bunch of new functions
|
||||||
|
|
||||||
2003-07-18 Matthias Clasen <maclas@gmx.de>
|
2003-07-18 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* pixops/pixops.c (correct_total): Split correction into multiple pieces if no single weight is large
|
* pixops/pixops.c (correct_total): Split correction into multiple pieces if no single weight is large
|
||||||
|
@ -25,9 +25,15 @@ EXPORTS
|
|||||||
gdk_pixbuf_error_get_type
|
gdk_pixbuf_error_get_type
|
||||||
gdk_pixbuf_error_quark
|
gdk_pixbuf_error_quark
|
||||||
gdk_pixbuf_fill
|
gdk_pixbuf_fill
|
||||||
|
gdk_pixbuf_format_get_description
|
||||||
|
gdk_pixbuf_format_get_extensions
|
||||||
|
gdk_pixbuf_format_get_mime_types
|
||||||
|
gdk_pixbuf_format_get_name
|
||||||
|
gdk_pixbuf_format_is_writable
|
||||||
gdk_pixbuf_from_pixdata
|
gdk_pixbuf_from_pixdata
|
||||||
gdk_pixbuf_get_bits_per_sample
|
gdk_pixbuf_get_bits_per_sample
|
||||||
gdk_pixbuf_get_colorspace
|
gdk_pixbuf_get_colorspace
|
||||||
|
gdk_pixbuf_get_formats
|
||||||
gdk_pixbuf_get_has_alpha
|
gdk_pixbuf_get_has_alpha
|
||||||
gdk_pixbuf_get_height
|
gdk_pixbuf_get_height
|
||||||
gdk_pixbuf_get_n_channels
|
gdk_pixbuf_get_n_channels
|
||||||
@ -38,6 +44,7 @@ EXPORTS
|
|||||||
gdk_pixbuf_get_width
|
gdk_pixbuf_get_width
|
||||||
gdk_pixbuf_loader_close
|
gdk_pixbuf_loader_close
|
||||||
gdk_pixbuf_loader_get_animation
|
gdk_pixbuf_loader_get_animation
|
||||||
|
gdk_pixbuf_loader_get_format
|
||||||
gdk_pixbuf_loader_get_pixbuf
|
gdk_pixbuf_loader_get_pixbuf
|
||||||
gdk_pixbuf_loader_get_type
|
gdk_pixbuf_loader_get_type
|
||||||
gdk_pixbuf_loader_new
|
gdk_pixbuf_loader_new
|
||||||
@ -62,3 +69,4 @@ EXPORTS
|
|||||||
gdk_pixdata_from_pixbuf
|
gdk_pixdata_from_pixbuf
|
||||||
gdk_pixdata_serialize
|
gdk_pixdata_serialize
|
||||||
gdk_pixdata_to_csource
|
gdk_pixdata_to_csource
|
||||||
|
|
||||||
|
@ -25,6 +25,7 @@ PKG_CFLAGS = -FImsvc_recommended_pragmas.h \
|
|||||||
$(BUILT_IN_FORMATS) \
|
$(BUILT_IN_FORMATS) \
|
||||||
$(JPEG_CFLAGS) $(PNG_CFLAGS) $(TIFF_CFLAGS) $(INTL_CFLAGS) \
|
$(JPEG_CFLAGS) $(PNG_CFLAGS) $(TIFF_CFLAGS) $(INTL_CFLAGS) \
|
||||||
$(G_DEBUGGING) \
|
$(G_DEBUGGING) \
|
||||||
|
-DGDK_PIXBUF_ENABLE_BACKEND \
|
||||||
-UUSE_GMODULE # use built-in
|
-UUSE_GMODULE # use built-in
|
||||||
# -DUSE_GMODULE -DPIXBUF_LIBDIR=\".\"
|
# -DUSE_GMODULE -DPIXBUF_LIBDIR=\".\"
|
||||||
|
|
||||||
@ -83,7 +84,7 @@ all : \
|
|||||||
gdk-pixbuf-marshal.c \
|
gdk-pixbuf-marshal.c \
|
||||||
gdk-pixbuf-marshal.h \
|
gdk-pixbuf-marshal.h \
|
||||||
sub-pixops \
|
sub-pixops \
|
||||||
$(PACKAGE)-$(PKG_VER).dll \
|
lib$(PACKAGE)-$(PKG_VER)-0.dll \
|
||||||
$(PACKAGE)-$(PKG_VER)s.lib \
|
$(PACKAGE)-$(PKG_VER)s.lib \
|
||||||
# make-inline-pixbuf.exe \
|
# make-inline-pixbuf.exe \
|
||||||
gdk-pixbuf-csource.exe \
|
gdk-pixbuf-csource.exe \
|
||||||
@ -95,8 +96,9 @@ $(PACKAGE).res : $(PACKAGE).rc
|
|||||||
$(PACKAGE)-$(PKG_VER)s.lib : $(OBJECTS)
|
$(PACKAGE)-$(PKG_VER)s.lib : $(OBJECTS)
|
||||||
lib /out:$(PACKAGE)-$(PKG_VER)s.lib $(OBJECTS) pixops\pixops.lib
|
lib /out:$(PACKAGE)-$(PKG_VER)s.lib $(OBJECTS) pixops\pixops.lib
|
||||||
|
|
||||||
$(PACKAGE)-$(PKG_VER).dll : $(OBJECTS) $(PACKAGE).def $(PACKAGE).res
|
lib$(PACKAGE)-$(PKG_VER)-0.dll : $(OBJECTS) $(PACKAGE).def $(PACKAGE).res
|
||||||
$(CC) $(CFLAGS) -LD -Fe$(PACKAGE)-$(PKG_VER).dll $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(PACKAGE).res $(LDFLAGS) /def:$(PACKAGE).def
|
$(CC) $(CFLAGS) -LD -Fe$@ $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(PACKAGE).res \
|
||||||
|
$(LDFLAGS) /implib:$(PACKAGE)-$(PKG_VER).lib /def:$(PACKAGE).def
|
||||||
|
|
||||||
make-inline-pixbuf.exe : make-inline-pixbuf.c
|
make-inline-pixbuf.exe : make-inline-pixbuf.c
|
||||||
$(CC) $(PKG_CFLAGS) -Femake-inline-pixbuf.exe make-inline-pixbuf.c $(PKG_LINK) $(PACKAGE)-$(PKG_VER).lib
|
$(CC) $(PKG_CFLAGS) -Femake-inline-pixbuf.exe make-inline-pixbuf.c $(PKG_LINK) $(PACKAGE)-$(PKG_VER).lib
|
||||||
|
Loading…
Reference in New Issue
Block a user