df3f9c9f36
* NEW: New web site design. [WIKI CGI SCRIPT] * NEW: New web site design. [INTERPRETER] * BUG: Remove some unused code. * NEW: Stream got three new methods: Begin, Send & Drop. All WRITE instructions between a Begin and Send will be merged in one bunch of data that will be sent when Stream.End() is called. Stream.Drop() is there to cancel that process. * BUG: Correctly handle EINTR when writing to the SIGCHLD pipe. git-svn-id: svn://localhost/gambas/trunk@3730 867c0c6c-44f3-4631-809d-bfa615b0a4ec
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
/***************************************************************************
|
|
|
|
gbx_c_application.h
|
|
|
|
(c) 2000-2011 Benoît Minisini <gambas@users.sourceforge.net>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __GBX_C_APPLICATION_H
|
|
#define __GBX_C_APPLICATION_H
|
|
|
|
#include "gambas.h"
|
|
|
|
#ifndef __GBX_C_APPLICATION_C
|
|
extern GB_DESC NATIVE_AppEnv[];
|
|
extern GB_DESC NATIVE_AppArgs[];
|
|
extern GB_DESC NATIVE_App[];
|
|
extern GB_DESC NATIVE_System[];
|
|
extern GB_DESC NATIVE_User[];
|
|
#endif
|
|
|
|
//void CAPP_init(void);
|
|
//void CAPP_got_signal(void);
|
|
|
|
#endif
|