@@ -133,7 +133,7 @@ unsigned digits(const unsigned pMax, unsigned char* const coeff, int& exp)
133
133
return 0 ;
134
134
}
135
135
136
- void make (unsigned int * key,
136
+ void make (ULONG * key,
137
137
const unsigned pMax, const int bias, const unsigned decSize,
138
138
unsigned char * coeff, int sign, int exp)
139
139
{
@@ -165,7 +165,7 @@ void make(unsigned int* key,
165
165
}
166
166
}
167
167
168
- void grab (unsigned int * key,
168
+ void grab (ULONG * key,
169
169
const unsigned pMax, const int bias, const unsigned decSize,
170
170
unsigned char * bcd, int & sign, int & exp)
171
171
{
@@ -363,7 +363,7 @@ Decimal64 Decimal64::neg() const
363
363
return rc;
364
364
}
365
365
366
- void Decimal64::makeKey (unsigned int * key) const
366
+ void Decimal64::makeKey (ULONG * key) const
367
367
{
368
368
unsigned char coeff[DECDOUBLE_Pmax];
369
369
int sign = decDoubleGetCoefficient (&dec, coeff);
@@ -372,7 +372,7 @@ void Decimal64::makeKey(unsigned int* key) const
372
372
make (key, DECDOUBLE_Pmax, DECDOUBLE_Bias, sizeof (dec), coeff, sign, exp);
373
373
}
374
374
375
- void Decimal64::grabKey (unsigned int * key)
375
+ void Decimal64::grabKey (ULONG * key)
376
376
{
377
377
int exp, sign;
378
378
unsigned char bcd[DECDOUBLE_Pmax];
@@ -762,7 +762,7 @@ Decimal128 Decimal128::log10(DecimalStatus decSt) const
762
762
return rc;
763
763
}
764
764
765
- void Decimal128::makeKey (unsigned int * key) const
765
+ void Decimal128::makeKey (ULONG * key) const
766
766
{
767
767
unsigned char coeff[DECQUAD_Pmax];
768
768
int sign = decQuadGetCoefficient (&dec, coeff);
@@ -771,7 +771,7 @@ void Decimal128::makeKey(unsigned int* key) const
771
771
make (key, DECQUAD_Pmax, DECQUAD_Bias, sizeof (dec), coeff, sign, exp);
772
772
}
773
773
774
- void Decimal128::grabKey (unsigned int * key)
774
+ void Decimal128::grabKey (ULONG * key)
775
775
{
776
776
int exp, sign;
777
777
unsigned char bcd[DECQUAD_Pmax];
0 commit comments