adding code into pio.c for win32

This commit is contained in:
2009-06-09 07:09:01 +00:00
parent 769e4ec9b1
commit 334b52900d
7 changed files with 401 additions and 17 deletions

View File

@ -1,5 +1,8 @@
/* include/qse/config.h.in. Generated from configure.ac by autoheader. */
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Define to 1 if you have the `atan' function. */
#undef HAVE_ATAN
@ -162,6 +165,15 @@
/* Define to 1 if you have the `uselocale' function. */
#undef HAVE_USELOCALE
/* Define to 1 if you have the `utime' function. */
#undef HAVE_UTIME
/* Define to 1 if you have the `utimes' function. */
#undef HAVE_UTIMES
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
@ -330,3 +342,15 @@
/* Version number of package */
#undef VERSION
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
#endif

View File

@ -1,5 +1,5 @@
/*
* $Id: sed.h 192 2009-06-07 13:33:07Z hyunghwan.chung $
* $Id: sed.h 193 2009-06-08 13:09:01Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -361,7 +361,6 @@ qse_size_t qse_sed_getlinnum (
/**
* The qse_sed_setlinnum() function changes the current input line number.
* It the address matching and the '=' command.
*/
void qse_sed_setlinnum (
qse_sed_t* sed, /**< a stream editor */