[grisbi-cvs] grisbi/win32-msvc/src realpath.c, NONE, 1.1 realpath.h, NONE, 1.1

Mickaƫl Remars mykeul at users.sourceforge.net
Mon Aug 24 22:15:44 CEST 2009


Update of /cvsroot/grisbi/grisbi/win32-msvc/src
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32723/win32-msvc/src

Added Files:
	realpath.c realpath.h 
Log Message:
Implemented a fake realpath() for msvc to get a first full build on msvc

--- NEW FILE: realpath.h ---
#ifndef _GRISBI_WIN32_MSVC_REALPATH_H
#define _GRISBI_WIN32_MSVC_REALPATH_H (1)

/* START_DECLARATION */
char *realpath(const char *path, char resolved_path[]);
/* END_DECLARATION */

#endif//_GRISBI_WIN32_MSVC_REALPATH_H

--- NEW FILE: realpath.c ---
/* ************************************************************************** */
/*                                  realpath.c                                */
/*                                                                            */
/*     Copyright (C)    2000-2008 Cedric Auger (cedric at grisbi.org)            */
/*          2003-2008 Benjamin Drieu (bdrieu at april.org)                       */
/*          http://www.grisbi.org                                             */
/*                                                                            */
/*  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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
/*                                                                            */
/* ************************************************************************** */

#include "realpath.h"


/*
 * @see the realpath() function from <stdlib.h>
 */
char *realpath(const char *path, char resolved_path[])
{
	return 0x0; //TODO
}

/* Local Variables: */
/* c-basic-offset: 4 */
/* End: */



More information about the cvs mailing list