mirror of https://github.com/tongzx/nt5src
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.
22 lines
663 B
22 lines
663 B
// faxhelper.h : IComponent Interface helpers
|
|
//
|
|
// these functions help with extracting dataobjects and clipboards
|
|
//
|
|
// stolen from the MMC SDK.
|
|
// Copyright (C) 1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
|
|
#ifndef __FAX_DATAOBJECT_HELPER_H_
|
|
#define __FAX_DATAOBJECT_HELPER_H_
|
|
|
|
#include "faxdataobj.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// We need a few functions to help work with dataobjects and clipboard formats
|
|
|
|
HRESULT ExtractFromDataObject(LPDATAOBJECT lpDataObject,CLIPFORMAT cf,ULONG cb,HGLOBAL *phGlobal);
|
|
CFaxDataObject *ExtractOwnDataObject(LPDATAOBJECT lpDataObject);
|
|
|
|
#endif // __GLOBALS_H_
|
|
|