Changeset 62858 in vbox
- Timestamp:
- Aug 2, 2016 12:27:24 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109454
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxAuth.h
r62784 r62858 83 83 * @param pUuid Pointer to the UUID of the accessed virtual machine. Can be NULL. 84 84 * @param guestJudgement Result of the guest authentication. 85 * @param szUserUser name passed in by the client (UTF8).86 * @param szPasswordPassword passed in by the client (UTF8).87 * @param szDomainDomain passed in by the client (UTF8).85 * @param pszUser User name passed in by the client (UTF8). 86 * @param pszPassword Password passed in by the client (UTF8). 87 * @param pszDomain Domain passed in by the client (UTF8). 88 88 * 89 89 * Return code: … … 99 99 typedef AuthResult AUTHCALL FNAUTHENTRY(PAUTHUUID pUuid, 100 100 AuthGuestJudgement guestJudgement, 101 const char * szUser,102 const char * szPassword,103 const char * szDomain);101 const char *pszUser, 102 const char *pszPassword, 103 const char *pszDomain); 104 104 /** Pointer to a FNAUTHENTRY function. */ 105 105 typedef FNAUTHENTRY *PFNAUTHENTRY; … … 116 116 * @param pUuid Pointer to the UUID of the accessed virtual machine. Can be NULL. 117 117 * @param guestJudgement Result of the guest authentication. 118 * @param szUserUser name passed in by the client (UTF8).119 * @param szPasswordPassword passed in by the client (UTF8).120 * @param szDomainDomain passed in by the client (UTF8).118 * @param pszUser User name passed in by the client (UTF8). 119 * @param pszPassword Password passed in by the client (UTF8). 120 * @param pszDomain Domain passed in by the client (UTF8). 121 121 * @param fLogon Boolean flag. Indicates whether the entry point is 122 122 * called for a client logon or the client disconnect. … … 135 135 typedef AuthResult AUTHCALL FNAUTHENTRY2(PAUTHUUID pUuid, 136 136 AuthGuestJudgement guestJudgement, 137 const char * szUser,138 const char * szPassword,139 const char * szDomain,137 const char *pszUser, 138 const char *pszPassword, 139 const char *pszDomain, 140 140 int fLogon, 141 141 unsigned clientId); … … 152 152 * Authentication library entry point version 3. 153 153 * 154 * @param szCallerThe name of the component which calls the library (UTF8).154 * @param pszCaller The name of the component which calls the library (UTF8). 155 155 * @param pUuid Pointer to the UUID of the accessed virtual machine. Can be NULL. 156 156 * @param guestJudgement Result of the guest authentication. 157 * @param szUserUser name passed in by the client (UTF8).158 * @param szPasswordPassword passed in by the client (UTF8).159 * @param szDomainDomain passed in by the client (UTF8).157 * @param pszUser User name passed in by the client (UTF8). 158 * @param pszPassword Password passed in by the client (UTF8). 159 * @param pszDomain Domain passed in by the client (UTF8). 160 160 * @param fLogon Boolean flag. Indicates whether the entry point is 161 161 * called for a client logon or the client disconnect. … … 174 174 * valid and the return code is ignored. 175 175 */ 176 typedef AuthResult AUTHCALL FNAUTHENTRY3(const char * szCaller,176 typedef AuthResult AUTHCALL FNAUTHENTRY3(const char *pszCaller, 177 177 PAUTHUUID pUuid, 178 178 AuthGuestJudgement guestJudgement, 179 const char * szUser,180 const char * szPassword,181 const char * szDomain,179 const char *pszUser, 180 const char *pszPassword, 181 const char *pszDomain, 182 182 int fLogon, 183 183 unsigned clientId);
Note:
See TracChangeset
for help on using the changeset viewer.