Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
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 31
Archives
Today
Total
05-05 20:34
관리 메뉴

zyint's blog

::Item 본문

예전글들

::Item

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

IEnumSpObjectTokens::Item

열거형 목록에서 특정 위치에 있는 토큰을 반환한다.

 

HRESULT Item(
   ULONG             Index,
   ISpObjectToken  **ppToken
);

파라미터

  • Index
    [in] Value indicating which token in the enumeration sequence to locate.
  • ppToken
    [out] Address of an ISpObjectToken interface pointer.

 

반환 값

Value Description
S_OK Function completed successfully.
SPERR_NO_MORE_ITEMS Index is greater than the amount of items available.
E_POINTER ppToken is bad or invalid.
SPERR_UNINITIALIZED Attribute parser interface is not initialized.
FAILED (hr) Appropriate error message.

 

 

참고자료

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

 

 

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

Comments