From 4aefb33b9fa4b93fea7035c505e480949bfb843b Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 11 Jan 2010 12:33:22 +0100 Subject: testprogs: add more error codes to spoolss test. Guenther --- testprogs/win32/spoolss/error.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'testprogs/win32/spoolss') diff --git a/testprogs/win32/spoolss/error.c b/testprogs/win32/spoolss/error.c index e523c15864..ba15c1e62d 100644 --- a/testprogs/win32/spoolss/error.c +++ b/testprogs/win32/spoolss/error.c @@ -25,6 +25,8 @@ const char *errstr(DWORD error) static char tmp[20]; switch (error) { + case ERROR_FILE_NOT_FOUND: + return "ERROR_FILE_NOT_FOUND"; case ERROR_ACCESS_DENIED: return "ERROR_ACCESS_DENIED"; case ERROR_INVALID_PARAMETER: @@ -105,6 +107,8 @@ const char *errstr(DWORD error) case ERROR_PRINT_JOB_RESTART_REQUIRED: return "ERROR_PRINT_JOB_RESTART_REQUIRED"; #endif + case ERROR_CANCELLED: + return "ERROR_CANCELLED"; default: break; } -- cgit