2024-08-25 04:08:24 +00:00
# ifndef GEN_QPROCESS_H
# define GEN_QPROCESS_H
# include <stdbool.h>
# include <stddef.h>
# include <stdint.h>
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
2024-09-14 22:29:05 +00:00
# include "binding.h"
2024-08-25 04:08:24 +00:00
# ifdef __cplusplus
extern " C " {
# endif
# ifdef __cplusplus
class QByteArray ;
class QMetaObject ;
class QObject ;
class QProcess ;
class QProcessEnvironment ;
# else
typedef struct QByteArray QByteArray ;
typedef struct QMetaObject QMetaObject ;
typedef struct QObject QObject ;
typedef struct QProcess QProcess ;
typedef struct QProcessEnvironment QProcessEnvironment ;
# endif
QProcessEnvironment * QProcessEnvironment_new ( ) ;
QProcessEnvironment * QProcessEnvironment_new2 ( QProcessEnvironment * other ) ;
void QProcessEnvironment_OperatorAssign ( QProcessEnvironment * self , QProcessEnvironment * other ) ;
void QProcessEnvironment_Swap ( QProcessEnvironment * self , QProcessEnvironment * other ) ;
2024-09-11 05:41:09 +00:00
bool QProcessEnvironment_OperatorEqual ( const QProcessEnvironment * self , QProcessEnvironment * other ) ;
bool QProcessEnvironment_OperatorNotEqual ( const QProcessEnvironment * self , QProcessEnvironment * other ) ;
bool QProcessEnvironment_IsEmpty ( const QProcessEnvironment * self ) ;
2024-08-25 04:08:24 +00:00
void QProcessEnvironment_Clear ( QProcessEnvironment * self ) ;
2024-09-14 22:29:05 +00:00
bool QProcessEnvironment_Contains ( const QProcessEnvironment * self , struct miqt_string * name ) ;
void QProcessEnvironment_Insert ( QProcessEnvironment * self , struct miqt_string * name , struct miqt_string * value ) ;
void QProcessEnvironment_Remove ( QProcessEnvironment * self , struct miqt_string * name ) ;
struct miqt_string * QProcessEnvironment_Value ( const QProcessEnvironment * self , struct miqt_string * name ) ;
struct miqt_array * QProcessEnvironment_ToStringList ( const QProcessEnvironment * self ) ;
struct miqt_array * QProcessEnvironment_Keys ( const QProcessEnvironment * self ) ;
2024-08-25 04:08:24 +00:00
void QProcessEnvironment_InsertWithQProcessEnvironment ( QProcessEnvironment * self , QProcessEnvironment * e ) ;
QProcessEnvironment * QProcessEnvironment_SystemEnvironment ( ) ;
2024-09-14 22:29:05 +00:00
struct miqt_string * QProcessEnvironment_Value2 ( const QProcessEnvironment * self , struct miqt_string * name , struct miqt_string * defaultValue ) ;
2024-08-25 04:08:24 +00:00
void QProcessEnvironment_Delete ( QProcessEnvironment * self ) ;
QProcess * QProcess_new ( ) ;
QProcess * QProcess_new2 ( QObject * parent ) ;
2024-09-11 05:41:09 +00:00
QMetaObject * QProcess_MetaObject ( const QProcess * self ) ;
2024-09-20 22:32:57 +00:00
void * QProcess_Metacast ( QProcess * self , const char * param1 ) ;
2024-09-14 22:29:05 +00:00
struct miqt_string * QProcess_Tr ( const char * s ) ;
struct miqt_string * QProcess_TrUtf8 ( const char * s ) ;
2024-09-16 07:33:40 +00:00
void QProcess_Start ( QProcess * self , struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments ) ;
2024-09-14 22:29:05 +00:00
void QProcess_StartWithCommand ( QProcess * self , struct miqt_string * command ) ;
2024-08-29 07:01:51 +00:00
void QProcess_Start2 ( QProcess * self ) ;
2024-08-25 04:08:24 +00:00
bool QProcess_StartDetached ( QProcess * self ) ;
2024-08-29 07:01:51 +00:00
bool QProcess_Open ( QProcess * self ) ;
2024-09-14 22:29:05 +00:00
struct miqt_string * QProcess_Program ( const QProcess * self ) ;
void QProcess_SetProgram ( QProcess * self , struct miqt_string * program ) ;
struct miqt_array * QProcess_Arguments ( const QProcess * self ) ;
2024-09-16 07:33:40 +00:00
void QProcess_SetArguments ( QProcess * self , struct miqt_array * /* of struct miqt_string* */ arguments ) ;
2024-09-18 00:12:02 +00:00
int QProcess_ReadChannelMode ( const QProcess * self ) ;
void QProcess_SetReadChannelMode ( QProcess * self , int mode ) ;
int QProcess_ProcessChannelMode ( const QProcess * self ) ;
void QProcess_SetProcessChannelMode ( QProcess * self , int mode ) ;
int QProcess_InputChannelMode ( const QProcess * self ) ;
void QProcess_SetInputChannelMode ( QProcess * self , int mode ) ;
int QProcess_ReadChannel ( const QProcess * self ) ;
void QProcess_SetReadChannel ( QProcess * self , int channel ) ;
void QProcess_CloseReadChannel ( QProcess * self , int channel ) ;
2024-08-25 04:08:24 +00:00
void QProcess_CloseWriteChannel ( QProcess * self ) ;
2024-09-14 22:29:05 +00:00
void QProcess_SetStandardInputFile ( QProcess * self , struct miqt_string * fileName ) ;
void QProcess_SetStandardOutputFile ( QProcess * self , struct miqt_string * fileName ) ;
void QProcess_SetStandardErrorFile ( QProcess * self , struct miqt_string * fileName ) ;
2024-08-25 04:08:24 +00:00
void QProcess_SetStandardOutputProcess ( QProcess * self , QProcess * destination ) ;
2024-09-14 22:29:05 +00:00
struct miqt_string * QProcess_WorkingDirectory ( const QProcess * self ) ;
void QProcess_SetWorkingDirectory ( QProcess * self , struct miqt_string * dir ) ;
2024-09-16 07:33:40 +00:00
void QProcess_SetEnvironment ( QProcess * self , struct miqt_array * /* of struct miqt_string* */ environment ) ;
2024-09-14 22:29:05 +00:00
struct miqt_array * QProcess_Environment ( const QProcess * self ) ;
2024-08-25 04:08:24 +00:00
void QProcess_SetProcessEnvironment ( QProcess * self , QProcessEnvironment * environment ) ;
2024-09-11 05:41:09 +00:00
QProcessEnvironment * QProcess_ProcessEnvironment ( const QProcess * self ) ;
2024-09-18 00:12:02 +00:00
int QProcess_Error ( const QProcess * self ) ;
int QProcess_State ( const QProcess * self ) ;
long long QProcess_Pid ( const QProcess * self ) ;
2024-09-11 05:41:09 +00:00
long long QProcess_ProcessId ( const QProcess * self ) ;
2024-08-25 04:08:24 +00:00
bool QProcess_WaitForStarted ( QProcess * self ) ;
bool QProcess_WaitForReadyRead ( QProcess * self ) ;
bool QProcess_WaitForBytesWritten ( QProcess * self ) ;
bool QProcess_WaitForFinished ( QProcess * self ) ;
QByteArray * QProcess_ReadAllStandardOutput ( QProcess * self ) ;
QByteArray * QProcess_ReadAllStandardError ( QProcess * self ) ;
2024-09-11 05:41:09 +00:00
int QProcess_ExitCode ( const QProcess * self ) ;
2024-09-18 00:12:02 +00:00
int QProcess_ExitStatus ( const QProcess * self ) ;
2024-09-11 05:41:09 +00:00
long long QProcess_BytesAvailable ( const QProcess * self ) ;
long long QProcess_BytesToWrite ( const QProcess * self ) ;
bool QProcess_IsSequential ( const QProcess * self ) ;
bool QProcess_CanReadLine ( const QProcess * self ) ;
2024-08-25 04:08:24 +00:00
void QProcess_Close ( QProcess * self ) ;
2024-09-11 05:41:09 +00:00
bool QProcess_AtEnd ( const QProcess * self ) ;
2024-09-16 07:33:40 +00:00
int QProcess_Execute ( struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments ) ;
2024-09-14 22:29:05 +00:00
int QProcess_ExecuteWithCommand ( struct miqt_string * command ) ;
2024-09-16 07:33:40 +00:00
bool QProcess_StartDetached2 ( struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments , struct miqt_string * workingDirectory ) ;
bool QProcess_StartDetached3 ( struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments ) ;
2024-09-14 22:29:05 +00:00
bool QProcess_StartDetachedWithCommand ( struct miqt_string * command ) ;
struct miqt_array * QProcess_SystemEnvironment ( ) ;
struct miqt_string * QProcess_NullDevice ( ) ;
2024-08-25 04:08:24 +00:00
void QProcess_Terminate ( QProcess * self ) ;
void QProcess_Kill ( QProcess * self ) ;
void QProcess_Finished ( QProcess * self , int exitCode ) ;
2024-10-13 06:06:06 +00:00
void QProcess_connect_Finished ( QProcess * self , intptr_t slot ) ;
2024-09-18 00:12:02 +00:00
void QProcess_Finished2 ( QProcess * self , int exitCode , int exitStatus ) ;
2024-10-13 06:06:06 +00:00
void QProcess_connect_Finished2 ( QProcess * self , intptr_t slot ) ;
2024-09-18 00:12:02 +00:00
void QProcess_ErrorWithError ( QProcess * self , int error ) ;
2024-10-13 06:06:06 +00:00
void QProcess_connect_ErrorWithError ( QProcess * self , intptr_t slot ) ;
2024-09-18 00:12:02 +00:00
void QProcess_ErrorOccurred ( QProcess * self , int error ) ;
2024-10-13 06:06:06 +00:00
void QProcess_connect_ErrorOccurred ( QProcess * self , intptr_t slot ) ;
2024-09-14 22:29:05 +00:00
struct miqt_string * QProcess_Tr2 ( const char * s , const char * c ) ;
struct miqt_string * QProcess_Tr3 ( const char * s , const char * c , int n ) ;
struct miqt_string * QProcess_TrUtf82 ( const char * s , const char * c ) ;
struct miqt_string * QProcess_TrUtf83 ( const char * s , const char * c , int n ) ;
2024-09-16 07:33:40 +00:00
void QProcess_Start3 ( QProcess * self , struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments , int mode ) ;
2024-09-14 22:29:05 +00:00
void QProcess_Start22 ( QProcess * self , struct miqt_string * command , int mode ) ;
2024-08-29 07:01:51 +00:00
void QProcess_Start1 ( QProcess * self , int mode ) ;
bool QProcess_StartDetached1 ( QProcess * self , long long * pid ) ;
bool QProcess_Open1 ( QProcess * self , int mode ) ;
2024-09-14 22:29:05 +00:00
void QProcess_SetStandardOutputFile2 ( QProcess * self , struct miqt_string * fileName , int mode ) ;
void QProcess_SetStandardErrorFile2 ( QProcess * self , struct miqt_string * fileName , int mode ) ;
2024-08-25 04:08:24 +00:00
bool QProcess_WaitForStarted1 ( QProcess * self , int msecs ) ;
bool QProcess_WaitForReadyRead1 ( QProcess * self , int msecs ) ;
bool QProcess_WaitForBytesWritten1 ( QProcess * self , int msecs ) ;
bool QProcess_WaitForFinished1 ( QProcess * self , int msecs ) ;
2024-09-16 07:33:40 +00:00
bool QProcess_StartDetached4 ( struct miqt_string * program , struct miqt_array * /* of struct miqt_string* */ arguments , struct miqt_string * workingDirectory , long long * pid ) ;
2024-08-25 04:08:24 +00:00
void QProcess_Delete ( QProcess * self ) ;
# ifdef __cplusplus
} /* extern C */
# endif
# endif