* harbour/contrib/gtwvg/wvgcore.c
! Fixed hb_wvt_Get|SetStringAttrib()s to respect return errcode.
+ harbour/contrib/examples/terminal
+ harbour/contrib/examples/terminal/terminal.prg
+ harbour/contrib/examples/terminal/terminal.ch
+ harbour/contrib/examples/terminal/trm_server.prg
+ harbour/contrib/examples/terminal/trm_client.prg
+ harbour/contrib/examples/terminal/trm_appn.prg
+ harbour/contrib/examples/terminal/reame.txt
+ Added components for Harbour Terminal Protocol
Welcome in the world of Harbour Terminal Protocol
=================================================
Harbour Terminal Protocol is build on three components:
1) Terminal Server
2) Terminal Client
3) The Harbour Application
Terminal Server
===============
Source => trm_server.prg
Link => GTWVG
Run => trm_server.exe 2011
Parameter => <TCP/IP Port number - [D] 8085 ]
Mode => MT ( Multi Threaded )
Terminal Server will reside on the same machine or network ( as of now )
where Harbour Application resides. Harbour Application must be able
to be run by ShellExecute() WINAPI function issued by the Terminal Server.
Terminal Client
===============
Source => trm_client.prg
Link => GTWVG
Run => trm_client.exe <IP - 127.0.0.1 | vouch.dynalias.com>
<Port where Terminal Server is Listening - 2011>
<Harbour Application - c:\harbour\contrib\examples\terminal\trm_appn.exe>
[Parameters - Norammly Supplied to Appln - Separated by SPACE ]
[InitDirectory - Harbour Application's Startup Folder ]
Mode => ST ( Single Threaded )
Terminal Client can be distributed anywhere there is ACCESS TO designated TCP/IP port,
be it a network clinet or any computer having internet avalable.
Parameters supplied TO Harbour Client can be on command line or as an .ini file.
.Ini file may contain these entries:
ServerIP = 127.0.0.1 | vouch.dynalias.com
ServerPort = 2011
Application = c:\harbour\contrib\examples\terminal\trm_appn.exe
Parameters = any number of parameters separated by a space
InitDirectory = Complete Folder path from where Harbour Appln will be invoked.
IF parameters are supplied as .ini file, then .ini filename ( without path ) will be the
only parameter - note - only one parameter passed on the command line.
Harbour Application
===================
Source(s) => trm_appn.prg | Your program sources +
terminal.prg +
terminal.ch
Link => GTWVG
Run => No
Mode => ST ( Single Thread )
Main() FUNCTION in Harbour Application will have TO be modified TO accept
one additional parameter <cServerInfo> at the END of the usual parameters
your application is accepting as ususal. And make sure that you send the same
number of parameter either on the command line or through .ini file.
<cServerInfo> parameter is supplied by Harbour Terminal Server.
At just start of the Harbour Application, immediately after variable definitions
in main() add these lines:
FUNCTION Main( [p1] [, p2] [, p3], cServerInfo )
LOCAL x, y
// Required it initialize the GTWVG window
SetColor( 'N/W,W/B,W+/N' )
CLS
? ' '
#ifdef __REMOTE__
// cServerInfo will be supplied by the Remote Server
//
RmtSvrSetInfo( cServerInfo )
IF ( nServerPort := RmtSvrSetInfo( 1 ) ) <> NIL .and. nServerPort > 0
IF !RmtSvrInitialize( NTRIM( nServerPort ), 60/*nTimeoutClient*/, 0.5 /*nTimeRefresh*/ )
Quit
ENDIF
ENDIF
#endif
...
...
RETURN
Must remember to issue - ANNOUNCE HB_NOSTARTUPWINDOW - somewhere in your sources
Please note that we do not want to show up the Harbour console on the server so
HB_NOSTARTUPWINDOW symbol must be defined.
And this is the only requirement for your appln to be NET ready.
Technical Overview
==================
Client connects to Server.
Server looks for a free port - 45000+.
Server invokes Harbour Application with client supplied parameters + <cSerrverInfo==45000+>.
Harbour Application itself behaves as server on start listening on designated port.
Server informs back to Client about this port where Harbour Application is listening.
Client connects to Harbour Application on designated port.
If connection is successful, Server closes the connection from Client and Application.
Client and Application then have the direct communication.
Client transmits the keystrokes and Application reacts TO those events as IF supplied via keyboard.
Application transmits the screen buffer back TO client IF there have been any changes.
Application also transmits special commands, call them 'Remote Procedure Calls'.
Client responds TO received buffer according TO instruction it contains.
Client retrieves buffer per command basis.
Events are not serialized.
The Bottom Line
===============
The protocol above works as expected but is not as sophisticated as it should be.
GTNET as Przemek has been talking about will be the perfect solution though this
can be the basis FOR future enhancements. A lot can be improved, i.e., remote
printing, etc., which I hope you Gurus can implement in no times.
It is my humble contribution TO the Harbour world.
Regards
Pritpal Bedi <pritpal@vouchcac.com>
a student of software analysis & design
519 lines
14 KiB
Plaintext
519 lines
14 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
*
|
|
* Copyright 2009 Pritpal Bedi <pritpal@vouchcac.com>
|
|
* http://www.harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
//----------------------------------------------------------------------//
|
|
//----------------------------------------------------------------------//
|
|
//----------------------------------------------------------------------//
|
|
//
|
|
// Terminal Server
|
|
//
|
|
// Pritpal Bedi (pritpal@vouchcac.com)
|
|
// 13 Feb 2009
|
|
//
|
|
//----------------------------------------------------------------------//
|
|
//----------------------------------------------------------------------//
|
|
//----------------------------------------------------------------------//
|
|
|
|
#include 'inkey.ch'
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
static g_nUserCount
|
|
static g_nTotalCount
|
|
static MutexDB
|
|
static MutexCount
|
|
|
|
Static nMaxCol
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function Main( cPort )
|
|
LOCAL GetList
|
|
LOCAL socket
|
|
LOCAL Key, nKey
|
|
LOCAL cCommand
|
|
LOCAL hView, hAccept
|
|
|
|
nMaxCol := maxcol()+1
|
|
|
|
IF Empty( cPort ) .OR. Val( cPort ) == 0
|
|
cPort := "8085"
|
|
ENDIF
|
|
|
|
GetList := {}
|
|
g_nUserCount := 0
|
|
g_nTotalCount := 0
|
|
|
|
MutexDB := HB_MutexCreate()
|
|
MutexCount := HB_MutexCreate()
|
|
|
|
SetColor( 'W+/N' )
|
|
SetCursor( 0 )
|
|
SetCursor( .f. )
|
|
|
|
BuildScreen()
|
|
|
|
hb_InetInit()
|
|
|
|
Socket := hb_InetServer( val( cPort ) )
|
|
|
|
DispOutAt( 3, 0, padc( "Waiting for connections on port " + cPort, nMaxCol ), 'W+/N' )
|
|
|
|
hView := hb_ThreadStart( @ViewUpdate() , Socket )
|
|
hAccept := hb_ThreadStart( @AcceptIncoming(), Socket )
|
|
|
|
DO WHILE .T.
|
|
nKey := inkey()
|
|
|
|
if nKey == K_CTRL_F12
|
|
//hb_ThreadStop( hView )
|
|
|
|
// closing the socket will release the accept() request
|
|
//hb_InetClose( Socket )
|
|
|
|
//hb_ThreadStop( hAccept )
|
|
EXIT
|
|
ENDIF
|
|
ENDDO
|
|
|
|
DispOutAt( maxrow()-2, 0, padc( 'Please kill the window if not closed automatically',nMaxCol ), 'W+/N' )
|
|
|
|
hb_InetClose( Socket )
|
|
hb_InetCleanup()
|
|
|
|
RETURN nil
|
|
|
|
//----------------------------------------------------------------------//
|
|
//
|
|
// Server Socket manager
|
|
//
|
|
PROCEDURE AcceptIncoming( Socket )
|
|
LOCAL pClientSocket
|
|
|
|
DO WHILE .T.
|
|
pClientSocket := hb_InetAccept( Socket )
|
|
|
|
IF pClientSocket != NIL
|
|
hb_mutexLock( MutexCount )
|
|
g_nUserCount++
|
|
g_nTotalCount++
|
|
hb_mutexUnlock( MutexCount )
|
|
|
|
hb_ThreadStart( @ServeClient(), pClientSocket )
|
|
hb_gcAll( .T. )
|
|
ELSE
|
|
? "Catched error ", hb_InetErrorCode( Socket ), hb_InetErrorDesc( Socket )
|
|
//EXIT
|
|
ENDIF
|
|
ENDDO
|
|
|
|
RETURN
|
|
|
|
//----------------------------------------------------------------------//
|
|
//
|
|
// Service incoming connection
|
|
//
|
|
PROCEDURE ServeClient( Socket )
|
|
LOCAL cRequest, cReply, cReq, cCmdLine, cLine, lExit, aFields
|
|
LOCAL oXmlDoc, oXmlForm, oXmlName, cFields, cData, oXmlData, oXmlNode
|
|
LOCAL aProcessInfo := array( 4 )
|
|
LOCAL cPostData := ""
|
|
LOCAL nLength := 0
|
|
LOCAL nContLen := 0
|
|
Local nn := 0
|
|
Local a_ := {}
|
|
|
|
static nServerPort := 45000
|
|
|
|
do while .t.
|
|
lExit := .f.
|
|
BEGIN SEQUENCE
|
|
*** First of all, we must take the request of the user
|
|
cRequest := alltrim( hb_InetRecvLine( Socket, @nLength ) )
|
|
|
|
RECOVER
|
|
lExit := .t.
|
|
|
|
END SEQUENCE
|
|
|
|
if lExit
|
|
EXIT
|
|
endif
|
|
|
|
if nLength < 0
|
|
exit
|
|
|
|
elseif nLength > 1
|
|
a_:= hb_aTokens( cRequest, '|' )
|
|
|
|
cReq := upper( a_[ 1 ] )
|
|
|
|
do case
|
|
case cReq == 'AR'
|
|
nServerPort++
|
|
SvrExecuteAPP( 'C:\DEV\C5\BIN\AR32.EXE', ltrim( str( nServerPort++ ) ), 'R:\ARTEST\' )
|
|
inkey( 5 )
|
|
cReply := 'CONNECT;'+'127.0.0.1'+';'+ltrim( str( nServerPort++ ) )+';'
|
|
|
|
case cReq == 'VOUCH'
|
|
nServerPort++
|
|
|
|
cCmdLine := a_[ 3 ] +' '+ ltrim( str( nServerPort ) )
|
|
SvrExecuteAPP( a_[ 2 ], cCmdLine, a_[ 4 ] )
|
|
cReply := 'CONNECT;'+'127.0.0.1'+';'+ltrim( str( nServerPort ) )+';'+a_[ 2 ]+';'
|
|
|
|
case cReq == 'ARCONNECTED'
|
|
// No further info required, close connection
|
|
EXIT
|
|
|
|
case cReq == 'FORM'
|
|
#if 0
|
|
oXmlDoc := TXmlDocument():new( '<?xml version="1.0"?>' )
|
|
|
|
oXmlNode := TXmlNode():New( ,'form', { 'name' => 'CLIENT' } )
|
|
oXmlDoc:oRoot:addBelow( oXmlNode )
|
|
|
|
cFields := 'Code,C,8,0,@!,10,20,,^'+;
|
|
'Name,C,20,0,@!,12,20,,^'+;
|
|
'Salary,N,10,2,@Z 9999999.99,14,20,,^'+;
|
|
'Job,C,20,0,,16,20,,^'+;
|
|
'Birth,D,8,0,,18,20,,^'
|
|
|
|
oXmlNode := TXmlNode():New( ,'fields', { 'fields' => cFields } )
|
|
oXmlDoc:oRoot:addBelow( oXmlNode )
|
|
|
|
cData := 'C01|JOHNY WALKER|200|DRUMMER|01/01/1956|'
|
|
oXmlNode := TXmlNode():New( ,'data', { 'data' => cData } )
|
|
oXmlDoc:oRoot:addBelow( oXmlNode )
|
|
|
|
cReply := 'FORM;'+oXmlDoc:ToString( 1 )
|
|
|
|
/*
|
|
cReply := 'FORM;'+;
|
|
'<NAME>'+;
|
|
'CLIENT'+;
|
|
'</NAME>'+;
|
|
'<FORM>'+;
|
|
'Code,C,8,0,@!,10,20,,^'+;
|
|
'Name,C,20,0,@!,12,20,,^'+;
|
|
'Salary,N,10,2,@Z 9999999.99,14,20,,^'+;
|
|
'Job,C,20,0,,16,20,,^'+;
|
|
'Birth,D,8,0,,18,20,,^'+;
|
|
'</FORM>'+;
|
|
'<DATA>'+;
|
|
'C01|JOHNY WALKER|200|DRUMMER|01/01/1956|'+;
|
|
'</DATA>'
|
|
|
|
*/
|
|
#endif
|
|
case cReq == 'SCREEN'
|
|
cReply := 'SCREEN;'+SaveScreen( 0,0,MAXROW(),MAXCOL() )
|
|
|
|
case cReq == 'INFO'
|
|
cReply := 'INFO;' + ltrim( str( hb_INetPort( Socket ) ) )+';'+hb_INetAddress( Socket )+';'
|
|
|
|
otherwise
|
|
cReply := 'GENERIC;' + 'Request # '+ltrim( str( ++nn,10,0 ) )
|
|
|
|
endcase
|
|
|
|
DispOutAt( 15, 0, " REQ: " + Substr( cRequest, 0 , 75 ) + Space( 80 ),'W+/BG' )
|
|
DispOutAt( 16, 0, " RLY: " + Substr( cReply, 0 , 75 ) + Space( 80 ), 'W+/B' )
|
|
|
|
cReply += chr(13)+chr(10)
|
|
|
|
hb_InetSend( Socket, @cReply )
|
|
|
|
else
|
|
//ThreadSleep( 50 )
|
|
inkey( 0.05 )
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
hb_InetClose( Socket )
|
|
|
|
RETURN
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function SvrExecuteApp( cAppln, cParams, cDirectory )
|
|
|
|
Return ShellExecute( cAppln, cParams, cDirectory )
|
|
|
|
//----------------------------------------------------------------------//
|
|
//
|
|
// Managing visual updates
|
|
//
|
|
PROCEDURE ViewUpdate( Socket )
|
|
LOCAL nProgress := 0
|
|
|
|
DO WHILE .T.
|
|
HB_MutexLock( MutexCount )
|
|
|
|
Looping( @nProgress, 5, 39 )
|
|
|
|
DispOutAt( 8, 5, "Main socket status : " + Str( hb_InetErrorCode( Socket ) ) +" :"+;
|
|
hb_InetErrorDesc( Socket ) )
|
|
|
|
DispOutAt( 9, 5, "Connected Users : " + Str( g_nUserCount ) )
|
|
DispOutAt( 10, 5, "Total users : " + Str( g_nTotalCount ) )
|
|
|
|
HB_MutexUnlock( MutexCount )
|
|
|
|
inkey( 0.1 )
|
|
ENDDO
|
|
|
|
RETURN
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
PROCEDURE Progress( nProgress, nDrow, nDcol )
|
|
|
|
DispOutAt( nDrow, nDcol, "[ ]" )
|
|
|
|
DO CASE
|
|
CASE nProgress = 0
|
|
DispOutAt( nDrow, nDcol+1, "-" )
|
|
CASE nProgress = 1
|
|
DispOutAt( nDrow, nDcol+1, "\" )
|
|
CASE nProgress = 2
|
|
DispOutAt( nDrow, nDcol+1, "|" )
|
|
CASE nProgress = 3
|
|
DispOutAt( nDrow, nDcol+1, "/" )
|
|
ENDCASE
|
|
|
|
nProgress++
|
|
|
|
IF nProgress == 4
|
|
nProgress := 0
|
|
ENDIF
|
|
|
|
RETURN
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
PROCEDURE Looping( nProgress, nDrow, nDcol )
|
|
|
|
IF nProgress > 3 .OR. nProgress < 0
|
|
nProgress := 0
|
|
ENDIF
|
|
|
|
DispOutAt( nDrow, nDcol, "[ ]" )
|
|
|
|
DO CASE
|
|
CASE nProgress = 0
|
|
DispOutAt( nDrow, nDcol+1, "-" )
|
|
CASE nProgress = 1
|
|
DispOutAt( nDrow, nDcol+1, "\" )
|
|
CASE nProgress = 2
|
|
DispOutAt( nDrow, nDcol+1, "|" )
|
|
CASE nProgress = 3
|
|
DispOutAt( nDrow, nDcol+1, "/" )
|
|
ENDCASE
|
|
|
|
nProgress++
|
|
|
|
IF nProgress == 4
|
|
nProgress := 0
|
|
ENDIF
|
|
|
|
RETURN
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function BuildScreen()
|
|
|
|
CLEAR SCREEN
|
|
|
|
DispOutAt( 0,0, padc( "Welcome to V o u c h Server", maxcol()+1 ), 'w+/r' )
|
|
|
|
DispOutAt( maxrow(),0,padc( 'Press CTRL+F12 to QUIT',maxcol()+1 ), 'w+/r' )
|
|
|
|
Return nil
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function uiDebug( p1,p2,p3,p4,p5,p6,p7,p8,p9,p10 )
|
|
Local cDebug := ''
|
|
|
|
if p1 <> nil
|
|
cDebug += uiXtos( p1 )
|
|
endif
|
|
if p2 <> nil
|
|
cDebug += ' ' + uiXtos( p2 )
|
|
endif
|
|
if p3 <> nil
|
|
cDebug += ' ' + uiXtos( p3 )
|
|
endif
|
|
if p4 <> nil
|
|
cDebug += ' ' + uiXtos( p4 )
|
|
endif
|
|
if p5 <> nil
|
|
cDebug += ' ' + uiXtos( p5 )
|
|
endif
|
|
if p6 <> nil
|
|
cDebug += ' ' + uiXtos( p6 )
|
|
endif
|
|
if p7 <> nil
|
|
cDebug += ' ' + uiXtos( p7 )
|
|
endif
|
|
if p8 <> nil
|
|
cDebug += ' ' + uiXtos( p8 )
|
|
endif
|
|
if p9 <> nil
|
|
cDebug += ' ' + uiXtos( p9 )
|
|
endif
|
|
if p10 <> nil
|
|
cDebug += ' ' + uiXtos( p10 )
|
|
endif
|
|
|
|
OutputDebugString( cDebug )
|
|
|
|
Return nil
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function uiXtos( xVar )
|
|
Local cVar := ''
|
|
Local cType := valtype( xVar )
|
|
|
|
do case
|
|
case cType == 'C'
|
|
cVar := xVar
|
|
|
|
case cType == 'N'
|
|
cVar := str( xVar )
|
|
|
|
case cType == 'D'
|
|
cVar := dtoc( xVar )
|
|
|
|
case cType == 'L'
|
|
cVar := if( xVar, 'Yes','No ' )
|
|
|
|
otherwise
|
|
cVar := 'NIL'
|
|
|
|
endcase
|
|
|
|
Return cVar
|
|
|
|
//----------------------------------------------------------------------//
|
|
|
|
Function HB_GTSYS()
|
|
REQUEST HB_GT_WVG_DEFAULT
|
|
Return nil
|
|
|
|
//----------------------------------------------------------------------//
|
|
#pragma BEGINDUMP
|
|
|
|
#include "hbapi.h"
|
|
#include <windows.h>
|
|
#include <shellapi.h>
|
|
|
|
// CreateProcess( cExe, cCmdLineArgs, nFlags, cEnvPair, cInitDirectory, @aProcessInfo )
|
|
//
|
|
HB_FUNC( CREATEPROCESS )
|
|
{
|
|
LPCTSTR lpApplicationName; // name of executable module
|
|
LPTSTR lpCommandLine; // command line string
|
|
LPSECURITY_ATTRIBUTES lpProcessAttributes; // SD
|
|
LPSECURITY_ATTRIBUTES lpThreadAttributes; // SD
|
|
BOOL bInheritHandles; // handle inheritance option
|
|
DWORD dwCreationFlags; // creation flags
|
|
LPVOID lpEnvironment; // new environment block
|
|
LPCTSTR lpCurrentDirectory; // current directory name
|
|
LPSTARTUPINFO lpStartupInfo; // startup information
|
|
LPPROCESS_INFORMATION lpProcessInformation; // process information
|
|
|
|
lpApplicationName = NULL;//hb_parc( 1 );
|
|
lpCommandLine = hb_parc( 1 );//NULL;//ISNIL( 2 ) ? NULL : hb_parc( 2 );
|
|
lpProcessAttributes = NULL;
|
|
lpThreadAttributes = NULL;
|
|
bInheritHandles = TRUE;
|
|
dwCreationFlags = NULL; //ISNUM( 3 ) ? hb_parnl( 3 ) : CREATE_NEW_CONSOLE;
|
|
lpEnvironment = NULL; //ISCHAR( 4 ) ? hb_parc( 4 ) : NULL;
|
|
lpCurrentDirectory = NULL; //ISCHAR( 5 ) ? hb_parc( 5 ) : NULL;
|
|
lpStartupInfo = NULL;
|
|
|
|
hb_retl(
|
|
CreateProcess(
|
|
lpApplicationName,
|
|
lpCommandLine,
|
|
lpProcessAttributes,
|
|
lpThreadAttributes,
|
|
bInheritHandles,
|
|
dwCreationFlags,
|
|
lpEnvironment,
|
|
lpCurrentDirectory,
|
|
lpStartupInfo,
|
|
NULL ) );
|
|
}
|
|
|
|
HB_FUNC( SHELLEXECUTE )
|
|
{
|
|
ShellExecute( NULL,
|
|
"OPEN",
|
|
hb_parc( 1 ),
|
|
ISNIL( 2 ) ? NULL : hb_parc( 2 ),
|
|
ISNIL( 3 ) ? NULL : hb_parc( 3 ),
|
|
SW_SHOWNORMAL );
|
|
}
|
|
|
|
HB_FUNC( OUTPUTDEBUGSTRING )
|
|
{
|
|
OutputDebugString( hb_parc( 1 ) );
|
|
}
|
|
|
|
#pragma ENDDUMP
|
|
//----------------------------------------------------------------------//
|
|
|