summaryrefslogtreecommitdiff
path: root/rsc/inc/rsckey.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-01-03 16:22:26 +0000
committerOliver Bolte <obo@openoffice.org>2005-01-03 16:22:26 +0000
commit7cdc0209fa46b46e46a3c525f0af91e1c5b3d0e4 (patch)
tree765b753930bcfd84e8f4a4b79953a5f9d3c81004 /rsc/inc/rsckey.hxx
parent84fb95845a6b98f1ec3151e71a37aae35da31cfa (diff)
INTEGRATION: CWS res32bit (1.2.152); FILE MERGED
2004/10/22 13:54:27 pl 1.2.152.1: #i34513# free rsc of 32 bit constraints
Diffstat (limited to 'rsc/inc/rsckey.hxx')
-rw-r--r--rsc/inc/rsckey.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/rsc/inc/rsckey.hxx b/rsc/inc/rsckey.hxx
index 517b0bb0a658..babbd1d119aa 100644
--- a/rsc/inc/rsckey.hxx
+++ b/rsc/inc/rsckey.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rsckey.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: pl $ $Date: 2001-10-10 11:51:13 $
+ * last change: $Author: obo $ $Date: 2005-01-03 17:22:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -69,28 +69,28 @@ class RscTop;
#endif
typedef struct {
- HASHID nName;
- USHORT nTyp;
+ Atom nName;
+ sal_uInt32 nTyp;
long yylval;
} KEY_STRUCT;
class RscNameTable {
BOOL bSort; //soll bei jedem einfuegen sortiert werden?
- USHORT nEntries; //Anzahl der Eintr„ge
+ sal_uInt32 nEntries; //Anzahl der Eintr�ge
KEY_STRUCT * pTable;
public:
RscNameTable();
~RscNameTable();
void SetSort( BOOL bSorted = TRUE );
- HASHID Put( HASHID nName, USHORT nTyp, long nValue );
- HASHID Put( HASHID nName, USHORT nTyp );
- HASHID Put( const char * pName, USHORT nTyp, long nValue );
- HASHID Put( const char * pName, USHORT nTyp );
- HASHID Put( HASHID nName, USHORT nTyp, RscTop * pClass );
- HASHID Put( const char * pName, USHORT nTyp, RscTop * pClass );
+ Atom Put( Atom nName, sal_uInt32 nTyp, long nValue );
+ Atom Put( Atom nName, sal_uInt32 nTyp );
+ Atom Put( const char * pName, sal_uInt32 nTyp, long nValue );
+ Atom Put( const char * pName, sal_uInt32 nTyp );
+ Atom Put( Atom nName, sal_uInt32 nTyp, RscTop * pClass );
+ Atom Put( const char * pName, sal_uInt32 nTyp, RscTop * pClass );
// TRUE, wurde gefunden
- BOOL Get( HASHID nName, KEY_STRUCT * pEle );
+ BOOL Get( Atom nName, KEY_STRUCT * pEle );
};