mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-12 02:41:14 +00:00
16 lines
221 B
C
16 lines
221 B
C
#pragma once
|
|
|
|
// --- Defines and Macros ---
|
|
#define _P_NOWAIT 1
|
|
|
|
// --- Functions ---
|
|
intptr_t _spawnl(
|
|
int mode,
|
|
const char* cmdname,
|
|
const char* arg0,
|
|
const char* arg1,
|
|
const char* arg2,
|
|
const char* arg3,
|
|
...
|
|
);
|