* contrib/hbbmcdx/bmdbfcdx1.c
* contrib/hbct/ctnet.c
* contrib/hbct/pos2.c
* contrib/hbgf/gtk/creabutt.c
* contrib/hbgf/gtk/creawin.c
* contrib/hbgt/bitflags.c
* contrib/hbmisc/stringsx.c
* contrib/hbtip/encmthd.c
* contrib/hbtip/utils.c
* contrib/hbw32/w32_ole.c
* contrib/hbwhat32/_wincdlg.c
* contrib/hbwhat32/_winclpb.c
* contrib/hbwhat32/_wintree.c
* contrib/rddads/ads1.c
* contrib/xhb/xstrdel.c
* source/rdd/dbcmd.c
* source/rdd/dbf1.c
* source/rdd/dbfcdx/dbfcdx1.c
* source/rdd/dbffpt/dbffpt1.c
* source/rdd/dbfntx/dbfntx1.c
* source/rdd/delim1.c
* source/rdd/hbsix/sxsem.c
* source/rdd/sdf1.c
* source/rdd/workarea.c
* source/rtl/alert.prg
* source/rtl/errorsys.prg
* source/rtl/gtcrs/gtcrs.c
* source/rtl/gtgui/gtgui.c
* source/rtl/gtsln/gtsln.c
* source/rtl/gtwin/gtwin.c
* source/rtl/gtxwc/gtxwc.c
* source/rtl/hbgtcore.c
* source/rtl/hbregex.c
* source/vm/cmdarg.c
* source/vm/dynsym.c
! LUPDATE() buffer overread fixed. (hb_retds(""))
% hb_itemPutC*()/hb_retc*()/hb_errInternal() "" parameter -> NULL
NOTE: gtwvg not changed.
* Few minor cleanups.
* Some formatting in ads1.c.
(verified to result in no actual codeflow change)
; TODO: hb_retc( NULL ) -> hb_retc_null()
277 lines
8.4 KiB
C
277 lines
8.4 KiB
C
/*
|
||
* $Id$
|
||
*/
|
||
|
||
/*
|
||
* xHarbour Project source code:
|
||
* CT3 NET functions to PC-LAN/MS-NET.
|
||
*
|
||
* Copyright 2004 Eduardo Fernandes <eduardo@modalsistemas.com.br>
|
||
* www - http://www.xharbour.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.
|
||
*
|
||
*/
|
||
|
||
/*
|
||
* CT3 NET Functions Comments:
|
||
*
|
||
* NETCANCEL( <cLocalDevice> ) -> lReleased
|
||
* Return true if <cLocalDevice> was disconnected.
|
||
*
|
||
* NETDISK( cDrive ) -> lSuccess
|
||
* Return true if <cDrive> is a network drive, otherwise return false if is a local drive.
|
||
*
|
||
* NETLOCNAME( cSahredDevice ) -> cLocalDevice
|
||
* Not implemented yet.
|
||
*
|
||
* NETPRINTER() -> lSuccess
|
||
* Return true if a current local printer seted by SET PRINTER TO was connected to a
|
||
* network printer.
|
||
*
|
||
* NETREDIR( cLocalDevice, cSharedDevice, [ cPassword ], [ lShowError] ) -> lSuccess
|
||
* Return true if <cLocalDevice> was connected to <cSharedDevice> with <cPassword>, if any.
|
||
*
|
||
* NETRMTNAME( cLocalDevice ) -> cSharedName
|
||
* Return the shared resource name connected to a <cLocalDevice>.
|
||
* The original parameter <nDevice> in CA-Clipper Tools was changed to <cLocalName> in
|
||
* xHarbour because in Windows Network I didn´t find a number table like in MS-DOS. See
|
||
* CA-Tools help for more details.
|
||
*
|
||
* NETWORK() -> lSuccess
|
||
* Return true if a PC-LAN/MS-NET or Netware type is active.
|
||
*
|
||
* NNETWORK() -> lSuccess
|
||
* Return true if a Netware type is active.
|
||
*
|
||
*/
|
||
|
||
#include "hbapi.h"
|
||
#include "hbapiitm.h"
|
||
#include "hbset.h"
|
||
#include "hbapierr.h"
|
||
|
||
#if defined(HB_OS_WIN_32)
|
||
|
||
# include <windows.h>
|
||
# include <winnetwk.h>
|
||
|
||
# define HB_OS_WIN_32_USED
|
||
|
||
BOOL WINAPI WNetErrorHandler( DWORD dwErrorCode, LPSTR lpszFunction )
|
||
{
|
||
HB_ITEM_PTR pError;
|
||
|
||
if( dwErrorCode != ERROR_EXTENDED_ERROR )
|
||
{
|
||
pError = hb_errRT_New( ES_ERROR,
|
||
"CT",
|
||
9001,
|
||
0,
|
||
"Windows Network operation failed",
|
||
lpszFunction, ( USHORT ) dwErrorCode, EF_NONE );
|
||
hb_errLaunch( pError );
|
||
hb_itemRelease( pError );
|
||
}
|
||
else
|
||
{
|
||
DWORD dwLastError, dwWNetResult;
|
||
TCHAR lpDescription[256], lpProvider[256];
|
||
char * szDescription, * szProvider;
|
||
|
||
dwWNetResult = WNetGetLastError( &dwLastError, lpDescription, 256,
|
||
lpProvider, 256 );
|
||
|
||
if( dwWNetResult != NO_ERROR )
|
||
{
|
||
pError = hb_errRT_New( ES_ERROR, "CT", 9002, 0,
|
||
"WNetGetLastError failed", "see OS error",
|
||
( USHORT ) dwWNetResult, EF_NONE );
|
||
hb_errLaunch( pError );
|
||
hb_itemRelease( pError );
|
||
return FALSE;
|
||
}
|
||
|
||
szDescription = HB_TCHAR_CONVFROM( lpDescription );
|
||
szProvider = HB_TCHAR_CONVFROM( lpProvider );
|
||
pError = hb_errRT_New( ES_ERROR, "CT", 9003, 0,
|
||
szDescription, szProvider,
|
||
( USHORT ) dwLastError, EF_NONE );
|
||
HB_TCHAR_FREE( szDescription );
|
||
HB_TCHAR_FREE( szProvider );
|
||
|
||
hb_errLaunch( pError );
|
||
hb_itemRelease( pError );
|
||
}
|
||
|
||
return TRUE;
|
||
}
|
||
|
||
static BOOL hb_IsNetShared( LPSTR szLocalDevice )
|
||
{
|
||
TCHAR lpRemoteDevice[80];
|
||
LPTSTR lpLocalDevice;
|
||
DWORD cchBuff = sizeof( lpRemoteDevice ) / sizeof( TCHAR );
|
||
DWORD dwResult;
|
||
|
||
lpLocalDevice = HB_TCHAR_CONVTO( szLocalDevice );
|
||
dwResult = WNetGetConnection( ( LPTSTR ) lpLocalDevice,
|
||
( LPTSTR ) lpRemoteDevice, &cchBuff );
|
||
HB_TCHAR_FREE( lpLocalDevice );
|
||
|
||
return dwResult == NO_ERROR;
|
||
}
|
||
|
||
HB_FUNC( NETCANCEL )
|
||
{
|
||
DWORD dwResult;
|
||
LPTSTR lpDevice = HB_TCHAR_CONVTO( hb_parcx( 1 ) );
|
||
|
||
dwResult = WNetCancelConnection( lpDevice, TRUE ); /* FALSE = fail if exist open files or print jobs. */
|
||
|
||
HB_TCHAR_FREE( lpDevice );
|
||
/* TRUE = force cancel connection even if exist
|
||
* open files or print jobs.
|
||
*/
|
||
hb_retl( dwResult == NO_ERROR );
|
||
}
|
||
|
||
|
||
HB_FUNC( NETPRINTER )
|
||
{
|
||
char * cPrn = hb_setGetCPtr( HB_SET_PRINTFILE ); /* query default local printer port. */
|
||
|
||
if( !cPrn || !*cPrn || hb_stricmp( cPrn, "PRN" ) == 0 )
|
||
cPrn = "LPT1";
|
||
hb_retl( hb_IsNetShared( cPrn ) );
|
||
}
|
||
|
||
|
||
HB_FUNC( NETDISK )
|
||
{
|
||
char cDrive[3];
|
||
|
||
cDrive[0] = hb_parcx( 1 )[0];
|
||
cDrive[1] = ':';
|
||
cDrive[2] = '\0';
|
||
|
||
hb_retl( hb_IsNetShared( cDrive ) );
|
||
}
|
||
|
||
|
||
HB_FUNC( NETREDIR )
|
||
{
|
||
DWORD dwResult;
|
||
LPTSTR lpLocalDev = HB_TCHAR_CONVTO( hb_parcx( 1 ) );
|
||
LPTSTR lpSharedRes = HB_TCHAR_CONVTO( hb_parcx( 2 ) );
|
||
LPTSTR lpPassword = HB_TCHAR_CONVTO( hb_parcx( 3 ) );
|
||
BOOL bShowError = ( ISLOG( 4 ) ? hb_parl( 4 ) : FALSE );
|
||
|
||
if( hb_pcount() >= 3 && ISCHAR( 3 ) )
|
||
dwResult = WNetAddConnection( lpSharedRes, lpPassword, lpLocalDev );
|
||
else
|
||
dwResult = WNetAddConnection( lpSharedRes, NULL, lpLocalDev );
|
||
|
||
if( dwResult == NO_ERROR )
|
||
hb_retl( TRUE );
|
||
else
|
||
{
|
||
if( bShowError )
|
||
{
|
||
char szCommand[80];
|
||
snprintf( szCommand, 80, "NETREDIR( \"%s\", \"%s\", \"%s\" )",
|
||
hb_parcx( 1 ), hb_parcx( 2 ), hb_parcx( 3 ) );
|
||
WNetErrorHandler( dwResult, szCommand );
|
||
}
|
||
hb_retl( FALSE );
|
||
}
|
||
}
|
||
|
||
HB_FUNC( NETRMTNAME )
|
||
{
|
||
TCHAR lpRemoteDevice[80];
|
||
LPTSTR lpLocalDevice;
|
||
DWORD cchBuff = sizeof( lpRemoteDevice ) / sizeof( TCHAR );
|
||
DWORD dwResult;
|
||
char *szRemoteDevice;
|
||
|
||
lpLocalDevice = HB_TCHAR_CONVTO( hb_parcx( 1 ) );
|
||
dwResult = WNetGetConnection( ( LPTSTR ) lpLocalDevice,
|
||
( LPTSTR ) lpRemoteDevice, &cchBuff );
|
||
HB_TCHAR_FREE( lpLocalDevice );
|
||
szRemoteDevice = HB_TCHAR_CONVFROM( lpRemoteDevice );
|
||
hb_retc( dwResult == NO_ERROR ? szRemoteDevice : NULL );
|
||
HB_TCHAR_FREE( szRemoteDevice );
|
||
}
|
||
|
||
|
||
HB_FUNC( NETWORK )
|
||
{
|
||
DWORD dwResult;
|
||
TCHAR lpProviderName[80];
|
||
DWORD cchBuff = sizeof( lpProviderName ) / sizeof( TCHAR );
|
||
|
||
dwResult = WNetGetProviderName( WNNC_NET_MSNET, lpProviderName, &cchBuff );
|
||
|
||
if( dwResult != NO_ERROR )
|
||
{
|
||
dwResult = WNetGetProviderName( WNNC_NET_LANMAN, lpProviderName, &cchBuff );
|
||
|
||
if( dwResult != NO_ERROR )
|
||
dwResult = WNetGetProviderName( WNNC_NET_NETWARE, lpProviderName, &cchBuff );
|
||
}
|
||
|
||
hb_retl( dwResult == NO_ERROR );
|
||
}
|
||
|
||
|
||
HB_FUNC( NNETWORK )
|
||
{
|
||
DWORD dwResult;
|
||
TCHAR lpProviderName[80];
|
||
DWORD cchBuff = sizeof( lpProviderName ) / sizeof( TCHAR );
|
||
|
||
dwResult = WNetGetProviderName( WNNC_NET_NETWARE, lpProviderName, &cchBuff );
|
||
|
||
hb_retl( dwResult == NO_ERROR );
|
||
}
|
||
|
||
#endif
|