Share via


OBJTYPEINFO

The OBJTYPEINFO structure contains information about an object type.

Syntax

typedef struct tagObjTypeInfo {
  UINT cbStruct;
  OBJTYPENAMEW szObjType;
  UINT uFlags;
  WCHAR szName[80];
  UINT cObjects;
  UINT cbAllObj;
  FILETIME ftLastModified;
} OBJTYPEINFO, *POBJTYPEINFO;

Members

  • cbStruct
    Specifies the size of the structure in bytes.
  • szObjType
    A null-terminated string that specifies the object type.
  • uFlags
    This member is reserved. Set to zero.
  • szName
    [out] A null-terminated string that indicates the name of a file system object that stores the objects of the specified type.
  • cObjects
    [out] Indicates the number of existing objects of the specified type.
  • cbAllObj
    [out] Indicates the total number of bytes used to store existing objects of the specified type.
  • ftLastModified
    [out] Indicates the last time any object of the specified type was modified.

Requirements

Pocket PC: Windows Mobile 2000 and later
OS Versions: Windows CE 3.0 and later
Header: cesync.h

See Also

ActiveSync API Structures

Send feedback on this topic to the authors.

© 2005 Microsoft Corporation. All rights reserved.