Changeset 44173 in vbox for trunk/include/VBox
- Timestamp:
- Dec 19, 2012 6:12:31 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82883
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r43394 r44173 746 746 /** 747 747 * Initializes the support library. 748 * Each successful call to SUPR3Init() must be countered by a 748 * 749 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a 749 750 * call to SUPR3Term(false). 750 751 * … … 753 754 */ 754 755 SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession); 756 757 758 /** 759 * Initializes the support library, extended version. 760 * 761 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a 762 * call to SUPR3Term(false). 763 * 764 * @returns VBox status code. 765 * @param fUnrestricted The desired access. 766 * @param ppSession Where to store the session handle. Defaults to NULL. 767 */ 768 SUPR3DECL(int) SUPR3InitEx(bool fUnrestricted, PSUPDRVSESSION *ppSession); 755 769 756 770 /**
Note:
See TracChangeset
for help on using the changeset viewer.