| fxsutility.h (6.1.7600.16385-Windows_7.0) | | fxsutility.h (6.3.9600.17415-Windows_8.1) |
| | |
| skipping to change at line 25 | | skipping to change at line 25 |
| This header file contains prototypes for "Send to Fax Recipient" functionali
ty. | | This header file contains prototypes for "Send to Fax Recipient" functionali
ty. |
| | |
| --*/ | | --*/ |
| | |
| #ifndef _FXS_UTILITY_H_ | | #ifndef _FXS_UTILITY_H_ |
| #define _FXS_UTILITY_H_ | | #define _FXS_UTILITY_H_ |
| | |
| #if _MSC_VER > 1000 | | #if _MSC_VER > 1000 |
| #pragma once | | #pragma once |
| #endif | | #endif |
|
| | #include <winapifamily.h> |
| | |
| | #pragma region Desktop Family |
| | #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) |
| | |
| #ifdef __cplusplus | | #ifdef __cplusplus |
| extern "C" { | | extern "C" { |
| #endif | | #endif |
| | |
| typedef enum { | | typedef enum { |
| SEND_TO_FAX_RECIPIENT_ATTACHMENT | | SEND_TO_FAX_RECIPIENT_ATTACHMENT |
| } SendToMode; | | } SendToMode; |
| | |
| BOOL WINAPI CanSendToFaxRecipient(); | | BOOL WINAPI CanSendToFaxRecipient(); |
| DWORD WINAPI SendToFaxRecipient(SendToMode sndMode, LPCWSTR lpFileName); | | DWORD WINAPI SendToFaxRecipient(SendToMode sndMode, LPCWSTR lpFileName); |
| | |
| #ifdef __cplusplus | | #ifdef __cplusplus |
| } | | } |
| #endif | | #endif |
| | |
|
| | #endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */ |
| | #pragma endregion |
| | |
| #endif | | #endif |
| | |
| End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 7 lines changed or added |
|