Notice
Recent Posts
Recent Comments
Link
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
04-28 16:30
관리 메뉴

zyint's blog

::MatchesAttributes 본문

예전글들

::MatchesAttributes

진트­ 2009. 3. 13. 08:39

ISpObjectToken::MatchesAttributes

determines if an object token supports a specified attribute.

 

HRESULT MatchesAttributes(
   const WCHAR   *pszAttributes,
   BOOL          *pfMatches
);

파라미터

  • pszAttributes
        [in] Address of the null-terminated string specifying the object token attribute to match.
  • pfMatches
        [out] Address of a variable that receives the value indicating a match of the object token attribute specified in pszAttributes. This value is set to TRUE when the object token attribute matches, and FALSE when it does not match.

 

반환 값

Value Description
S_OK Function completed successfully.
E_INVALIDARG One or more parameters are invalid.
SPERR_UNINITIALIZED The object has not been properly initialized.
FAILED(hr) Appropriate error message.

 

참고자료

http://msdn.microsoft.com/en-us/library/ms718260(VS.85).aspx

 

이 글은 스프링노트에서 작성되었습니다.

Comments