summaryrefslogtreecommitdiff
path: root/rsc/inc/rscpar.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-01-03 16:22:42 +0000
committerOliver Bolte <obo@openoffice.org>2005-01-03 16:22:42 +0000
commit9c9ec837c8f1df9bcf2ac252b71a0e8b4a85a406 (patch)
tree15e28818ce32ba6735d2e85d97440ce1f7fae97d /rsc/inc/rscpar.hxx
parent7cdc0209fa46b46e46a3c525f0af91e1c5b3d0e4 (diff)
INTEGRATION: CWS res32bit (1.3.150); FILE MERGED
2004/10/22 13:54:27 pl 1.3.150.1: #i34513# free rsc of 32 bit constraints
Diffstat (limited to 'rsc/inc/rscpar.hxx')
-rw-r--r--rsc/inc/rscpar.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/rsc/inc/rscpar.hxx b/rsc/inc/rscpar.hxx
index 8b25c8fbbdfa..b8a59fc06cf2 100644
--- a/rsc/inc/rscpar.hxx
+++ b/rsc/inc/rscpar.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rscpar.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: pl $ $Date: 2001-11-05 14:44:05 $
+ * last change: $Author: obo $ $Date: 2005-01-03 17:22:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,20 +77,20 @@ class RscExpression;
class RscFileInst
{
ERRTYPE aFirstError;// Erster Fehler
- USHORT nErrorLine; // Zeile des ersten Fehlers
- USHORT nErrorPos; // Position des ersten Fehlers
+ sal_uInt32 nErrorLine; // Zeile des ersten Fehlers
+ sal_uInt32 nErrorPos; // Position des ersten Fehlers
BOOL bIncLine; // Muss Zeilennummer incrementiert werden
- USHORT nLineNo; // Zeile in der Eingabedatei
+ sal_uInt32 nLineNo; // Zeile in der Eingabedatei
ULONG lFileIndex; // Index auf Eingabedatei
ULONG lSrcIndex; // Index auf Basisdatei
FILE * fInputFile; // Eingabedatei
char * pInput; // Lesepuffer
- USHORT nInputBufLen; // Laenge des Lesepuffers
- USHORT nInputPos; // Position im Lesepuffer
- USHORT nInputEndPos;// Ende im Lesepuffer
+ sal_uInt32 nInputBufLen; // Laenge des Lesepuffers
+ sal_uInt32 nInputPos; // Position im Lesepuffer
+ sal_uInt32 nInputEndPos;// Ende im Lesepuffer
char * pLine; // Zeile
- USHORT nLineBufLen;//Lange des Zeilenpuffres
- USHORT nScanPos; // Position in der Zeile
+ sal_uInt32 nLineBufLen;//Lange des Zeilenpuffres
+ sal_uInt32 nScanPos; // Position in der Zeile
int cLastChar;
BOOL bEof;
@@ -106,9 +106,9 @@ public:
void SetFileIndex( ULONG lFIndex ) { lFileIndex = lFIndex; }
ULONG GetFileIndex() { return( lFileIndex ); }
ULONG GetSrcIndex() { return( lSrcIndex ); }
- void SetLineNo( USHORT nLine ) { nLineNo = nLine; }
- USHORT GetLineNo() { return( nLineNo ); }
- USHORT GetScanPos() { return( nScanPos ); }
+ void SetLineNo( sal_uInt32 nLine ) { nLineNo = nLine; }
+ sal_uInt32 GetLineNo() { return( nLineNo ); }
+ sal_uInt32 GetScanPos() { return( nScanPos ); }
char * GetLine() { return( pLine ); }
int GetChar();
int GetFastChar() { return pLine[ nScanPos ] ?
@@ -118,8 +118,8 @@ public:
// Fehlerbehandlung
void SetError( ERRTYPE aError );
ERRTYPE GetError() { return aFirstError; }
- USHORT GetErrorLine() { return nErrorLine; }
- USHORT GetErrorPos() { return nErrorPos; }
+ sal_uInt32 GetErrorLine() { return nErrorLine; }
+ sal_uInt32 GetErrorPos() { return nErrorPos; }
};
/******************* F u n c t i o n *************************************/