Former-commit-id:2b462d8665
[formerly133dc97f67
] [formerlya02aeb236c
] [formerlya02aeb236c
[formerly9f19e3f712
]] [formerly2b462d8665
[formerly133dc97f67
] [formerlya02aeb236c
] [formerlya02aeb236c
[formerly9f19e3f712
]] [formerly06a8b51d6d
[formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]]] Former-commit-id:06a8b51d6d
Former-commit-id:2c3569dd39
[formerly9bb8decbcf
] [formerly8e80217e59
] [formerlye2ecdcfe33
[formerly377dcd10b9
] [formerly8e80217e59
[formerly3360eb6c5f
]]] Former-commit-id:e2ecdcfe33
[formerly377dcd10b9
] Former-commit-id:e2ecdcfe33
Former-commit-id:7dbd17a5aa
78 lines
1.4 KiB
C
78 lines
1.4 KiB
C
/*
|
|
* The Python Imaging Library
|
|
* $Id: Except.c 2134 2004-10-06 08:55:20Z fredrik $
|
|
*
|
|
* default exception handling
|
|
*
|
|
* This module is usually overridden by application code (e.g.
|
|
* _imaging.c for PIL's standard Python bindings). If you get
|
|
* linking errors, remove this file from your project/library.
|
|
*
|
|
* history:
|
|
* 1995-06-15 fl Created
|
|
* 1998-12-29 fl Minor tweaks
|
|
* 2003-09-13 fl Added ImagingEnter/LeaveSection()
|
|
*
|
|
* Copyright (c) 1997-2003 by Secret Labs AB.
|
|
* Copyright (c) 1995-2003 by Fredrik Lundh.
|
|
*
|
|
* See the README file for information on usage and redistribution.
|
|
*/
|
|
|
|
|
|
#include "Imaging.h"
|
|
|
|
|
|
/* exception state */
|
|
|
|
void *
|
|
ImagingError_IOError(void)
|
|
{
|
|
fprintf(stderr, "*** exception: file access error\n");
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
ImagingError_MemoryError(void)
|
|
{
|
|
fprintf(stderr, "*** exception: out of memory\n");
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
ImagingError_ModeError(void)
|
|
{
|
|
return ImagingError_ValueError("bad image mode");
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
ImagingError_Mismatch(void)
|
|
{
|
|
return ImagingError_ValueError("images don't match");
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
ImagingError_ValueError(const char *message)
|
|
{
|
|
if (!message)
|
|
message = "exception: bad argument to function";
|
|
fprintf(stderr, "*** %s\n", message);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
/* thread state */
|
|
|
|
void
|
|
ImagingSectionEnter(ImagingSectionCookie* cookie)
|
|
{
|
|
/* pass */
|
|
}
|
|
|
|
void
|
|
ImagingSectionLeave(ImagingSectionCookie* cookie)
|
|
{
|
|
/* pass */
|
|
}
|