⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adofiltr.h

📁 windows ce开发技巧与实例光盘代码
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////
//
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -