of_setuserthreshold


pfcwnsrv.pbl   >   pfc_n_cst_winsrv_statusbar   >   of_setuserthreshold   

Full name pfc_n_cst_winsrv_statusbar.of_setuserthreshold
Access public
Extend of integer
Return value integer
Prototype public function integer of_setuserthreshold(long)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setuserthreshold (long al_threshold);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_SetUserThreshold
//
//	Access:  Public
//
//	Arguments:
//	al_threshold	The new Threshold.
//	
//	Returns:  Integer
//	1 if it succeeds and -1 if an error occurs.
//
//	Description:
//	Sets a new User Memory Threshold value.
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	5.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1999 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

// Check arguments.
If IsNull(al_threshold) or al_threshold < 0 Then
	Return -1
End If

il_userthreshold = al_threshold
Return 1
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions

     
Full name
No Data

     
Name Scope
No Data