mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-02-24 01:13:57 +00:00
25 lines
417 B
C
25 lines
417 B
C
/** @file */
|
|
|
|
#ifndef __EXEC_EXEC_H__
|
|
#define __EXEC_EXEC_H__
|
|
|
|
#include <glib.h>
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
|
|
/**
|
|
* Launches the specified command line.
|
|
*
|
|
* @param command The command line.
|
|
* @param out_error Storage location for any error that occurred.
|
|
* @return True if the command was launched successfully.
|
|
*/
|
|
gboolean wintc_launch_command(
|
|
const gchar* command,
|
|
GError** out_error
|
|
);
|
|
|
|
#endif
|