adofiltr.h
来自「windows ce开发技巧与实例光盘代码」· C头文件 代码 · 共 57 行
H
57 行
/////////////////////////////////////////////////////////////////////////////
//
// AdoFiltr.h : Wrapper functions for the DESKTOPTODEVICE and DEVICETODESKTOP
// functions exported by ADOFILTR.DLL.
//
//
// Copyright (c) 2000-2001 Nathan Lewis
// nlewis@programmer.net
// http://www.ticz.com/~nlewis
//
//
// This program is free software; you can redistribute it and/or modify it
// so long as credit is given to the original author listed above.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.
//
/////////////////////////////////////////////////////////////////////////////
#ifndef __ADOFILTR_H__INCLUDED_
#define __ADOFILTR_H__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// Definitions
#define DESKTOPTODEVICE DesktopToDevice
#define DEVICETODESKTOP DeviceToDesktop
/////////////////////////////////////////////////////////////////////////////
// Functions
HRESULT DesktopToDevice(LPCTSTR pszDesktopLocn,
LPCTSTR pszTableList,
BOOL bSync = FALSE,
BOOL bOverwrite = TRUE,
LPCTSTR pszDeviceLocn = NULL);
HRESULT DeviceToDesktop(LPCTSTR pszDesktopLocn,
LPCTSTR pszTableList,
BOOL bSync = FALSE,
BOOL bOverwrite = TRUE,
LPCTSTR pszDeviceLocn = NULL);
/////////////////////////////////////////////////////////////////////////////
#endif//#ifndef __ADOFILTR_H__INCLUDED_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?