Changeset 21226 in vbox for trunk/include/VBox/pdmifs.h
- Timestamp:
- Jul 5, 2009 5:37:04 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49546
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmifs.h
r21217 r21226 1706 1706 * query them and may do whatever it wants with them. 1707 1707 * 1708 * @returns VBox status code 1709 * @param pszUsername User name, may be empty (UTF-8) 1710 * @param pszPassword Password, may be empty (UTF-8) 1711 * @param pszDomain Domain name, may be empty (UTF-8) 1712 * @param fFlags Bitflags1708 * @returns VBox status code. 1709 * @param pszUsername User name, may be empty (UTF-8). 1710 * @param pszPassword Password, may be empty (UTF-8). 1711 * @param pszDomain Domain name, may be empty (UTF-8). 1712 * @param fFlags VMMDEV_SETCREDENTIALS_*. 1713 1713 */ 1714 1714 DECLR3CALLBACKMEMBER(int, pfnSetCredentials,(PPDMIVMMDEVPORT pInterface, const char *pszUsername, … … 1768 1768 } PDMIVMMDEVPORT; 1769 1769 1770 /** @name Flags for PDMIVMMDEVPORT::pfnSetCredentials. 1771 * @{ */ 1772 /** The guest should perform a logon with the credentials. */ 1773 #define VMMDEV_SETCREDENTIALS_GUESTLOGON RT_BIT(0) 1774 /** The guest should prevent local logons. */ 1775 #define VMMDEV_SETCREDENTIALS_NOLOCALLOGON RT_BIT(1) 1776 /** The guest should verify the credentials. */ 1777 #define VMMDEV_SETCREDENTIALS_JUDGE RT_BIT(15) 1778 /** @} */ 1779 1780 1770 1781 /** Forward declaration of the video accelerator command memory. */ 1771 struct _VBVAMEMORY;1782 struct VBVAMEMORY; 1772 1783 /** Forward declaration of the guest information structure. */ 1773 1784 struct VBoxGuestInfo; … … 1775 1786 struct VBoxGuestStatistics; 1776 1787 /** Pointer to video accelerator command memory. */ 1777 typedef struct _VBVAMEMORY *PVBVAMEMORY;1788 typedef struct VBVAMEMORY *PVBVAMEMORY; 1778 1789 1779 1790 /** Pointer to a VMMDev connector interface. */
Note:
See TracChangeset
for help on using the changeset viewer.