*** empty log message ***

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4235 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-10-28 04:48:40 +00:00
parent 678cd6de66
commit 2bd5bbc948
6 changed files with 14 additions and 7 deletions

View File

@@ -534,7 +534,6 @@ HTMLOBJS = \
..\html\$D\m_list.obj \
..\html\$D\m_pre.obj \
..\html\$D\m_tables.obj \
..\html\$D\search.obj \
..\html\$D\winpars.obj
HTMLLIBOBJS = \
@@ -554,7 +553,6 @@ HTMLLIBOBJS = \
m_list.obj \
m_pre.obj \
m_tables.obj \
search.obj \
winpars.obj
# Add $(NONESSENTIALOBJS) if wanting generic dialogs, PostScript etc.
@@ -719,7 +717,6 @@ $(HTMLLIBOBJS):
copy ..\html\$D\m_list.obj
copy ..\html\$D\m_pre.obj
copy ..\html\$D\m_tables.obj
copy ..\html\$D\search.obj
copy ..\html\$D\winpars.obj
$(OS2LIBOBJS1):

View File

@@ -102,10 +102,14 @@ bool wxGetHostName(
// Get user ID e.g. jacs
bool wxGetUserId(
wxChar* zBuf
, int nMaxSize
, int nType
)
{
return(U32ELOCL((unsigned char*)zBuf, (unsigned long *)&nMaxSize));
long lrc;
// UPM procs return 0 on success
lrc = U32ELOCU((unsigned char*)zBuf, (unsigned long *)&nType);
if (lrc == 0) return TRUE;
return FALSE;
}
bool wxGetUserName(