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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-win32.c : Win32-specific bits */
/*
* Authors: Tor Lillqvist <tml@novell.com>
*
* Copyright 2005 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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 <windows.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/stat.h>
#include <io.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <libedataserver/e-data-server-util.h>
#include "camel.h"
G_LOCK_DEFINE_STATIC (mutex);
/* localedir uses system codepage as it is passed to the non-UTF8ified
* gettext library
*/
static const char *localedir = NULL;
/* The others are in UTF-8 */
static const char *libexecdir;
static const char *providerdir;
static void
setup (void)
{
G_LOCK (mutex);
if (localedir != NULL) {
G_UNLOCK (mutex);
return;
}
localedir = e_util_replace_prefix (E_DATA_SERVER_PREFIX, e_util_get_cp_prefix (), EVOLUTION_LOCALEDIR);
libexecdir = e_util_replace_prefix (E_DATA_SERVER_PREFIX, e_util_get_prefix (), CAMEL_LIBEXECDIR);
providerdir = e_util_replace_prefix (E_DATA_SERVER_PREFIX, e_util_get_prefix (), CAMEL_PROVIDERDIR);
G_UNLOCK (mutex);
}
#include "camel-private.h" /* For prototypes */
#define GETTER(varbl) \
const char * \
_camel_get_##varbl (void) \
{ \
setup (); \
return varbl; \
}
GETTER(localedir)
GETTER(libexecdir)
GETTER(providerdir)
int
fsync (int fd)
{
int handle;
struct stat st;
handle = _get_osfhandle (fd);
if (handle == -1)
return -1;
fstat (fd, &st);
/* FlushFileBuffers() fails if called on a handle to the
* console output. As we cannot know whether fd refers to the
* console output or not, punt, and call FlushFileBuffers()
* only for regular files and pipes.
*/
if (!(S_ISREG (st.st_mode) || S_ISFIFO (st.st_mode)))
return 0;
if (FlushFileBuffers ((HANDLE) handle))
return 0;
errno = EIO;
return -1;
}
|