Expand Minimize
This topic has not yet been rated - Rate this topic

ATL Provider Warning ATL4101

Error Message

Creating multiple handler entries for request_handler class: class.

The provider has encountered multiple request_handler attributes on class class and will create multiple handler entries.

The following sample generates ATL4101.

// ATL4101.cpp
// compile with: /c /W3
// ATL4101 expected
#define _ATL_ATTRIBUTES
#define _WIN32_WINNT 0x0500

#include <atlstencil.h>

[ request_handler("Default"), request_handler("Default2") ]
class CTest
{
};
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.