mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-01-26 11:39:44 +00:00
22 lines
285 B
C
22 lines
285 B
C
/** @file */
|
|
|
|
#ifndef __COMGTK_CONTAINER_H__
|
|
#define __COMGTK_CONTAINER_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
|
|
/**
|
|
* Destroys all child widgets of a container.
|
|
*
|
|
* @param container The container.
|
|
*/
|
|
void wintc_container_clear(
|
|
GtkContainer* container
|
|
);
|
|
|
|
#endif
|