* source/rtl/isprint.c
! Fixed ISPRINTER() on Win32 after last changes.
Thanks Guillermo, pls test now.
* source/rdd/dbcmd.c
! Marked as HB_EXTENSION: FIELDLEN(), FIELDDEC(), FIELDTYPE()
* include/hbextern.ch
* source/rdd/dbcmd.c
! Marked as HB_EXTENSION: DBDROP(), DBEXISTS(), RDDINFO()
(they were properly marked in hbextern.ch but not in source)
* include/hbextern.ch
* source/rtl/disksphb.c
* source/rtl/fssize.c
* source/rtl/fstemp.c
* source/rtl/inkey.c
* source/rtl/oemansi.c
* source/rtl/philes.c
* source/rtl/setcolor.c
* source/rtl/setfunc.prg
* source/rtl/setkey.c
* source/rtl/shadow.c
* source/rtl/trace.c
* source/rtl/valtostr.c
* source/vm/dynsym.c
+ Removed HB_EXTENSION from all the .prg level functions
prefixed with HB_.
(there was a mixed situation here, but there's no need
to mark any HB_ functions as extensions, as it's obvious
by their name. So as a rule, no HB_ prefixed function
should ever be marked as HB_EXTENSION anymore.)
! Fixed some inconsistencies in HB_EXTENSION between
hbextern.ch and actual sources.
* source/rtl/tgetlist.prg
* One HB_EXTENSION changed to !HB_C52_STRICT because it
was guarding a bugfix rather than a real extension.
* source/rtl/gui.prg
* _GetNumCol() is now always strictly compatible.
NOTE added about sloppy C5.3 behaviour.
* source/rtl/inkey.c
* contrib/xhb/xhb.ch
* contrib/xhb/xhbfunc.c
! __KEYBOARD() xhb hidden parameter extension moved to
xhb lib. For similar functionality inside Harbour
pls use HB_KEYPUT(). __KEYBOARD is now 100% C5.x
compatible.
* source/rtl/setfunc.prg
* __SetFunction() extension now uses HB_KEYPUT() instead
of __KEYBOARD() extended parameters.
* source/compiler/hbfunchk.c
* source/rtl/at.c
! AT() extra parameters handled when HB_EXTENSION is on
(was !HB_C52_STRICT). (The first extra parameter is
XPP and Flagship compatible. The three parameter version
of this function is called AT3() in CAVO.)
! TRIM()/RTRIM() extra parameters handled on compiler level
when HB_EXTENSION is on (default).
! FILE() parameter check turned off in compiler.
(to be C5.x compatible)
* source/rtl/alert.prg
! ALERT() Harbour extended parameter (1st parameter type)
is now guarded with HB_EXTENSION instead of HB_C52_STRICT.
* source/rtl/gete.c
! GETE[NV]() Harbour extended parameter guarded with HB_EXTENSION.
* source/vm/proc.c
! PROCFILE() Harbour extended parameter guarded with HB_EXTENSION.
* source/rtl/mlcfunc.c
! Harbour extended parameters for MEMOLINE()/MLCOUNT()/
MLPOS()/MLCTOPOS()/MPOSTOLC() are now guarded with HB_EXTENSION
(instead of HB_C52_STRICT). It seems to be possible to
specify custom EOLs for all these functions. (Maybe simple
automatic Unix/Win EOL style handling would be better here)
* source/vm/memvars.c
! Guarded Harbour extension in __MVRESTORE() with HB_EXTENSION.
; After this cleanup:
- HB_EXTENSION is marking extra features living inside existing C5.x
functions or classes, or Harbour extension functions
not complying with the HB_ prefix rule (we have six
such functions in RDD). If there are more extended
parameters in Harbour pls mark them with HB_EXTENSION
too.
- HB_C52_STRICT is guarding bugfixes compared to C5.x.
- No HB_ functions are guarded with HB_EXTENSION anymore.
- We'd pbly need to review each HB_EXTENSIONs to check whether they
are safe or not.
- A list of HB_EXTENSIONs:
- MLCOUNT()
MEMOLINE()
MLPOS()
MLCPOS()
MPOSTOLC() - 5th and up can specify custom EOLs.
- ALERT() - 1st parameter type can be any type in Harbour, char only in C5.x
- SET FUNCTION TO
__SETFUNCTION - 2nd parameter can be numeric or array of numeric in Harbour.
- SETKEY() - 3rd codeblock parameter ("isactive" block)
- SAVESCREEN() - 5th parameter: lNoCheck (?)
RESTSCREEN() - 6th parameter: lNoCheck (?)
- AT() - 3rd and 4th parameters to set search range. 3rd parameter is
also supported by XPP and FS. Results in compiler error in C5.x.
(CAVO uses AT2() and AT3() for extended versions.)
- TRIM()
RTRIM() - 2nd parameter is an extension regarding space trimming mode.
Results in compiler error in C5.x.
- ALLTRIM() - 2nd parameter is an extension regarding space trimming mode.
- GETE()
GETENV() - 2nd parameter specifies a default value. Can be found in HB_GETENV().
- PROCFILE() - 1st parameter is a Harbour extension. Undocumented function in C5.x.
The extension looks similar to the one found in Flagship.
- __MVRESTORE() - 3rd/4th parameters are Harbour extensions to set variable name
mask. Redirected from the internal 5.x function named __MRESTORE().
- DB*() - cRDD, nConnection, cCodePage extra parameters in many DB*() functions.
TOFIX: None of them is marked as HB_EXTENSION.
- SET()s - These are not marked as HB_EXTENSION.
- ? - Is there anything else?
452 lines
12 KiB
C
452 lines
12 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* ISPRINTER() function
|
|
*
|
|
* Copyright 1999-2002 Viktor Szakats <viktor.szakats@syenar.hu>
|
|
* www - 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.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* The following parts are Copyright of the individual authors.
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* Copyright 2001 Luiz Rafael Culik <culik@sl.conex.net>
|
|
* ISPRINTER() support for win32
|
|
*
|
|
* See doc/license.txt for licensing terms.
|
|
*
|
|
*/
|
|
|
|
#define HB_OS_WIN_32_USED
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapifs.h"
|
|
|
|
|
|
#undef HB_WIN_32_PRINTERS
|
|
#if defined(HB_OS_WIN_32) && !defined(__RSXNT__) && !defined(__CYGWIN__)
|
|
|
|
# define HB_WIN_32_PRINTERS
|
|
# include <stdio.h>
|
|
# include <winspool.h>
|
|
|
|
static BOOL IsPrinterError(HANDLE hPrinter);
|
|
|
|
static BOOL GetJobs(HANDLE hPrinter,
|
|
JOB_INFO_2 **ppJobInfo,
|
|
int *pcJobs,
|
|
DWORD *pStatus);
|
|
static BOOL DPGetDefaultPrinter(LPTSTR pPrinterName, LPDWORD pdwBufferSize);
|
|
#endif
|
|
|
|
#define MAXBUFFERSIZE 255
|
|
|
|
HB_EXPORT BOOL hb_printerIsReady( char * pszPrinterName )
|
|
{
|
|
BOOL bIsPrinter;
|
|
|
|
#if defined(HB_OS_DOS)
|
|
|
|
/* NOTE: DOS specific solution, using BIOS interrupt */
|
|
|
|
{
|
|
USHORT uiPort;
|
|
|
|
if( hb_strnicmp( pszPrinterName, "PRN", 3 ) == 0 )
|
|
{
|
|
union REGS regs;
|
|
|
|
regs.h.ah = 2;
|
|
regs.HB_XREGS.dx = 0; /* LPT1 */
|
|
|
|
HB_DOS_INT86( 0x17, ®s, ®s );
|
|
|
|
bIsPrinter = ( regs.h.ah == 0x90 );
|
|
}
|
|
else if( strlen( pszPrinterName ) >= 4 &&
|
|
hb_strnicmp( pszPrinterName, "LPT", 3 ) == 0 &&
|
|
( uiPort = atoi( pszPrinterName + 3 ) ) > 0 )
|
|
{
|
|
union REGS regs;
|
|
|
|
regs.h.ah = 2;
|
|
regs.HB_XREGS.dx = uiPort - 1;
|
|
|
|
HB_DOS_INT86( 0x17, ®s, ®s );
|
|
|
|
bIsPrinter = ( regs.h.ah == 0x90 );
|
|
}
|
|
else
|
|
bIsPrinter = FALSE;
|
|
}
|
|
|
|
#else
|
|
|
|
/* NOTE: Platform independent method, at least it will compile and run
|
|
on any platform, but the result may not be the expected one,
|
|
since Unix/Linux doesn't support LPT/COM by nature, other OSs
|
|
may not reflect the actual physical presence of the printer when
|
|
trying to open it, since we are talking to the spooler.
|
|
[vszakats] */
|
|
|
|
{
|
|
FHANDLE fhnd = hb_fsOpen( ( BYTE * ) pszPrinterName, FO_WRITE | FO_SHARED | FO_PRIVATE );
|
|
bIsPrinter = ( fhnd != FS_ERROR );
|
|
hb_fsClose( fhnd );
|
|
}
|
|
|
|
#endif
|
|
|
|
return bIsPrinter;
|
|
}
|
|
|
|
/* NOTE: The parameter is an XBase++ extension over CA-Cl*pper. [vszakats] */
|
|
|
|
HB_FUNC( ISPRINTER )
|
|
{
|
|
#ifdef HB_COMPAT_XPP
|
|
char * pszPrinter = hb_parc( 1 );
|
|
hb_retl( hb_printerIsReady( pszPrinter ? pszPrinter : ( char * ) "LPT1" ) );
|
|
#else
|
|
hb_retl( hb_printerIsReady( "LPT1" ) );
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( HB_ISPRINTER )
|
|
{
|
|
#if defined(HB_WIN_32_PRINTERS)
|
|
|
|
/* NOTE: This Win32 specific bitmap printer support would have to
|
|
go somewhere else. [vszakats] */
|
|
|
|
char DefaultPrinter[MAXBUFFERSIZE];
|
|
DWORD pdwBufferSize = MAXBUFFERSIZE;
|
|
HANDLE hPrinter;
|
|
char * pszPrinterName;
|
|
DPGetDefaultPrinter( ( LPTSTR ) &DefaultPrinter, &pdwBufferSize );
|
|
pszPrinterName = ISCHAR( 1 ) ? hb_parc( 1 ) : ( char * ) DefaultPrinter;
|
|
|
|
if( *pszPrinterName && OpenPrinter( pszPrinterName, &hPrinter, NULL ) )
|
|
{
|
|
hb_retl( ! IsPrinterError( hPrinter ) );
|
|
CloseHandle( hPrinter );
|
|
}
|
|
else
|
|
hb_retl( FALSE );
|
|
|
|
#else
|
|
char * pszPrinter = hb_parc( 1 );
|
|
hb_retl( hb_printerIsReady( pszPrinter ? pszPrinter : ( char * ) "LPT1" ) );
|
|
#endif
|
|
}
|
|
|
|
|
|
/* The code below does the check for the printer under Win32 */
|
|
|
|
#if defined(HB_WIN_32_PRINTERS)
|
|
|
|
static BOOL IsPrinterError( HANDLE hPrinter )
|
|
{
|
|
JOB_INFO_2 *pJobs;
|
|
int cJobs,
|
|
i;
|
|
DWORD dwPrinterStatus;
|
|
|
|
/*
|
|
* Get the state information for the Printer Queue and
|
|
* the jobs in the Printer Queue.
|
|
*/
|
|
if (!GetJobs(hPrinter, &pJobs, &cJobs, &dwPrinterStatus))
|
|
return FALSE;
|
|
|
|
/*
|
|
* If the Printer reports an error, believe it.
|
|
*/
|
|
if (dwPrinterStatus &
|
|
(PRINTER_STATUS_ERROR |
|
|
PRINTER_STATUS_PAPER_JAM |
|
|
PRINTER_STATUS_PAPER_OUT |
|
|
PRINTER_STATUS_PAPER_PROBLEM |
|
|
PRINTER_STATUS_OUTPUT_BIN_FULL |
|
|
PRINTER_STATUS_NOT_AVAILABLE |
|
|
PRINTER_STATUS_NO_TONER |
|
|
PRINTER_STATUS_OUT_OF_MEMORY |
|
|
PRINTER_STATUS_OFFLINE |
|
|
PRINTER_STATUS_DOOR_OPEN))
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Find the Job in the Queue that is printing.
|
|
*/
|
|
for (i=0; i < cJobs; i++)
|
|
{
|
|
if (pJobs[i].Status & JOB_STATUS_PRINTING)
|
|
{
|
|
/*
|
|
* If the job is in an error state,
|
|
* report an error for the printer.
|
|
* Code could be inserted here to
|
|
* attempt an interpretation of the
|
|
* pStatus member as well.
|
|
*/
|
|
if (pJobs[i].Status &
|
|
(JOB_STATUS_ERROR |
|
|
JOB_STATUS_OFFLINE |
|
|
JOB_STATUS_PAPEROUT |
|
|
JOB_STATUS_BLOCKED_DEVQ))
|
|
{
|
|
return TRUE;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* No error condition.
|
|
*/
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static BOOL GetJobs(HANDLE hPrinter, /* Handle to the printer. */
|
|
JOB_INFO_2 **ppJobInfo, /* Pointer to be filled. */
|
|
int *pcJobs, /* Count of jobs filled. */
|
|
DWORD *pStatus) /* Print Queue status. */
|
|
{
|
|
|
|
DWORD cByteNeeded;
|
|
DWORD nReturned;
|
|
DWORD cByteUsed;
|
|
JOB_INFO_2 * pJobStorage;
|
|
PRINTER_INFO_2 * pPrinterInfo;
|
|
|
|
/* Get the buffer size needed. */
|
|
if (!GetPrinter(hPrinter, 2, NULL, 0, &cByteNeeded))
|
|
{
|
|
if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
|
|
return FALSE;
|
|
}
|
|
|
|
pPrinterInfo = (PRINTER_INFO_2 *) hb_xgrab( cByteNeeded );
|
|
if (!(pPrinterInfo))
|
|
/* Failure to allocate memory. */
|
|
return FALSE;
|
|
|
|
/* Get the printer information. */
|
|
if (!GetPrinter(hPrinter,
|
|
2,
|
|
(LPBYTE)pPrinterInfo,
|
|
cByteNeeded,
|
|
&cByteUsed))
|
|
{
|
|
/* Failure to access the printer. */
|
|
hb_xfree( pPrinterInfo );
|
|
return FALSE;
|
|
}
|
|
|
|
/* Get job storage space. */
|
|
if (!EnumJobs(hPrinter,
|
|
0,
|
|
pPrinterInfo->cJobs,
|
|
2,
|
|
NULL,
|
|
0,
|
|
(LPDWORD)&cByteNeeded,
|
|
(LPDWORD)&nReturned))
|
|
{
|
|
if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
|
|
{
|
|
hb_xfree( pPrinterInfo );
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
pJobStorage = (JOB_INFO_2 *) hb_xgrab( cByteNeeded );
|
|
if (!pJobStorage)
|
|
{
|
|
/* Failure to allocate Job storage space. */
|
|
hb_xfree( pPrinterInfo );
|
|
return FALSE;
|
|
}
|
|
|
|
ZeroMemory(pJobStorage, cByteNeeded);
|
|
|
|
/* Get the list of jobs. */
|
|
if (!EnumJobs(hPrinter,
|
|
0,
|
|
pPrinterInfo->cJobs,
|
|
2,
|
|
(LPBYTE)pJobStorage,
|
|
cByteNeeded,
|
|
(LPDWORD)&cByteUsed,
|
|
(LPDWORD)&nReturned))
|
|
{
|
|
hb_xfree( pPrinterInfo );
|
|
hb_xfree( pJobStorage );
|
|
return FALSE;
|
|
}
|
|
|
|
/*
|
|
* Return the information.
|
|
*/
|
|
*pcJobs = nReturned;
|
|
*pStatus = pPrinterInfo->Status;
|
|
*ppJobInfo = pJobStorage;
|
|
hb_xfree( pPrinterInfo );
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOL DPGetDefaultPrinter(LPTSTR pPrinterName, LPDWORD pdwBufferSize)
|
|
{
|
|
BOOL bFlag;
|
|
OSVERSIONINFO osv;
|
|
TCHAR cBuffer[MAXBUFFERSIZE], *ptr;
|
|
PRINTER_INFO_2 *ppi2 = NULL;
|
|
DWORD dwNeeded = 0;
|
|
DWORD dwReturned = 0;
|
|
|
|
/* What version of Windows are you running? */
|
|
osv.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
GetVersionEx(&osv);
|
|
|
|
/* If Windows 95 or 98, use EnumPrinters... */
|
|
if (osv.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)
|
|
{
|
|
/* The first EnumPrinters() tells you how big our buffer should
|
|
be in order to hold ALL of PRINTER_INFO_2. Note that this will
|
|
usually return FALSE. This only means that the buffer (the 4th
|
|
parameter) was not filled in. You don't want it filled in here... */
|
|
EnumPrinters(PRINTER_ENUM_DEFAULT, NULL, 2, NULL, 0, &dwNeeded, &dwReturned);
|
|
if (dwNeeded == 0)
|
|
return FALSE;
|
|
|
|
/* Allocate enough space for PRINTER_INFO_2... */
|
|
ppi2 = (PRINTER_INFO_2 *)GlobalAlloc(GPTR, dwNeeded);
|
|
if (!ppi2)
|
|
return FALSE;
|
|
|
|
/* The second EnumPrinters() will fill in all the current information... */
|
|
bFlag = EnumPrinters(PRINTER_ENUM_DEFAULT, NULL, 2, (LPBYTE)ppi2, dwNeeded, &dwNeeded, &dwReturned);
|
|
if (!bFlag)
|
|
{
|
|
GlobalFree(ppi2);
|
|
return FALSE;
|
|
}
|
|
|
|
/* If given buffer too small, set required size and fail... */
|
|
if ((DWORD)lstrlen(ppi2->pPrinterName) >= *pdwBufferSize)
|
|
{
|
|
*pdwBufferSize = (DWORD)lstrlen(ppi2->pPrinterName) + 1;
|
|
GlobalFree(ppi2);
|
|
return FALSE;
|
|
}
|
|
|
|
/* Copy printer name into passed-in buffer... */
|
|
lstrcpy(pPrinterName, ppi2->pPrinterName);
|
|
|
|
/* Set buffer size parameter to min required buffer size... */
|
|
*pdwBufferSize = (DWORD)lstrlen(ppi2->pPrinterName) + 1;
|
|
}
|
|
|
|
/* If Windows NT, use the GetDefaultPrinter API for Windows 2000,
|
|
or GetProfileString for version 4.0 and earlier... */
|
|
else if (osv.dwPlatformId == VER_PLATFORM_WIN32_NT)
|
|
{
|
|
#if(WINVER >= 0x0500)
|
|
if (osv.dwMajorVersion >= 5) /* Windows 2000 or later */
|
|
{
|
|
bFlag = GetDefaultPrinter(pPrinterName, pdwBufferSize);
|
|
if (!bFlag)
|
|
return FALSE;
|
|
}
|
|
|
|
else /* NT4.0 or earlier */
|
|
#endif
|
|
{
|
|
/* Retrieve the default string from Win.ini (the registry).
|
|
String will be in form "printername,drivername,portname". */
|
|
if (GetProfileString("windows", "device", ",,,", cBuffer, MAXBUFFERSIZE) <= 0)
|
|
return FALSE;
|
|
|
|
/* Printer name precedes first "," character... */
|
|
ptr = cBuffer;
|
|
while( *ptr )
|
|
{
|
|
if( *ptr == ',' )
|
|
{
|
|
*ptr = '\0';
|
|
break;
|
|
}
|
|
++ptr;
|
|
}
|
|
|
|
/* If given buffer too small, set required size and fail... */
|
|
if ((DWORD)lstrlen(cBuffer) >= *pdwBufferSize)
|
|
{
|
|
*pdwBufferSize = (DWORD)lstrlen(cBuffer) + 1;
|
|
return FALSE;
|
|
}
|
|
|
|
/* Copy printer name into passed-in buffer... */
|
|
lstrcpy(pPrinterName, cBuffer);
|
|
|
|
/* Set buffer size parameter to min required buffer size... */
|
|
*pdwBufferSize = (DWORD)lstrlen(cBuffer) + 1;
|
|
}
|
|
}
|
|
|
|
/* Cleanup... */
|
|
if (ppi2)
|
|
GlobalFree(ppi2);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
#endif
|