DirectPlay Animated Header -- DPLAPPINFO DirectPlay Animated Header -- DPLAPPINFO* Microsoft DirectPlay SDK
*Index  *Topic Contents
*Previous Topic: DPCREDENTIALS
*Next Topic: DPLCONNECTION


DPLAPPINFO


Contains information about the application from the registry and is passed to the IDirectPlayLobby2::EnumLocalApplications callback function.

typedef struct {
    DWORD  dwSize;
    GUID   guidApplication;
    union {
           LPSTR  lpszAppNameA;
           LPWSTR lpszAppName;
          };
} DPLAPPINFO, FAR *LPDPLAPPINFO;
Members
dwSize
The size of the DPLAPPINFO structure, dwsize = sizeof(DPLAPPINFO). Your application must set this member before it uses this structure; otherwise, an error will result.
guidApplication
Globally unique identifier (GUID) of the application.
lpszAppNameA, lpszAppName
Name of the application in ANSI or Unicode, depending on what interface is in use.

© 1998 Microsoft Corporation. All rights reserved. Terms of Use.

*Top of Page