summaryrefslogtreecommitdiff
path: root/opl
diff options
context:
space:
mode:
authorSimon Howard2010-02-27 19:11:24 +0000
committerSimon Howard2010-02-27 19:11:24 +0000
commit92c9d5c388ab91ade416539438fb0b8da9cd50bb (patch)
tree94ecc5bae095b39088e160e4dbc71b0387bdc068 /opl
parent77ea97c6277cc7261e332deec5d48fbddd88821a (diff)
downloadchocolate-doom-92c9d5c388ab91ade416539438fb0b8da9cd50bb.tar.gz
chocolate-doom-92c9d5c388ab91ade416539438fb0b8da9cd50bb.tar.bz2
chocolate-doom-92c9d5c388ab91ade416539438fb0b8da9cd50bb.zip
Use wide-character versions of Win32 API functions. Clean up properly if
it was not possible to start the ioperm service. Subversion-branch: /branches/opl-branch Subversion-revision: 1875
Diffstat (limited to 'opl')
-rw-r--r--opl/ioperm_sys.c44
1 files changed, 26 insertions, 18 deletions
diff --git a/opl/ioperm_sys.c b/opl/ioperm_sys.c
index 4c06d97a..0e1ecfd5 100644
--- a/opl/ioperm_sys.c
+++ b/opl/ioperm_sys.c
@@ -35,7 +35,9 @@
#include <errno.h>
-#define IOPERM_FILE "\\\\.\\ioperm"
+#include "ioperm_sys.h"
+
+#define IOPERM_FILE L"\\\\.\\ioperm"
#define IOCTL_IOPERM \
CTL_CODE(FILE_DEVICE_UNKNOWN, 0xA00, METHOD_BUFFERED, FILE_ANY_ACCESS)
@@ -59,8 +61,8 @@ int IOperm_EnablePortRange(unsigned int from, unsigned int num, int turn_on)
DWORD BytesReturned;
BOOL r;
- h = CreateFile(IOPERM_FILE, GENERIC_READ, 0, NULL,
- OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
+ h = CreateFileW(IOPERM_FILE, GENERIC_READ, 0, NULL,
+ OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (h == INVALID_HANDLE_VALUE)
{
@@ -97,12 +99,12 @@ int IOperm_InstallDriver(void)
int error;
int result = 1;
- scm = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
+ scm = OpenSCManagerW(NULL, NULL, SC_MANAGER_ALL_ACCESS);
if (scm == NULL)
{
error = GetLastError();
- fprintf(stderr, "IOperm_InstallDriver: OpenSCManager failed (%i)\n",
+ fprintf(stderr, "IOperm_InstallDriver: OpenSCManager failed (%i).\n",
error);
return 0;
}
@@ -134,19 +136,19 @@ int IOperm_InstallDriver(void)
if (error != ERROR_SERVICE_EXISTS)
{
fprintf(stderr,
- "IOperm_InstallDriver: Failed to create service (%i)\n",
+ "IOperm_InstallDriver: Failed to create service (%i).\n",
error);
}
else
{
- svc = OpenService(scm, TEXT("ioperm"), SERVICE_ALL_ACCESS);
+ svc = OpenServiceW(scm, L"ioperm", SERVICE_ALL_ACCESS);
if (svc == NULL)
{
error = GetLastError();
fprintf(stderr,
- "IOperm_InstallDriver: Failed to open service (%i)\n",
+ "IOperm_InstallDriver: Failed to open service (%i).\n",
error);
}
}
@@ -162,31 +164,37 @@ int IOperm_InstallDriver(void)
service_was_created = 1;
}
- if (!StartService(svc, 0, NULL))
+ // Start the service. If the service already existed, it might have
+ // already been running as well.
+
+ if (!StartServiceW(svc, 0, NULL))
{
error = GetLastError();
if (error != ERROR_SERVICE_ALREADY_RUNNING)
{
- fprintf(stderr, "IOperm_InstallDriver: Failed to start service (%i)\n",
+ fprintf(stderr, "IOperm_InstallDriver: Failed to start service (%i).\n",
error);
+
result = 0;
}
else
{
- printf("IOperm_InstallDriver: ioperm driver already running\n");
+ printf("IOperm_InstallDriver: ioperm driver already running.\n");
}
}
else
{
- printf("IOperm_InstallDriver: ioperm driver installed\n");
+ printf("IOperm_InstallDriver: ioperm driver installed.\n");
service_was_started = 1;
}
+ // If we failed to start the driver running, we need to clean up
+ // before finishing.
+
if (result == 0)
{
- CloseServiceHandle(svc);
- CloseServiceHandle(scm);
+ IOperm_UninstallDriver();
}
return result;
@@ -215,7 +223,7 @@ int IOperm_UninstallDriver(void)
else
{
fprintf(stderr,
- "IOperm_UninstallDriver: Failed to stop service (%i)\n",
+ "IOperm_UninstallDriver: Failed to stop service (%i).\n",
error);
result = 0;
}
@@ -231,14 +239,14 @@ int IOperm_UninstallDriver(void)
error = GetLastError();
fprintf(stderr,
- "IOperm_UninstallDriver: DeleteService failed (%i)\n",
+ "IOperm_UninstallDriver: DeleteService failed (%i).\n",
error);
result = 0;
}
- else
+ else if (service_was_started)
{
- printf("IOperm_InstallDriver: ioperm driver uninstalled.\n");
+ printf("IOperm_UnInstallDriver: ioperm driver uninstalled.\n");
}
}