projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Updated version to 2.5.4
[wxWidgets.git]
/
src
/
os2
/
utils.cpp
diff --git
a/src/os2/utils.cpp
b/src/os2/utils.cpp
index df321ea4e3e61a1c0fdd58b890bf6c176c782477..f7798795906fe1a102a838ede6afff0fc769187c 100644
(file)
--- a/
src/os2/utils.cpp
+++ b/
src/os2/utils.cpp
@@
-45,7
+45,7
@@
#include <netbios.h>
#endif
#include <netbios.h>
#endif
-static const wxChar WX_SECTION[] = _T("wxWi
ndow
s");
+static const wxChar WX_SECTION[] = _T("wxWi
dget
s");
static const wxChar eHOSTNAME[] = _T("HostName");
static const wxChar eUSERID[] = _T("UserId");
static const wxChar eUSERNAME[] = _T("UserName");
static const wxChar eHOSTNAME[] = _T("HostName");
static const wxChar eUSERID[] = _T("UserId");
static const wxChar eUSERNAME[] = _T("UserName");
@@
-83,19
+83,19
@@
bool wxGetHostName(
if ((zSysname = wxGetenv(_T("SYSTEM_NAME"))) == NULL)
{
if ((zSysname = wxGetenv(_T("SYSTEM_NAME"))) == NULL)
{
-
ULONG n =
::PrfQueryProfileString( HINI_PROFILE
-
,(PSZ)WX_SECTION
-
,(PSZ)eHOSTNAME
-
,(PSZ)zDefaultHost
-
,(void*)zBuf
-
,(ULONG)nMaxSize - 1
-
);
+ ::PrfQueryProfileString( HINI_PROFILE
+ ,(PSZ)WX_SECTION
+ ,(PSZ)eHOSTNAME
+ ,(PSZ)zDefaultHost
+ ,(void*)zBuf
+ ,(ULONG)nMaxSize - 1
+ );
}
else
wxStrncpy(zBuf, zSysname, nMaxSize - 1);
zBuf[nMaxSize] = _T('\0');
#endif
}
else
wxStrncpy(zBuf, zSysname, nMaxSize - 1);
zBuf[nMaxSize] = _T('\0');
#endif
- return *zBuf ?
TRUE : FALSE
;
+ return *zBuf ?
true : false
;
}
// Get user ID e.g. jacs
}
// Get user ID e.g. jacs
@@
-108,9
+108,9
@@
bool wxGetUserId(
long lrc;
// UPM procs return 0 on success
lrc = U32ELOCU((unsigned char*)zBuf, (unsigned long *)&nType);
long lrc;
// UPM procs return 0 on success
lrc = U32ELOCU((unsigned char*)zBuf, (unsigned long *)&nType);
- if (lrc == 0) return
TRUE
;
+ if (lrc == 0) return
true
;
#endif
#endif
- return
FALSE
;
+ return
false
;
}
bool wxGetUserName(
}
bool wxGetUserName(
@@
-125,13
+125,14
@@
bool wxGetUserName(
#else
wxStrncpy(zBuf, _T("Unknown User"), nMaxSize);
#endif
#else
wxStrncpy(zBuf, _T("Unknown User"), nMaxSize);
#endif
- return
TRUE
;
+ return
true
;
}
int wxKill(
long lPid
, wxSignal eSig
, wxKillError* peError
}
int wxKill(
long lPid
, wxSignal eSig
, wxKillError* peError
+, int flags
)
{
return((int)::DosKillProcess(0, (PID)lPid));
)
{
return((int)::DosKillProcess(0, (PID)lPid));
@@
-200,11
+201,23
@@
bool wxShell(
bool wxShutdown(wxShutdownFlags wFlags)
{
// TODO
bool wxShutdown(wxShutdownFlags wFlags)
{
// TODO
- return FALSE;
+ return false;
+}
+
+wxPowerType wxGetPowerType()
+{
+ // TODO
+ return wxPOWER_UNKNOWN;
+}
+
+wxBatteryState wxGetBatteryState()
+{
+ // TODO
+ return wxBATTERY_UNKNOWN_STATE;
}
// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
}
// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
-
long
wxGetFreeMemory()
+
wxMemorySize
wxGetFreeMemory()
{
void* pMemptr = NULL;
ULONG lSize;
{
void* pMemptr = NULL;
ULONG lSize;
@@
-214,8
+227,8
@@
long wxGetFreeMemory()
lMemFlags = PAG_FREE;
rc = ::DosQueryMem(pMemptr, &lSize, &lMemFlags);
if (rc != 0)
lMemFlags = PAG_FREE;
rc = ::DosQueryMem(pMemptr, &lSize, &lMemFlags);
if (rc != 0)
-
return
-1L;
- return (
long
)lSize;
+
lSize =
-1L;
+ return (
wxMemorySize
)lSize;
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
@@
-227,14
+240,14
@@
bool wxGetEnv(const wxString& var, wxString *value)
// wxGetenv is defined as getenv()
wxChar *p = wxGetenv(var);
if ( !p )
// wxGetenv is defined as getenv()
wxChar *p = wxGetenv(var);
if ( !p )
- return
FALSE
;
+ return
false
;
if ( value )
{
*value = p;
}
if ( value )
{
*value = p;
}
- return
TRUE
;
+ return
true
;
}
bool wxSetEnv(const wxString& variable, const wxChar *value)
}
bool wxSetEnv(const wxString& variable, const wxChar *value)
@@
-256,17
+269,24
@@
bool wxSetEnv(const wxString& variable, const wxChar *value)
return putenv(buf) == 0;
#else // no way to set an env var
return putenv(buf) == 0;
#else // no way to set an env var
- return
FALSE
;
+ return
false
;
#endif
}
#endif
}
-void wx
Us
leep(
+void wx
MilliS
leep(
unsigned long ulMilliseconds
)
{
::DosSleep(ulMilliseconds);
}
unsigned long ulMilliseconds
)
{
::DosSleep(ulMilliseconds);
}
+void wxMicroSleep(
+ unsigned long ulMicroseconds
+)
+{
+ ::DosSleep(ulMicroseconds/1000);
+}
+
void wxSleep(
int nSecs
)
void wxSleep(
int nSecs
)
@@
-303,7
+323,7
@@
void wxError(
, const wxString& rTitle
)
{
, const wxString& rTitle
)
{
- wxBuffer = new wxChar[256];
+ wx
Char *wx
Buffer = new wxChar[256];
wxSprintf(wxBuffer, "%s\nContinue?", WXSTRINGCAST rMsg);
if (::WinMessageBox( HWND_DESKTOP
,NULL
wxSprintf(wxBuffer, "%s\nContinue?", WXSTRINGCAST rMsg);
if (::WinMessageBox( HWND_DESKTOP
,NULL
@@
-353,9
+373,9
@@
void wxAppTraits::TerminateGui(unsigned long ulHab)
wxToolkitInfo & wxConsoleAppTraits::GetToolkitInfo()
{
wxToolkitInfo & wxConsoleAppTraits::GetToolkitInfo()
{
- static wxToolkitInfo
vInfo;
- ULONG
ulSysInfo[QSV_MAX] = {0};
- APIRET
ulrc;
+ static wxToolkitInfo vInfo;
+ ULONG ulSysInfo[QSV_MAX] = {0};
+ APIRET ulrc;
vInfo.name = _T("wxBase");
ulrc = ::DosQuerySysInfo( 1L
vInfo.name = _T("wxBase");
ulrc = ::DosQuerySysInfo( 1L
@@
-409,7
+429,7
@@
wxChar* wxGetUserHome (
wxChar* zHome;
wxString sUser1(rUser);
wxChar* zHome;
wxString sUser1(rUser);
- wxBuffer = new wxChar[256];
+
char *
wxBuffer = new wxChar[256];
#ifndef __EMX__
if (sUser1 != _T(""))
{
#ifndef __EMX__
if (sUser1 != _T(""))
{