rename IsDeviceEnabled to IsDeviceStarted
authorThomas Bluemel <thomas@reactsoft.com>
Sat, 17 Dec 2005 21:41:15 +0000 (21:41 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Sat, 17 Dec 2005 21:41:15 +0000 (21:41 +0000)
svn path=/trunk/; revision=20233

reactos/lib/devmgr/advprop.c
reactos/lib/devmgr/misc.c
reactos/lib/devmgr/precomp.h

index ee46873..780bfa6 100644 (file)
@@ -56,7 +56,7 @@ typedef struct _DEVADVPROP_INFO
 
     BOOL FreeDevPropSheets : 1;
     BOOL CanDisable : 1;
-    BOOL DeviceEnabled : 1;
+    BOOL DeviceStarted : 1;
     BOOL DeviceUsageChanged : 1;
     BOOL CloseDevInst : 1;
     BOOL IsAdmin : 1;
@@ -106,7 +106,7 @@ InitDevUsageActions(IN HWND hwndDlg,
                 switch (Actions[i])
                 {
                     case IDS_ENABLEDEVICE:
-                        if (dap->DeviceEnabled)
+                        if (dap->DeviceStarted)
                         {
                             SendMessage(hComboBox,
                                         CB_SETCURSEL,
@@ -116,7 +116,7 @@ InitDevUsageActions(IN HWND hwndDlg,
                         break;
 
                     case IDS_DISABLEDEVICE:
-                        if (!dap->DeviceEnabled)
+                        if (!dap->DeviceStarted)
                         {
                             SendMessage(hComboBox,
                                         CB_SETCURSEL,
@@ -176,7 +176,7 @@ ApplyGeneralSettings(IN HWND hwndDlg,
         switch (SelectedUsageAction)
         {
             case IDS_ENABLEDEVICE:
-                if (!dap->DeviceEnabled)
+                if (!dap->DeviceStarted)
                 {
                     Ret = EnableDevice(dap->DeviceInfoSet,
                                        &dap->DeviceInfoData,
@@ -187,7 +187,7 @@ ApplyGeneralSettings(IN HWND hwndDlg,
                 break;
 
             case IDS_DISABLEDEVICE:
-                if (dap->DeviceEnabled)
+                if (dap->DeviceStarted)
                 {
                     Ret = EnableDevice(dap->DeviceInfoSet,
                                        &dap->DeviceInfoData,
@@ -606,7 +606,7 @@ GetParentNode:
                            IDC_DEVUSAGE);
 
     dap->CanDisable = FALSE;
-    dap->DeviceEnabled = FALSE;
+    dap->DeviceStarted = FALSE;
 
     if (CanDisableDevice(DeviceInfoData->DevInst,
                          dap->hMachine,
@@ -615,11 +615,11 @@ GetParentNode:
         dap->CanDisable = bFlag;
     }
 
-    if (IsDeviceEnabled(DeviceInfoData->DevInst,
+    if (IsDeviceStarted(DeviceInfoData->DevInst,
                         dap->hMachine,
                         &bFlag))
     {
-        dap->DeviceEnabled = bFlag;
+        dap->DeviceStarted = bFlag;
     }
 
     /* enable/disable the device usage controls */
index 808fca3..d4bb7ef 100644 (file)
@@ -508,9 +508,9 @@ CanDisableDevice(IN DEVINST DevInst,
 
 
 BOOL
-IsDeviceEnabled(IN DEVINST DevInst,
+IsDeviceStarted(IN DEVINST DevInst,
                 IN HMACHINE hMachine,
-                OUT BOOL *IsEnabled)
+                OUT BOOL *IsStarted)
 {
     CONFIGRET cr;
     ULONG Status, ProblemNumber;
@@ -523,7 +523,7 @@ IsDeviceEnabled(IN DEVINST DevInst,
                                   hMachine);
     if (cr == CR_SUCCESS)
     {
-        *IsEnabled = ((Status & DN_STARTED) != 0);
+        *IsStarted = ((Status & DN_STARTED) != 0);
         Ret = TRUE;
     }
 
index d62aa24..146badd 100644 (file)
@@ -267,9 +267,9 @@ CanDisableDevice(IN DEVINST DevInst,
                  OUT BOOL *CanDisable);
 
 BOOL
-IsDeviceEnabled(IN DEVINST DevInst,
+IsDeviceStarted(IN DEVINST DevInst,
                 IN HMACHINE hMachine,
-                OUT BOOL *IsEnabled);
+                OUT BOOL *IsStarted);
 
 BOOL
 EnableDevice(IN HDEVINFO DeviceInfoSet,