mirror of https://github.com/UMSKT/xpmgr.git
45 lines
762 B
C
45 lines
762 B
C
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
Module Name:
|
|
|
|
FxsSnd.h
|
|
|
|
Abstract:
|
|
|
|
This header file contains prototypes for "Send to Fax Recipient" functionality.
|
|
|
|
--*/
|
|
|
|
#ifndef _FXS_UTILITY_H_
|
|
#define _FXS_UTILITY_H_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
SEND_TO_FAX_RECIPIENT_ATTACHMENT
|
|
} SendToMode;
|
|
|
|
BOOL WINAPI CanSendToFaxRecipient();
|
|
DWORD WINAPI SendToFaxRecipient(SendToMode sndMode, LPCWSTR lpFileName);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|