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.
24 lines
374 B
24 lines
374 B
#ifndef __SENDER_H_
|
|
#define __SENDER_H_
|
|
|
|
|
|
#include <windows.h>
|
|
#include <fxsapip.h>
|
|
#include <faxsendw.h>
|
|
|
|
HRESULT WINAPI
|
|
FaxFreeSenderInformation(
|
|
PFAX_PERSONAL_PROFILE pfppSender
|
|
);
|
|
|
|
HRESULT WINAPI
|
|
FaxSetSenderInformation(
|
|
PFAX_PERSONAL_PROFILE pfppSender
|
|
);
|
|
|
|
HRESULT WINAPI
|
|
FaxGetSenderInformation(
|
|
PFAX_PERSONAL_PROFILE pfppSender
|
|
);
|
|
|
|
#endif
|