1 out of 3 rated this helpful - Rate this topic

GetDefaultPrinter function

Applies to: desktop apps only

The GetDefaultPrinter function retrieves the printer name of the default printer for the current user on the local computer.

Syntax

BOOL GetDefaultPrinter(
  __in     LPTSTR pszBuffer,
  __inout  LPDWORD pcchBuffer
);

Parameters

pszBuffer [in]

A pointer to a buffer that receives a null-terminated character string containing the default printer name. If this parameter is NULL, the function fails and the variable pointed to by pcchBuffer returns the required buffer size, in characters.

pcchBuffer [in, out]

On input, specifies the size, in characters, of the pszBuffer buffer. On output, receives the size, in characters, of the printer name string, including the terminating null character.

Return value

If the function succeeds, the return value is a nonzero value and the variable pointed to by pcchBuffer contains the number of characters copied to the pszBuffer buffer, including the terminating null character.

If the function fails, the return value is zero.

ValueMeaning
ERROR_INSUFFICIENT_BUFFERThe pszBuffer buffer is too small. The variable pointed to by pcchBuffer contains the required buffer size, in characters.
ERROR_FILE_NOT_FOUNDThere is no default printer.

 

Remarks

Note  This is a blocking or synchronous function and might not return immediately. How quickly this function returns depends on run-time factors such as network status, print server configuration, and printer driver implementation—factors that are difficult to predict when writing an application. Calling this function from a thread that manages interaction with the user interface could make the application appear to be unresponsive.

Requirements

Minimum supported client

Windows 2000 Professional

Minimum supported server

Windows 2000 Server

Header

Winspool.h (include Windows.h)

Library

Winspool.lib

Unicode and ANSI names

GetDefaultPrinterW (Unicode) and GetDefaultPrinterA (ANSI)

See also

Printing
Print Spooler API Functions
SetDefaultPrinter

 

 

Send comments about this topic to Microsoft

Build date: 3/6/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Can be returned ERROR_INVALID_PARAMETER
When Using NULL with second parameter, Then GetLastError() returns ERROR_INVALID_PARAMETER (87L).
Error interpritation

ERROR_INSUFFICIENT_BUFFER and ERROR_FILE_NOT_FOUND are returned by GetLastError() function.