/* Convenience functions for metadata handling in the MIdnight Commander * * Copyright (C) 1998 The Free Software Foundation * * Author: Federico Mena */ #ifndef GMETADATA_H #define GMETADATA_H /* Returns the coordinates of the icon corresponding to the specified file. If no position * has been set, returns FALSE. Else it returns TRUE and sets the *x and *y values. */ int gmeta_get_icon_pos (char *filename, int *x, int *y); /* Saves the icon position for the specified file */ void gmeta_set_icon_pos (char *filename, int x, int y); /* Deletes the icon position information for the specified file */ void gmeta_del_icon_pos (char *filename); #endif