2010-02-23 09:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbmzip/ioapi.c
  * contrib/hbmzip/zip.c
  * contrib/hbmzip/unzip.c
  * contrib/hbmzip/zip.h
  * contrib/hbmzip/unzip.h
  * contrib/xhb/hbcomprs.c
    % Using hbzlib.h directly instead of hbzlib.h.
    ; TODO: Delete hbzlib.h.
This commit is contained in:
Viktor Szakats
2010-02-23 08:25:34 +00:00
parent 2d7d0564e5
commit 0a0da68244
7 changed files with 21 additions and 10 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-02-23 09:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmzip/ioapi.c
* contrib/hbmzip/zip.c
* contrib/hbmzip/unzip.c
* contrib/hbmzip/zip.h
* contrib/hbmzip/unzip.h
* contrib/xhb/hbcomprs.c
% Using hbzlib.h directly instead of hbzlib.h.
; TODO: Delete hbzlib.h.
2010-02-22 19:05 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idedocks.prg
* contrib/hbide/resources/docviewgenerator.ui
@@ -126,7 +136,7 @@
! Fixed to setup all OS/2 INCL_* constants and
to #include os2.h by themselves, and not to rely
on Harbour headers to do this job for them.
; TODO: Do the same for dos.h.
; TODO: Do the same for dos.h. [DONE]
* doc/hdr_tpl.txt
- Deleted local changelog.
@@ -158,7 +168,7 @@
+ Added logic to #include OS/2 headers with some INCL_
macros defined, to make QT on OS/2 happy. (copied them
from the dev. list)
; TODO: Regenerate HBQT sources.
; TODO: Regenerate HBQT sources. [DONE]
* utils/hbtest/hbtest.prg
! Cleaned old problem reported by Chen. It seems like
@@ -2024,8 +2034,8 @@
; From now on the recommended native DLL interface for Harbour apps is:
WAPI_LOADLIBRARY(), WAPI_GETPROCADDRESS(), WAPI_FREELIBRARY() and
WIN_DLLCALL()
; TODO: Solve GC collected HMODULE in above WAPI LIB handling functions.
; TODO: Clean HB_LIB*() vs. WAPI LIB handling confusion.
; TODO: Solve GC collected HMODULE in above WAPI LIB handling functions. [DONE]
; TODO: Clean HB_LIB*() vs. WAPI LIB handling confusion. [DONE]
* contrib/hbwin/tests/testdll.prg
* Changed to use WAPI_LOADLIBRARY()/WAPI_FREELIBRARY()

View File

@@ -11,7 +11,7 @@
#include <string.h>
#include "hbapifs.h"
#include "hbzlib.h"
#include "zlib.h"
#include "ioapi.h"

View File

@@ -38,7 +38,7 @@ woven in by Terry Thorsen 1/2003.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hbzlib.h"
#include "zlib.h"
#include "unzip.h"
#include "hbapi.h" /* for hb_xgrab()/hb_xfree() */

View File

@@ -50,7 +50,7 @@ extern "C" {
#endif
#ifndef _ZLIB_H
#include "hbzlib.h"
#include "zlib.h"
#endif
#ifndef _ZLIBIOAPI_H

View File

@@ -14,7 +14,7 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "hbzlib.h"
#include "zlib.h"
#include "zip.h"
#include "hbapi.h" /* for hb_xgrab()/hb_xfree() */

View File

@@ -51,7 +51,7 @@ extern "C" {
#endif
#ifndef _ZLIB_H
#include "hbzlib.h"
#include "zlib.h"
#endif
#ifndef _ZLIBIOAPI_H

View File

@@ -55,7 +55,8 @@
#include "hbstack.h"
#include "hbapierr.h"
#include "hbvm.h"
#include "hbzlib.h"
#include <zlib.h>
/*******************************************************************
* Giancarlo Niccolai: