mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
be7cbf3768
Wed Jan 27 03:14:46 1999 Timur Bakeyev <mc@bat.ru> * Converted memory managment to Glib - where it wasn't done. Now we use g_new()/g_malloc()/g_strdup()/g_free() routings. copy_strings() re- placed by g_strconcat(), and sprintf() by g_snprintf(). Some other, minor changes.
31 lines
495 B
C
31 lines
495 B
C
/*
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <string.h>
|
|
#include <string.h>
|
|
#include "global.h"
|
|
#include "dlg.h"
|
|
#include "widget.h"
|
|
#include "info.h"
|
|
#include "win.h"
|
|
#include "x.h"
|
|
|
|
/* The following three include files are needed for cpanel */
|
|
#include "main.h"
|
|
#include "dir.h"
|
|
#include "panel.h"
|
|
|
|
void
|
|
x_create_info (Dlg_head *h, widget_data parent, WInfo *info)
|
|
{
|
|
printf ("create info\n");
|
|
}
|
|
|
|
void
|
|
x_show_info (WInfo *info, struct my_statfs *s, struct stat *b)
|
|
{
|
|
printf ("updating info\n");
|
|
}
|