-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_SetRunOnStartup
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Set an application to run on system startup.
void MTY_SetRunOnStartup(
const char * name,
const char * path,
const char * args
);
name
(const char *
)
An arbitrary application name.
path
(const char *
)
Path to the executable that should be launched. May be NULL
to remove the application from system startup.
args
(const char *
)
Argument string for the executable specified in path
. This may be multiple command line arguments separated by spaces. May be NULL
if path
is also NULL
.