diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 28718986a5..84c8b6eb70 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-02-13 20:52 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbwin/hbdyn.h + * contrib/hbwin/hbdyn.ch + * Cleanup in comments. + 2010-02-13 20:20 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbwin/Makefile + contrib/hbwin/hbdyn.h diff --git a/harbour/contrib/hbwin/hbdyn.ch b/harbour/contrib/hbwin/hbdyn.ch index bc84045a33..4fa3a85a15 100644 --- a/harbour/contrib/hbwin/hbdyn.ch +++ b/harbour/contrib/hbwin/hbdyn.ch @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * Header for .dll support + * Dynamic call (high-level header) * * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) * www - http://www.harbour-project.org @@ -55,17 +55,17 @@ #ifndef HBDYN_CH_ #define HBDYN_CH_ -/* WIN_DLLCALL() C calling convention */ +/* C calling conventions */ #define HB_DYN_CALLCONV_STDCALL 0x000000 #define HB_DYN_CALLCONV_CDECL 0x100000 -/* WIN_DLLCALL() string encoding */ +/* String encodings */ #define HB_DYN_ENC_ASCII 0x000000 #define HB_DYN_ENC_UTF8 0x010000 #define HB_DYN_ENC_UTF16 0x040000 #define HB_DYN_ENC_RAW 0x080000 -/* WIN_DLLCALL() C types */ +/* C types */ #define HB_DYN_CTYPE_DEFAULT 0x000000 #define HB_DYN_CTYPE_CHAR 0x000001 #define HB_DYN_CTYPE_CHAR_UNSIGNED 0x000011 diff --git a/harbour/contrib/hbwin/hbdyn.h b/harbour/contrib/hbwin/hbdyn.h index 069d34c344..2a3c2cadc1 100644 --- a/harbour/contrib/hbwin/hbdyn.h +++ b/harbour/contrib/hbwin/hbdyn.h @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * Dynamic call (low-level) + * Dynamic call (low-level header) * * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) * www - http://www.harbour-project.org