EventSearch_t

Contains information about an EVENT_SEARCH_PATH event.

Service:NetWare Platform

Structure

  #include <event.h>
  
  typedef struct
  {
     int    action;
     int    flags;
     int    isDOSFlag;
     int    number;
     int    reserved;
     char   path[1];
  } EventSearch_t;
  

Fields

action

Specifies whether the path is being added or deleted:

  • 0x00000001 = inserted at the end
  • 0x00000002 = inserted at the specified location
  • 0x00000003 = deleted
  • 0x00000004 = switched the path from DOS to NetWare
  • 0x00000005 = removed the DOS paths
  • 0x00000006 = changed the DOS default path
flags

Specifies whether the path is locked:

  • 0x00 = unlocked
  • 0x01 = locked
isDOSFlag

Specifies whether the path is a DOS path:

  • 0x00 = NetWare path
  • 0x01 = DOS path
  • 0x81 = Default DOS search path
number

Specifies the search number of the path. Contains a valid value only when the path is inserted at a specified location.

reserved

Reserved for internal use.

path

Points to the complete path.