Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tiffsetwarninghandler(3tiff) [opensolaris man page]

TIFFWarning(3tiff)														TIFFWarning(3tiff)

NAME
TIFFWarning, TIFFSetWarningHandler - library warning interface SYNOPSIS
#include <tiffio.h> void TIFFWarning(const char* module, const char* fmt, ...) #include <stdarg.h> typedef void (*TIFFWarningHandler)(const char* module, const char* fmt, va_list ap); TIFFWarningHandler TIFFSetWarningHandler(TIFFWarningHandler handler); TIFFWarning invokes the library-wide warning handler function to (normally) write a warning message to stderr. The fmt parameter is a printf(3S) format string, and any number of arguments can be supplied. The module parameter is interpreted as a string that, if non-zero, should be printed before the message, and is typically used to identify the software module in which a warning is detected. Applications that desire to capture control in the event of a warning should use TIFFSetWarningHandler to override the default warning han- dler. A NULL(0) warning handler function may be installed to suppress error messages. TIFFSetWarningHandler returns a reference to the previous error handling function. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWTiff | +-----------------------------+-----------------------------+ |Interface stability |Uncommitted | +-----------------------------+-----------------------------+ libtiff(3), TIFFError(3tiff), printf(3S) This man page was originally written by Sam Leffler. Updated by Breda McColgan, Sun Microsystems Inc., 2004. 02 Apr 2004 TIFFWarning(3tiff)

Check Out this Related Man Page

TIFFWarning(3tiff)					 Introduction to Library Functions					TIFFWarning(3tiff)

NAME
TIFFWarning, TIFFSetWarningHandler - library warning interface SYNOPSIS
#include <tiffio.h> void TIFFWarning(const char* module, const char* fmt, ...) #include <stdarg.h> typedef void (*TIFFWarningHandler)(const char* module, const char* fmt, va_list ap); TIFFWarningHandler TIFFSetWarningHandler(TIFFWarningHandler handler); DESCRIPTION
TIFFWarning invokes the library-wide warning handler function to (normally) write a warning message to stderr. The fmt parameter is a printf(3S) format string, and any number of arguments can be supplied. The module parameter is interpreted as a string that, if non-zero, should be printed before the message, and is typically used to identify the software module in which a warning is detected. Applications that desire to capture control in the event of a warning should use TIFFSetWarningHandler to override the default warning han- dler. A NULL(0) warning handler function may be installed to suppress error messages. RETURN VALUES
TIFFSetWarningHandler returns a reference to the previous error handling function. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWTiff | +-----------------------------+-----------------------------+ |Interface stability |External | +-----------------------------+-----------------------------+ SEE ALSO
libtiff(3), TIFFError(3tiff), printf(3S) NOTES
This man page was originally written by Sam Leffler. Updated by Breda McColgan, Sun Microsystems Inc., 2004. SunOS 5.10 02 Apr 2004 TIFFWarning(3tiff)
Man Page

10 More Discussions You Might Find Interesting

1. SCO

warning addtooverflowlist

Does anyone know what this warning means we get it now and then. We just repalced aour hard drive and reinstalled sco and now get this warning: warning: Addtooverflowlist rp=F02967ac ha=0 id=0 lun=0 CAn anyone help on this problem. I have searched the web but cant find anything. thanks (0 Replies)
Discussion started by: davekasp
0 Replies

2. Programming

warning from gcc

I get this error warning. test.c: In function 'main': test.c:5: warning: incompatible implicit declaration of built-in function 'memset' After compiling this code #include <stdio.h> int main() { char pBuffer; memset(pBuffer, 0, 32); return 0; } What seems... (2 Replies)
Discussion started by: sledge76
2 Replies

3. UNIX for Dummies Questions & Answers

warning message

I have received a warning message, does anyone know what this means? warning: userdel processing continues resource: /var/opt1k/sco/unix/5.0.6 Ga/etx/group-t could not be allocated due to : cannot securly create new file. (0 Replies)
Discussion started by: qphillips
0 Replies

4. HP-UX

HP-UX 11.11 warning error

I have screen erron with HP-UX warning:select failed error code 9 :confused: (3 Replies)
Discussion started by: dcporras
3 Replies

5. UNIX for Dummies Questions & Answers

Warning message while makefile compilation

Hi all, I am trying to create an executable, but when the .pc file converting to .c file I am getting lots of warning message like of these 3 lines. Any idea why I am getting these lines? Any configuration issues? What exactly needs to be done to solve these warning messages? ... (0 Replies)
Discussion started by: nsurendiran
0 Replies

6. Programming

Compile time warning

Hi, I wish to know if we can generate customised compile time warning. say i have a code Obj * i = 0; while (true ) { if( ! i ) // some code that raise a warning while compilation .Not error i->somefunction(); } (2 Replies)
Discussion started by: wojtyla
2 Replies

7. AIX

RS/6000 warning led

On my IBM RS/6000 9114-275 a warning led is burning. It's an orange light with an exclamation mark. It started to burn when I did a reset of the system. What does it mean? How can I get it away? (0 Replies)
Discussion started by: rein
0 Replies

8. Programming

gethostname warning

Hi, does anyone knows how to get rid of this annoying warning? Thank you! #include <netdb.h> main() { gethostbyname("test"); } $ gcc -static test.c /tmp/ccW9HG18.o: In function `main': test.c:(.text+0x19): warning: Using 'gethostbyname' in statically linked applications requires at... (3 Replies)
Discussion started by: paulquater
3 Replies

9. Programming

warning :extra tokens (ignored) after directive

hi I am getting the following warning while compilation of my C project. /var/tmp/aaaa003z6: warning: 101: extra tokens (ignored) after directive Can anyone help what this warning means and how to get rid of this. Thanks (1 Reply)
Discussion started by: pratim09
1 Replies

10. Programming

conversion to 'char' from 'int' warning

Hi, I wrote a simple code in C++ converting from UpperToLower case characters. However, my compiler gives me a warning: "warning: conversion to 'char' from 'int' may alter its value". Any tips? I would like to stress, I don't want to load my string into char array. int ToLower(string... (4 Replies)
Discussion started by: kajolo
4 Replies