12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef WEBP_IMAGEIO_PNMDEC_H_
- #define WEBP_IMAGEIO_PNMDEC_H_
- #include "webp/types.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct Metadata;
- struct WebPPicture;
- int ReadPNM(const uint8_t* const data, size_t data_size,
- struct WebPPicture* const pic, int keep_alpha,
- struct Metadata* const metadata);
- #ifdef __cplusplus
- }
- #endif
- #endif
|