mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-01-26 11:39:44 +00:00
22 lines
260 B
C
22 lines
260 B
C
/** @file */
|
|
|
|
#ifndef __COMGTK_WINDOW_H__
|
|
#define __COMGTK_WINDOW_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
|
|
/**
|
|
* Requests that a window be given focus.
|
|
*
|
|
* @param window The window.
|
|
*/
|
|
void wintc_focus_window(
|
|
GtkWindow* window
|
|
);
|
|
|
|
#endif
|