sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef __GLIBBACKEND_H__ sl@0: #define __GLIBBACKEND_H__ sl@0: sl@0: #include <_ansi.h> sl@0: #include sl@0: sl@0: #define P_NOWAIT 0 sl@0: #define P_WAIT 1 sl@0: sl@0: typedef int HANDLE; sl@0: typedef HANDLE* LPHANDLE; sl@0: typedef long DWORD; sl@0: typedef int BOOL; sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" sl@0: { sl@0: #endif /* __cplusplus */ sl@0: sl@0: IMPORT_C int spawnv(int mode,const char * path,const char **argv); sl@0: IMPORT_C int spawnvp(int mode,const char * path,const char **argv); sl@0: IMPORT_C BOOL CloseHandle(HANDLE handle); sl@0: IMPORT_C HANDLE GetCurrentProcess(); sl@0: IMPORT_C int spawnve(int mode,const char * path,const char **argv,const char **envp); sl@0: IMPORT_C int spawnvpe(int mode,const char * path,const char **argv,const char **envp); sl@0: IMPORT_C char* applicationpath(); sl@0: IMPORT_C int check_for_child_exited (int aHandle); sl@0: IMPORT_C void *pAlloc(size_t nBytes); sl@0: IMPORT_C char *getProgPath(char *progName); sl@0: IMPORT_C void pFree(void *ptr); sl@0: IMPORT_C void *pReAlloc(void *ptr,size_t nBytes); sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif /* __cplusplus */ sl@0: sl@0: #endif /* __GLIBBACKEND_H__ */