uint -> size_t change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-08-18 20:15:51 +00:00
parent 0cf2cb360f
commit 3cda63537e
7 changed files with 21 additions and 21 deletions

View File

@@ -83,9 +83,9 @@ public:
// number of standard keys
static const size_t nStdKeys;
// get the name of a standard key
static const char *GetStdKeyName(uint key);
static const char *GetStdKeyName(size_t key);
// get the short name of a standard key
static const char *GetStdKeyShortName(uint key);
static const char *GetStdKeyShortName(size_t key);
// get StdKey from root HKEY
static StdKey GetStdKeyFromHkey(HKEY hkey);
@@ -123,10 +123,10 @@ public:
// get the info about key (any number of these pointers may be NULL)
#ifdef __GNUWIN32__
bool GetKeyInfo(uint *pnSubKeys, // number of subkeys
uint *pnMaxKeyLen, // max len of subkey name
uint *pnValues, // number of values
uint *pnMaxValueLen) const;
bool GetKeyInfo(size_t *pnSubKeys, // number of subkeys
size_t *pnMaxKeyLen, // max len of subkey name
size_t *pnValues, // number of values
size_t *pnMaxValueLen) const;
#else
bool GetKeyInfo(ulong *pnSubKeys, // number of subkeys
ulong *pnMaxKeyLen, // max len of subkey name