Commit c22716f5 authored by Robert Lunnon's avatar Robert Lunnon Committed by Alexandre Julliard

Rename queue_t to jobqueue_t to avoid collision with library symbol

queue_t.
parent c0fcf36e
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment