From c22716f5ec90eef8becc1f4e95e51348799aa02e Mon Sep 17 00:00:00 2001 From: Robert Lunnon Date: Mon, 24 Oct 2005 15:03:02 +0000 Subject: [PATCH] Rename queue_t to jobqueue_t to avoid collision with library symbol queue_t. --- dlls/winspool/info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/winspool/info.c b/dlls/winspool/info.c index 53f52d650d9..e7d822d77cd 100644 --- a/dlls/winspool/info.c +++ b/dlls/winspool/info.c @@ -81,11 +81,11 @@ typedef struct { typedef struct { struct list jobs; LONG ref; -} queue_t; +} jobqueue_t; typedef struct { LPWSTR name; - queue_t *queue; + jobqueue_t *queue; started_doc_t *doc; } opened_printer_t; @@ -613,7 +613,7 @@ void WINSPOOL_LoadSystemPrinters(void) static HANDLE get_opened_printer_entry( LPCWSTR name ) { UINT_PTR handle = nb_printer_handles, i; - queue_t *queue = NULL; + jobqueue_t *queue = NULL; opened_printer_t *printer; EnterCriticalSection(&printer_handles_cs);