2009-07-10 22:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/common/hbver.c
    % Deleted unnecessary casts.

  * examples/hbmsql/msql.c
    * Fixed const warnings.

  * examples/hbmake/hbmake.hbp
  - examples/hbmake/hbmakec.c
  * examples/hbmake/hbmake.prg
    * Using portable HB_USERLANG() instead of local Windows-only solution.

  - examples/hboleold
    - Deleted. It's no longer easy to fix with new const usage.

  - examples/hbgf
    - Deleted. We have much better GUI examples these days then these
      very early ones.

  * examples/httpsrv/uhttpdc.c
    * Minor formatting.
This commit is contained in:
Viktor Szakats
2009-07-10 20:40:45 +00:00
parent 5da96d8c2a
commit 3a6ae0c57e
54 changed files with 43 additions and 8666 deletions

View File

@@ -77,11 +77,11 @@ BOOL win_SysRefresh( int iMsec )
/* Begin the operation and continue until it is complete
or until the user clicks the mouse or presses a key. */
while( MsgWaitForMultipleObjects( 1, &hDummyEvent, FALSE, ( iMsec == 0 ? INFINITE : ( ULONG ) iMsec ), QS_ALLINPUT | QS_ALLPOSTMESSAGE) == WAIT_OBJECT_0 + 1 )
while( MsgWaitForMultipleObjects( 1, &hDummyEvent, FALSE, ( iMsec == 0 ? INFINITE : ( ULONG ) iMsec ), QS_ALLINPUT | QS_ALLPOSTMESSAGE ) == WAIT_OBJECT_0 + 1 )
{
MSG msg;
while( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) )
while( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) )
{
switch( msg.message )
{
@@ -145,7 +145,7 @@ HB_FUNC( HB_UTCOFFSET )
char * szRet = ( char * ) hb_xgrab( 6 );
int nLen;
#if defined(HB_OS_WIN)
#if defined( HB_OS_WIN )
{
TIME_ZONE_INFORMATION tzInfo;