diff options
author | Rafael Antognolli <antognolli@gmail.com> | 2009-04-21 23:08:17 +0000 |
---|---|---|
committer | Rafael Antognolli <antognolli@gmail.com> | 2009-04-21 23:08:17 +0000 |
commit | 8511aa2bd9a4abe00176f7e233c874323ced01e6 (patch) | |
tree | 55bff477a997844910fc5033c3132cf8527d17e8 /legacy/ethumb/src/lib/ethumb_private.h | |
parent | e4035bc52f27d8f2bb476b60465491c3cbdc30a0 (diff) |
There is no more Ethumb_File.
Now the file path and thumbnail path are stored in the Ethumb structure.
SVN revision: 40280
Diffstat (limited to 'legacy/ethumb/src/lib/ethumb_private.h')
-rw-r--r-- | legacy/ethumb/src/lib/ethumb_private.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/legacy/ethumb/src/lib/ethumb_private.h b/legacy/ethumb/src/lib/ethumb_private.h index 5d356829cc..1da7f0d4f3 100644 --- a/legacy/ethumb/src/lib/ethumb_private.h +++ b/legacy/ethumb/src/lib/ethumb_private.h | |||
@@ -19,6 +19,11 @@ struct _Ethumb | |||
19 | int format; | 19 | int format; |
20 | int aspect; | 20 | int aspect; |
21 | float crop_x, crop_y; | 21 | float crop_x, crop_y; |
22 | const char *src_path; | ||
23 | const char *src_key; | ||
24 | const char *thumb_path; | ||
25 | const char *thumb_key; | ||
26 | int rw, rh; | ||
22 | struct | 27 | struct |
23 | { | 28 | { |
24 | double time; | 29 | double time; |
@@ -36,14 +41,4 @@ struct _Ethumb | |||
36 | void *cb_data; | 41 | void *cb_data; |
37 | }; | 42 | }; |
38 | 43 | ||
39 | struct _Ethumb_File | ||
40 | { | ||
41 | Ethumb *ethumb; | ||
42 | const char *src_path; | ||
43 | const char *src_key; | ||
44 | const char *thumb_path; | ||
45 | const char *thumb_key; | ||
46 | int w, h; | ||
47 | }; | ||
48 | |||
49 | #endif /* __ETHUMB_PRIVATE_H__ */ | 44 | #endif /* __ETHUMB_PRIVATE_H__ */ |