You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
303 B
10 lines
303 B
#include <dbt.h>
|
|
|
|
static const char g_szActiveSyncDeviceName[] = "ActiveSync";
|
|
|
|
typedef struct tagACTIVESYNC_DEV_BROADCAST_USERDEFINED
|
|
{
|
|
struct _DEV_BROADCAST_HDR DBHeader;
|
|
char szName[sizeof(g_szActiveSyncDeviceName) + 1];
|
|
BOOL fConnected;
|
|
} ACTIVESYNC_DEV_BROADCAST_USERDEFINED;
|