LibOFX
win32.hh
1/***************************************************************************
2 $RCSfile: win32.hh,v $
3 -------------------
4 cvs : $Id: win32.hh,v 1.3 2007-10-27 12:15:58 aquamaniac Exp $
5 begin : Sat Oct 27 2007
6 copyright : (C) 2007 by Martin Preuss
7 email : martin@libchipcard.de
8
9 ***************************************************************************
10 * This file is part of the project "LibOfx". *
11 * Please see toplevel file COPYING of that project for license details. *
12 ***************************************************************************/
13
14#ifndef LIBOFX_WIN32_HH
15#define LIBOFX_WIN32_HH
16
17
18
19#ifdef HAVE_CONFIG_H
20# include <config.h>
21#endif
22
23
24#ifdef _WIN32
25
26int mkstemp_win32(char *tmpl);
27
28
29#endif
30
31
32#endif
33