2008-09-24 01:41 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* contrib/hbwhat/tests/whatdemo.prg
    ! SVN ID.

  + contrib/hbwhat/tests/bld_b32.bat
  + contrib/hbwhat/tests/bld_vc.bat
    + Added missing non-GNU make files.
This commit is contained in:
Viktor Szakats
2008-09-23 23:42:07 +00:00
parent f1045db35b
commit 47c7147ae1
4 changed files with 45 additions and 5 deletions

View File

@@ -8,6 +8,14 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-24 01:41 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbwhat/tests/whatdemo.prg
! SVN ID.
+ contrib/hbwhat/tests/bld_b32.bat
+ contrib/hbwhat/tests/bld_vc.bat
+ Added missing non-GNU make files.
2008-09-24 01:37 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/gtsys.c
* Added HB_WINCE with GTWVT to the set of defaults.

View File

@@ -0,0 +1,15 @@
@echo off
rem
rem $Id$
rem
if "%HB_BIN_INSTALL%" == "" set HB_BIN_INSTALL=..\..\..\bin
if "%HB_LIB_INSTALL%" == "" set HB_LIB_INSTALL=..\..\..\lib
if "%HB_INC_INSTALL%" == "" set HB_INC_INSTALL=..\..\..\include
set HB_ARCHITECTURE=w32
set HB_COMPILER=bcc32
set HB_USER_LIBS=hbwhat.lib gtwvg.lib xhb.lib
set C_USR=-tW
call %HB_BIN_INSTALL%\bld.bat %1 %2 %3 %4 %5 %6 %7 %8 %9

View File

@@ -0,0 +1,14 @@
@echo off
rem
rem $Id$
rem
if "%HB_BIN_INSTALL%" == "" set HB_BIN_INSTALL=..\..\..\bin
if "%HB_LIB_INSTALL%" == "" set HB_LIB_INSTALL=..\..\..\lib
if "%HB_INC_INSTALL%" == "" set HB_INC_INSTALL=..\..\..\include
set HB_ARCHITECTURE=w32
set HB_COMPILER=msvc
set HB_USER_LIBS=hbwhat.lib gtwvg.lib xhb.lib comdlg32.lib comctl32.lib shell32.lib ole32.lib oleaut32.lib
call %HB_BIN_INSTALL%\bld.bat %1 %2 %3 %4 %5 %6 %7 %8 %9

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
//----------------------------------------------------------------------//
//
// WhatDemo.prg
@@ -6,18 +10,18 @@
//
//----------------------------------------------------------------------//
#Include "inkey.ch"
#Include "winuser.ch"
#include "inkey.ch"
#include "winuser.ch"
//----------------------------------------------------------------------//
Function Main()
Local nKey
SetColor( 'N/W' )
SetColor( "N/W" )
CLS
DispOutAt( Maxrow(),0, padc( 'F2 New Dialog ESC Exit', maxcol()+1 ), 'W+/R' )
DispOutAt( Maxrow(),0, padc( "F2 New Dialog ESC Exit", maxcol()+1 ), "W+/R" )
do while .t.
nKey := inkey()
@@ -114,4 +118,3 @@ Function MyDlgProc2( hDlg, nMsg, nwParam, nlParam )
Return( 0 )
//----------------------------------------------------------------------//