2010-01-16 12:05 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbct/files.c
    - Deleted no longer necessary OS/2 and Windows specific headers.

  * contrib/hbct/print.c
    ! Fixed PRINTSEND() to return permanent zero (instead of NIL)
      on non-win/djgpp targets.
This commit is contained in:
Viktor Szakats
2010-01-16 11:06:59 +00:00
parent 86e5fc2ca4
commit 0646355a18
3 changed files with 13 additions and 11 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-01-16 12:05 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbct/files.c
- Deleted no longer necessary OS/2 and Windows specific headers.
* contrib/hbct/print.c
! Fixed PRINTSEND() to return permanent zero (instead of NIL)
on non-win/djgpp targets.
2010-01-16 12:01 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbct/ctnet.c
* contrib/hbct/disk.c

View File

@@ -61,14 +61,6 @@
*
*/
/* OS2 */
#define INCL_DOSFILEMGR /* File Manager values */
#define INCL_DOSERRORS /* DOS error values */
#define INCL_DOSDATETIME /* DATETIME functions */
/* Windows */
#define HB_OS_WIN_USED
#include "hbapi.h"
#include "hbapifs.h"
#include "hbapiitm.h"
@@ -84,14 +76,12 @@
# include <sys/farptr.h>
# include <sys/param.h>
#endif
#if defined( HB_OS_UNIX ) || defined( __DJGPP__ )
# include <sys/types.h>
# include <utime.h>
# include <unistd.h>
# include <time.h>
#elif defined( HB_OS_OS2 )
# include <os2.h>
# include <stdio.h>
#endif

View File

@@ -232,5 +232,9 @@ HB_FUNC( PRINTSEND )
}
hb_retni( usRet );
#else
hb_retni( 0 );
#endif
}