1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
** The cvsgui protocol used by WinCvs
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library 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
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* gimpprotocol.h from the GIMP modified for the cvsgui project by :
* Alexandre Parenteau <aubonbeurre@hotmail.com> --- January 2000
*/
#ifndef CVSGUI_PROTOCOL_H
#define CVSGUI_PROTOCOL_H
#include "cvsgui_wire.h"
enum {
GP_QUIT,
GP_GETENV,
GP_CONSOLE
};
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
gint32 code;
} GPT_QUIT;
typedef struct
{
guint8 empty;
char *str;
} GPT_GETENV;
typedef struct
{
guint8 isStderr;
guint32 len;
char *str;
} GPT_CONSOLE;
int gp_quit_write (pipe_t fd, int code);
int gp_getenv_write (pipe_t fd, const char *env);
int gp_console_write (pipe_t fd, const char *str, int len, int isStderr);
char *gp_getenv_read (pipe_t fd);
extern pipe_t _cvsgui_readfd;
extern pipe_t _cvsgui_writefd;
#ifdef __cplusplus
}
#endif
#endif /* CVSGUI_PROTOCOL_H */
|