Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

44 lines
784 B

#ifndef _EFSPUTIL_H_
#define _EFSPUTIL_H_
typedef struct tag_FSPI_BRAND_INFO
{
DWORD dwSizeOfStruct;
LPWSTR lptstrSenderTsid;
LPWSTR lptstrRecipientPhoneNumber;
LPWSTR lptstrSenderCompany;
SYSTEMTIME tmDateTime;
} FSPI_BRAND_INFO;
typedef const FSPI_BRAND_INFO * LPCFSPI_BRAND_INFO;
typedef FSPI_BRAND_INFO * LPFSPI_BRAND_INFO;
#ifdef __cplusplus
extern "C" {
#endif
HRESULT
WINAPI
FaxBrandDocument(
LPCTSTR lpctsrtFile,
LPCFSPI_BRAND_INFO lpcBrandInfo
);
HRESULT
WINAPI
FaxRenderCoverPage(
LPCTSTR lpctstrTargetFile,
LPCFSPI_COVERPAGE_INFO lpCoverPageInfo,
LPCFSPI_PERSONAL_PROFILE lpRecipientProfile,
LPCFSPI_PERSONAL_PROFILE lpSenderProfile,
SYSTEMTIME tmSentTime,
LPCTSTR lpctstrBodyTiff
);
#ifdef __cplusplus
}
#endif
#endif