typedef struct DPLAPPINFO {
DWORD dwSize;
GUID guidApplication;
union
{
LPSTR lpszAppNameA;
LPWSTR lpszAppName;
};
} DPLAPPINFO, * LPDPLAPPINFO;
Contains information about the application from the registry and is passed to the IDirectPlayLobby::EnumLocalApplications callback function.
Size, in bytes, of this structure. Your application must set this member before it uses this structure; otherwise, an error will result.
Globally unique identifier (GUID) of the application.
Name of the application in ANSI or Unicode, depending on what interface is in use.