Added cs to the list of languages
[midnight-commander.git] / gnome / gmetadata.h
blobdf1529c74f9a49ffeb86631fbd22e28d374e9367
1 /* Convenience functions for metadata handling in the MIdnight Commander
3 * Copyright (C) 1998 The Free Software Foundation
5 * Author: Federico Mena <federico@nuclecu.unam.mx>
6 */
8 #ifndef GMETADATA_H
9 #define GMETADATA_H
12 /* Returns the coordinates of the icon corresponding to the specified file. If no position
13 * has been set, returns FALSE. Else it returns TRUE and sets the *x and *y values.
15 int gmeta_get_icon_pos (char *filename, int *x, int *y);
17 /* Saves the icon position for the specified file */
18 void gmeta_set_icon_pos (char *filename, int x, int y);
20 /* Deletes the icon position information for the specified file */
21 void gmeta_del_icon_pos (char *filename);
24 #endif