Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Novlib 3.30 Online Reference - <b> objsecget()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ObjSecGet()
------------------------------------------------------------------------------
 Purpose:
 Get the bindery security level of an object.

 Syntax:
 iSecurityLevel = ObjSecGet( lpszObjectName,

 wObjectType )

 Parameters:
 lpszObjectName The object name.
 wObjectType    The object type.

 Returns:
 A numeric value (signed short int).

 Description:
 ObjSecGet() returns the read/write security level of the object
 specified by name lpszObjectName and type wObjectType. There are 5
 security levels for both read and write:

 WriteLevel           Read Level

 0     Anyone         0  Anyone
 16    Logged         1  Logged
 32    Object         2  Object
 48    Supervisor     3  Supervisor
 64    NetWare        4  NetWare
 For example, if ObjSecGet() returns the value 49, the object has a
 security level of Supervisor write, logged read, (48+1).
 Returns NOVERRINT if an error occurs.

 Example:
 // To return the object security level of user NICK:
 iSecLevel = ObjSecGet( "NICK", OT_USER )
 if ( NWErrorGet() = 0 )
    ? "User NICK has a bindery security level of ", iSecLevel
 endif

 Notes:
 For more information on object security, see the reference in
 Chapter 3, Bindery Functions.

See Also: ObjGetFlg() ObjTypGet() ObjIDGet() FSObjLst()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson