[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
- Previous message: [grisbi-cvs] grisbi/win32-msvc CMakeLists.txt,1.3,1.4
- Next message: [grisbi-cvs] grisbi/po cs.po, 1.48, 1.49 da.po, 1.55, 1.56 de.po, 1.112, 1.113 el.po, 1.19, 1.20 eo.po, 1.12, 1.13 es.po, 1.102, 1.103 fa.po, 1.42, 1.43 fr.po, 1.174, 1.175 grisbi.pot, 1.90, 1.91 he.po, 1.48, 1.49 it.po, 1.48, 1.49 nl.po, 1.47, 1.48 pl.po, 1.53, 1.54 pt_BR.po, 1.50, 1.51 ro.po, 1.48, 1.49 ru.po, 1.47, 1.48 zh_CN.po, 1.42, 1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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: */
- Previous message: [grisbi-cvs] grisbi/win32-msvc CMakeLists.txt,1.3,1.4
- Next message: [grisbi-cvs] grisbi/po cs.po, 1.48, 1.49 da.po, 1.55, 1.56 de.po, 1.112, 1.113 el.po, 1.19, 1.20 eo.po, 1.12, 1.13 es.po, 1.102, 1.103 fa.po, 1.42, 1.43 fr.po, 1.174, 1.175 grisbi.pot, 1.90, 1.91 he.po, 1.48, 1.49 it.po, 1.48, 1.49 nl.po, 1.47, 1.48 pl.po, 1.53, 1.54 pt_BR.po, 1.50, 1.51 ro.po, 1.48, 1.49 ru.po, 1.47, 1.48 zh_CN.po, 1.42, 1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list