Changeset 40940 in vbox
- Timestamp:
- Apr 16, 2012 1:19:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredentialProvider.cpp
r40939 r40940 22 22 #include <initguid.h> 23 23 24 #ifdef VBOX_WITH_SENS 25 # include <eventsys.h> 26 # include <sens.h> 27 # include <Sensevts.h> 28 #endif 29 24 30 #include <iprt/buildconfig.h> 25 31 #include <iprt/initterm.h> … … 31 37 #include "VBoxCredentialProvider.h" 32 38 #include "VBoxCredProvFactory.h" 33 34 #include <eventsys.h>35 #include <sens.h>36 #include <Sensevts.h>37 38 #include <stdio.h>39 39 40 40 /******************************************************************************* … … 208 208 209 209 IEventSubscription *pIEventSubscription; 210 for (int i = 0; i < RT_ELEMENTS(g_aSENSEvents); i++) 210 int i; 211 for (i = 0; i < RT_ELEMENTS(g_aSENSEvents); i++) 211 212 { 212 213 VBoxCredProvVerbose(0, "VBoxCredProv: Registering \"%s\" (%s) ...\n",
Note:
See TracChangeset
for help on using the changeset viewer.