File: xcf.h

package info (click to toggle)
gimp 1.0.2-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 17,116 kB
  • ctags: 16,070
  • sloc: ansic: 226,067; lisp: 8,497; sh: 4,965; makefile: 4,543
file content (30 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __XCF_H__
#define __XCF_H__


#include <stdio.h>


typedef struct _XcfInfo  XcfInfo;

struct _XcfInfo
{
  FILE *fp;
  guint cp;
  char *filename;
  Layer * active_layer;
  Channel * active_channel;
  GimpDrawable * floating_sel_drawable;
  Layer * floating_sel;
  guint floating_sel_offset;
  int swap_num;
  int *ref_count;
  int compression;
  int file_version;
};


void xcf_init (void);


#endif /* __XCF_H__ */