Changeset 99739 in vbox for trunk/src/VBox/HostServices/auth
- Timestamp:
- May 11, 2023 1:01:08 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/winlogon/winlogon.cpp
r98103 r99739 108 108 109 109 /* Prototype it to make sure we've got the right prototype. */ 110 extern "C"111 110 #if defined(_MSC_VER) 112 __declspec(dllexport) 111 extern "C" __declspec(dllexport) FNAUTHENTRY3 AuthEntry; 112 #else 113 extern "C" FNAUTHENTRY3 AuthEntry; 113 114 #endif 114 FNAUTHENTRY3 AuthEntry;115 115 116 116 /** 117 117 * @callback_method_impl{FNAUTHENTRY3} 118 118 */ 119 extern "C" 120 Auth Result AUTHCALL AuthEntry(const char *pszCaller,121 122 123 124 125 126 127 119 extern "C" DECLEXPORT(AuthResult) AUTHCALL 120 AuthEntry(const char *pszCaller, 121 PAUTHUUID pUuid, 122 AuthGuestJudgement guestJudgement, 123 const char *pszUser, 124 const char *pszPassword, 125 const char *pszDomain, 126 int fLogon, 127 unsigned clientId) 128 128 { 129 129 RT_NOREF4(pszCaller, pUuid, guestJudgement, clientId);
Note:
See TracChangeset
for help on using the changeset viewer.