mirror of https://github.com/GNOME/gimp.git
Don't warn about missing home directory on Win32, it is perfectly natural.
* libgimp/gimpenv.c (gimp_directory): Don't warn about missing home directory on Win32, it is perfectly natural. * app/color_notebook.c * libgimp/color_selector.h: Bypass the declaration of the exported functions in the header. (Caused different linkage error with MSC, as they are declared dllexport in the source, but naturally not in the header.)
This commit is contained in:
parent
a36a271695
commit
b8e1ca28d7
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
1999-07-04 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimp/gimpenv.c (gimp_directory): Don't warn about missing
|
||||
home directory on Win32, it is perfectly natural.
|
||||
|
||||
* app/color_notebook.c
|
||||
* libgimp/color_selector.h: Bypass the declaration of the exported
|
||||
functions in the header. (Caused different linkage error with MSC,
|
||||
as they are declared dllexport in the source, but naturally not in
|
||||
the header.)
|
||||
|
||||
Sat Jul 3 16:04:16 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/color_notebook.c
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#define __COLOR_NOTEBOOK_C__ 1
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <gmodule.h>
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#define __COLOR_NOTEBOOK_C__ 1
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <gmodule.h>
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#define __COLOR_NOTEBOOK_C__ 1
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <gmodule.h>
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#define __COLOR_NOTEBOOK_C__ 1
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <gmodule.h>
|
||||
|
|
|
@ -76,6 +76,9 @@ typedef struct {
|
|||
|
||||
typedef void *GimpColorSelectorID;
|
||||
|
||||
#ifndef __COLOR_NOTEBOOK_C__ /* Bypass when compiling the source for
|
||||
* these functions. */
|
||||
|
||||
/* Register a color selector. Returns an identifier for the color
|
||||
* selector on success, or NULL if the name is already in use. Both
|
||||
* the name and method table are internalised, so may be freed after
|
||||
|
@ -93,5 +96,6 @@ GimpColorSelectorID gimp_color_selector_register (const char *name,
|
|||
gboolean gimp_color_selector_unregister (GimpColorSelectorID id,
|
||||
void (*callback)(void *data),
|
||||
void *data);
|
||||
#endif /* !__COLOR_NOTEBOOK_C__ */
|
||||
|
||||
#endif /* __COLOR_SELECTOR_H__ */
|
||||
|
|
|
@ -76,6 +76,9 @@ typedef struct {
|
|||
|
||||
typedef void *GimpColorSelectorID;
|
||||
|
||||
#ifndef __COLOR_NOTEBOOK_C__ /* Bypass when compiling the source for
|
||||
* these functions. */
|
||||
|
||||
/* Register a color selector. Returns an identifier for the color
|
||||
* selector on success, or NULL if the name is already in use. Both
|
||||
* the name and method table are internalised, so may be freed after
|
||||
|
@ -93,5 +96,6 @@ GimpColorSelectorID gimp_color_selector_register (const char *name,
|
|||
gboolean gimp_color_selector_unregister (GimpColorSelectorID id,
|
||||
void (*callback)(void *data),
|
||||
void *data);
|
||||
#endif /* !__COLOR_NOTEBOOK_C__ */
|
||||
|
||||
#endif /* __COLOR_SELECTOR_H__ */
|
||||
|
|
Loading…
Reference in New Issue