IDiscFormat2TrackAtOnce::put_ClientName method (imapi2.h)

Sets the friendly name of the client.

Syntax

HRESULT put_ClientName(
  [in] BSTR value
);

Parameters

[in] value

Name of the client application.

Return value

S_OK is returned on success, but other success codes may be returned as a result of implementation. The following error codes are commonly returned on operation failure, but do not represent the only possible error values:

Return code Description
E_OUTOFMEMORY
Failed to allocate the required memory.

Value: 0x8007000E

E_IMAPI_DF2TAO_CLIENT_NAME_IS_NOT_VALID
The client name is not valid.

Value: 0xC0AA050F

E_IMAPI_DF2TAO_WRITE_IN_PROGRESS
A write operation is in progress.

Value: 0xC0AA0500

E_IMAPI_DF2TAO_MEDIA_IS_PREPARED
The requested operation is not valid when media has been "prepared" but not released.

Value: 0xC0AA0503

Remarks

The name is used when the write operation requests exclusive access to the device. The IDiscRecorder2::get_ExclusiveAccessOwner property contains the name of the client that has the lock.

Because any application with read/write access to the CDROM device during the write operation can use the IOCTL_CDROM_EXCLUSIVE_ACCESS (query) control code (see the Microsoft Windows Driver Development Kit (DDK)) to access the name, it is important that the name identify the program that is using this interface to write to the media. The name is restricted to the same character set as required by the IOCTL_CDROM_EXCLUSIVE_ACCESS control code.

Requirements

Requirement Value
Minimum supported client Windows Vista, Windows XP with SP2 [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header imapi2.h

See also

IDiscFormat2TrackAtOnce

IDiscFormat2TrackAtOnce::get_ClientName