-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxsutility.py
More file actions
37 lines (22 loc) · 933 Bytes
/
Copy pathfxsutility.py
File metadata and controls
37 lines (22 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""++
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.
--"""
from . import cpreproc
from .defbase import *
from .minwindef import BOOL, DWORD, windll, INT, LPCWSTR, VOID, INT
if cpreproc.pragma_once("_FXS_UTILITY_H_"):
fxsutility = W_WinDLL("fxsutility.dll")
# REGION *** Desktop Family ***
SendToMode = INT
if True:
SEND_TO_FAX_RECIPIENT_ATTACHMENT = 0
CanSendToFaxRecipient = declare(fxsutility.CanSendToFaxRecipient, BOOL, VOID)
SendToFaxRecipient = declare(fxsutility.SendToFaxRecipient, DWORD, SendToMode, LPCWSTR)
# REGION ***