| OLD | NEW |
| (Empty) |
| 1 // Copyright 2004-2009 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 // ======================================================================== | |
| 15 // Enumeration of the user accounts on the PC. | |
| 16 | |
| 17 #ifndef OMAHA_COMMON_ACCOUNTS_H__ | |
| 18 #define OMAHA_COMMON_ACCOUNTS_H__ | |
| 19 | |
| 20 #include <windows.h> | |
| 21 #include <atlcoll.h> | |
| 22 #include <atlstr.h> | |
| 23 | |
| 24 namespace omaha { | |
| 25 | |
| 26 namespace accounts { | |
| 27 | |
| 28 // Populates sid_array with string SIDs for all users, that have profiles | |
| 29 // on PC. Includes only user SIDs, no groups, computers or aliases. | |
| 30 HRESULT GetAllUserSids(CSimpleArray<CString>* sid_array); | |
| 31 | |
| 32 // Looks up account info for given SID. | |
| 33 // sid - SID to look up account info for. | |
| 34 // On success populates: | |
| 35 // name - name on the account | |
| 36 // domain - domain name for account | |
| 37 // user_type - the type of the passed SID, possible values: | |
| 38 // SidTypeUser | |
| 39 // SidTypeGroup | |
| 40 // SidTypeDomain | |
| 41 // SidTypeAlias | |
| 42 // SidTypeWellKnownGroup | |
| 43 // SidTypeDeletedAccount | |
| 44 // SidTypeInvalid | |
| 45 // SidTypeUnknown | |
| 46 // SidTypeComputer | |
| 47 HRESULT GetUserInfo(const wchar_t* sid, | |
| 48 CString* name, | |
| 49 CString* domain, | |
| 50 SID_NAME_USE* user_type); | |
| 51 | |
| 52 } // namespace accounts | |
| 53 | |
| 54 } // namespace omaha | |
| 55 | |
| 56 #endif // OMAHA_COMMON_ACCOUNTS_H__ | |
| OLD | NEW |