mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
af67e06272
* gmetadata.c (gmeta_del_icon_pos): New function to delete the icon position metadata from a file. * gcmd.c: Removed unused function gnome_quit_cmd(). 1999-04-05 Federico Mena Quintero <federico@nuclecu.unam.mx> * main.c (main): Call mc_tree_store_save() when the program terminates.
18 lines
393 B
C
18 lines
393 B
C
/* Convenience functions for metadata handling in the MIdnight Commander
|
|
*
|
|
* Copyright (C) 1998 The Free Software Foundation
|
|
*
|
|
* Author: Federico Mena <federico@nuclecu.unam.mx>
|
|
*/
|
|
|
|
#ifndef GMETADATA_H
|
|
#define GMETADATA_H
|
|
|
|
|
|
int gmeta_get_icon_pos (char *filename, int *x, int *y);
|
|
void gmeta_set_icon_pos (char *filename, int x, int y);
|
|
void gmeta_del_icon_pos (char *filename);
|
|
|
|
|
|
#endif
|