~kubuntu-members/libkdcraw/4.11

« back to all changes in this revision

Viewing changes to libraw/libraw/libraw.h

  • Committer: Pino Toscano
  • Date: 2013-06-11 11:31:37 UTC
  • Revision ID: git-v1:e4d483ca78a2161ffefe7c0c6a0734166db47099
Tags: v4.10.80, v4.10.90
change the libraw include headers to be more like the external library

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
DllDef    libraw_data_t       *libraw_init(unsigned int flags);
54
54
DllDef    int                 libraw_open_file(libraw_data_t*, const char *);
55
55
DllDef    int                 libraw_open_file_ex(libraw_data_t*, const char *, INT64 max_buff_sz);
56
 
#ifdef WIN32
 
56
#if defined(WIN32) && !defined(__MINGW32__)
57
57
DllDef    int                 libraw_open_wfile(libraw_data_t*, const wchar_t *);
58
58
DllDef    int                 libraw_open_wfile_ex(libraw_data_t*, const wchar_t *, INT64 max_buff_sz);
59
59
#endif
103
103
    LibRaw(unsigned int flags = LIBRAW_OPTIONS_NONE);
104
104
    libraw_output_params_t*     output_params_ptr() { return &imgdata.params;}
105
105
    int                         open_file(const char *fname, INT64 max_buffered_sz=LIBRAW_USE_STREAMS_DATASTREAM_MAXSIZE);
106
 
#ifdef WIN32
 
106
#if defined(WIN32) && !defined(__MINGW32__)
107
107
        int                         open_file(const wchar_t *fname, INT64 max_buffered_sz=LIBRAW_USE_STREAMS_DATASTREAM_MAXSIZE);
108
108
#endif
109
109
    int                         open_buffer(void *buffer, size_t size);