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.
21 lines
740 B
21 lines
740 B
// ========================================================================================
|
|
// U I D L C M N . H
|
|
// ========================================================================================
|
|
#ifndef __UIDLCMN_H
|
|
#define __UIDLCMN_H
|
|
|
|
// ========================================================================================
|
|
// UIDLINFO
|
|
// ========================================================================================
|
|
typedef struct tagUIDLINFO
|
|
{
|
|
BYTE fDownloaded;
|
|
BYTE fDeletedOnClient;
|
|
FILETIME ftDownload;
|
|
LPTSTR lpszUidl;
|
|
LPTSTR lpszServer;
|
|
LPTSTR lpszUserName;
|
|
|
|
} UIDLINFO, *LPUIDLINFO;
|
|
|
|
#endif // __UIDLCMN_H
|