| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 32 | kaklik | #ifndef __BMPDECODER_H__ |
| 2 | #define __BMPDECODER_H__ |
||
| 3 | |||
| 4 | /****************************************************************************** |
||
| 5 | * FileName: BmpDecoder.h |
||
| 6 | * Dependencies: Image decoding library; project requires File System library |
||
| 7 | * Processor: PIC24/dsPIC30/dsPIC33/PIC32MX |
||
| 8 | * Compiler: C30 v2.01/C32 v0.00.18 |
||
| 9 | * Company: Microchip Technology, Inc. |
||
| 10 | |||
| 11 | * Software License Agreement |
||
| 12 | * |
||
| 13 | * Copyright © 2008 Microchip Technology Inc. All rights reserved. |
||
| 14 | * Microchip licenses to you the right to use, modify, copy and distribute |
||
| 15 | * Software only when embedded on a Microchip microcontroller or digital |
||
| 16 | * signal controller, which is integrated into your product or third party |
||
| 17 | * product (pursuant to the sublicense terms in the accompanying license |
||
| 18 | * agreement). |
||
| 19 | * |
||
| 20 | * You should refer to the license agreement accompanying this Software |
||
| 21 | * for additional information regarding your rights and obligations. |
||
| 22 | * |
||
| 23 | * SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY |
||
| 24 | * KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY |
||
| 25 | * OF MERCHANTABILITY, TITLE, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR |
||
| 26 | * PURPOSE. IN NO EVENT SHALL MICROCHIP OR ITS LICENSORS BE LIABLE OR |
||
| 27 | * OBLIGATED UNDER CONTRACT, NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, |
||
| 28 | * BREACH OF WARRANTY, OR OTHER LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT |
||
| 29 | * DAMAGES OR EXPENSES INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, |
||
| 30 | * INDIRECT, PUNITIVE OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, |
||
| 31 | * COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY |
||
| 32 | * CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), |
||
| 33 | * OR OTHER SIMILAR COSTS. |
||
| 34 | |||
| 35 | Author Date Comments |
||
| 36 | -------------------------------------------------------------------------------- |
||
| 37 | Pradeep Budagutta 03-Mar-2008 First release |
||
| 38 | *******************************************************************************/ |
||
| 39 | |||
| 40 | /* Function prototype */ |
||
| 41 | /* This function must be called after setting proper values in the global variables of ImageDecoder.c */ |
||
| 42 | BYTE BMP_bDecode(IMG_FILE *pFile); |
||
| 43 | |||
| 44 | #endif |
Powered by WebSVN v2.8.3