From 686a9f90d49423e6024b510e7c2eead92d3105d4 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Mon, 19 May 2003 23:19:21 +0000 Subject: [PATCH] Basic implementation of EnumPortsA: dump all the serial and printer port names into a structure. --- dlls/winspool/Makefile.in | 2 +- dlls/winspool/info.c | 114 +++++++++++++++++++++++++++++++++++++- 2 files changed, 112 insertions(+), 4 deletions(-) diff --git a/dlls/winspool/Makefile.in b/dlls/winspool/Makefile.in index 4be9c92b58f..fcbf913c00e 100644 --- a/dlls/winspool/Makefile.in +++ b/dlls/winspool/Makefile.in @@ -4,7 +4,7 @@ TOPOBJDIR = ../.. SRCDIR = @srcdir@ VPATH = @srcdir@ MODULE = winspool.drv -IMPORTS = advapi32 kernel32 ntdll +IMPORTS = user32 advapi32 kernel32 ntdll LDDLLFLAGS = @LDDLLFLAGS@ SYMBOLFILE = $(MODULE).tmp.o diff --git a/dlls/winspool/info.c b/dlls/winspool/info.c index 6cea7ceb6f7..7a53610dd81 100644 --- a/dlls/winspool/info.c +++ b/dlls/winspool/info.c @@ -41,6 +41,7 @@ #define NONAMELESSSTRUCT #include "wine/library.h" #include "winbase.h" +#include "winuser.h" #include "winerror.h" #include "winreg.h" #include "wingdi.h" @@ -2872,15 +2873,122 @@ BOOL WINAPI EnumPrinterDriversA(LPSTR pName, LPSTR pEnvironment, DWORD Level, return ret; } +static CHAR PortMonitor[] = "Wine Port Monitor"; +static CHAR PortDescription[] = "Wine Port"; /****************************************************************************** * EnumPortsA (WINSPOOL.@) */ -BOOL WINAPI EnumPortsA(LPSTR name,DWORD level,LPBYTE ports,DWORD bufsize, +BOOL WINAPI EnumPortsA(LPSTR name,DWORD level,LPBYTE buffer,DWORD bufsize, LPDWORD bufneeded,LPDWORD bufreturned) { - FIXME("(%s,%ld,%p,%ld,%p,%p), stub!\n",name,level,ports,bufsize,bufneeded,bufreturned); - return FALSE; + CHAR portname[10]; + DWORD info_size, ofs, i, printer_count, serial_count, count, n, r; + const LPCSTR szSerialPortKey = "Software\\Wine\\Wine\\Config\\serialports"; + const LPCSTR szPrinterPortKey = "Software\\Wine\\Wine\\Config\\spooler"; + HKEY hkey_serial, hkey_printer; + + TRACE("(%s,%ld,%p,%ld,%p,%p)\n", + name,level,buffer,bufsize,bufneeded,bufreturned); + + switch( level ) + { + case 1: + info_size = sizeof (PORT_INFO_1A); + break; + case 2: + info_size = sizeof (PORT_INFO_2A); + break; + default: + SetLastError(ERROR_INVALID_LEVEL); + return FALSE; + } + + /* see how many exist */ + + hkey_serial = 0; + hkey_printer = 0; + serial_count = 0; + printer_count = 0; + r = RegOpenKeyA( HKEY_LOCAL_MACHINE, szSerialPortKey, &hkey_serial); + if (r == ERROR_SUCCESS) + { + RegQueryInfoKeyA ( hkey_serial, NULL, NULL, NULL, NULL, NULL, NULL, + &serial_count, NULL, NULL, NULL, NULL); + } + + r = RegOpenKeyA( HKEY_LOCAL_MACHINE, szPrinterPortKey, &hkey_printer); + if ( r == ERROR_SUCCESS ) + { + RegQueryInfoKeyA( hkey_printer, NULL, NULL, NULL, NULL, NULL, NULL, + &printer_count, NULL, NULL, NULL, NULL); + } + count = serial_count + printer_count; + + /* then fill in the structure info structure once + we know the offset to the first string */ + + memset( buffer, 0, bufsize ); + n = 0; + ofs = info_size*count; + for ( i=0; ipName = (LPSTR) &buffer[ofs]; + } + else if ( level == 2) + { + PORT_INFO_2A *info = (PORT_INFO_2A*) &buffer[info_size*n]; + info->pPortName = (LPSTR) &buffer[ofs]; + /* FIXME: fill in more stuff here */ + info->pMonitorName = PortMonitor; + info->pDescription = PortDescription; + info->fPortType = PORT_TYPE_WRITE|PORT_TYPE_READ; + } + + /* add the name of the port if we can fit it */ + if ( ofs < bufsize ) + lstrcpynA(&buffer[ofs],portname,bufsize - ofs); + } + + ofs += lstrlenA(portname)+1; + n++; + } + + RegCloseKey(hkey_serial); + RegCloseKey(hkey_printer); + + if(bufneeded) + *bufneeded = ofs; + + if(bufreturned) + *bufreturned = count; + + return TRUE; } /******************************************************************************