Guardian Programming Reference Summary for C
Interprocess Messages
Guardian Programming Reference Summary for C—522630-001
14-6
-56 ALTER PRIORITY 
-57 PASSWORD  
-58 REMOTE PASSWORD 
typedef struct CIAlterPriority {
 short messageCode; /* always -56 */
 short userLogonID;
 short TACLExecPriority;
 short TACLInputFile [12];
 short TACLOutputFile [12];
 short processID [4]; /* ID of process to be */
 /* altered */
 short fileName [12]; /* file name of process */
 /* to be altered */
 short priority; /* the new priority */
 short phandle; /* process handle of */
 /* process to be altered */
} CIAlterPriority;
typedef struct CIPassword {
 short messageCode; /* always -57 */
 short userLogonID;
 short TACLExecPriority;
 short TACLInputFile [12];
 short TACLOutputFile [12];
} CIPassword;
typedef struct CIRemotePassword {
 short messageCode; /* always -58 */
 short userLogonID;
 short TACLExecPriority;
 short TACLInputFile [12];
 short TACLOutputFile [12];
 short systemPassword;
} CIRemotePassword;










