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

📄 ixport.h

📁 IBM Lotus C++ API 7.0a for IBM Lotus Notes/Domino Directory Release --------- ------------------
💻 H
字号:

#if defined(OS400) && (__OS400_TGTVRM__ >= 510)
#pragma datamodel(P128)
#endif

/*********************************************************************/
/*                                                                   */
/* Licensed Materials - Property of IBM                              */
/*                                                                   */
/* L-GHUS-5VMPGW, L-GHUS-5S3PEE                                      */
/* (C) Copyright IBM Corp. 1989, 2003  All Rights Reserved           */
/*                                                                   */
/* US Government Users Restricted Rights - Use, duplication or       */
/* disclosure restricted by GSA ADP Schedule Contract with           */
/* IBM Corp.                                                         */
/*                                                                   */
/*********************************************************************/


#ifdef __cplusplus
extern "C" {
#endif

/*	Useful definitions for import/export .EXEs */

#ifndef IXPORT_DEFS
#define IXPORT_DEFS

#ifndef IXEDIT_DEFS
#include "ixedit.h"
#endif
#ifndef IX_DEFS
#include "ixview.h"
#endif
#ifndef OSSIGNAL_DEFS
#include "ossignal.h"
#endif

/*	Define the input/output arguments to an import/export module. */


typedef STATUS (LNCALLBACKPTR IXENTRYPROC)(
							void far *IXContext,	/* See IXEDIT.H or IXVIEW.H */
							WORD Flags,				/* IXFLAG_xxx */
							HMODULE hModule,
							char far *AltLibraryName,
							char far *PathName);	/* File to act upon */

/* Flags passed to all imports/exports */

#define IXFLAG_FIRST		0x01		/* First time thru flag */
#define IXFLAG_LAST			0x02		/* Last time thru flag */
#define IXFLAG_APPEND		0x04		/* For exports, Append to output file */



/*	Macros for functions which are actually vectored calls to the main
	Notes process.
*/


#define IXPostMessage(str) \
			(OSGetSignalHandler(OS_SIGNAL_MESSAGE) ? \
				(*(OSSIGMSGPROC) OSGetSignalHandler(OS_SIGNAL_MESSAGE))(str, OSMESSAGETYPE_POST_NOSERVER) : \
				NOERROR)


/*	Definitions of the flags word which follows the description field
	in the notes.ini import/export flag. */

/*	Allow files to be appended on export */
#define IXFLAG_ALLOW_APPEND				0x01

/*	For doc exports, used a Composite Data scratch file. If not set, 
	uses a CD scratch buffer. All version 1 exports use a scratch
	buffer, Version 2 exports may use a scratch file. */

#define IXFLAG_DOC_EXPORT_USE_CD_FILE	0x02

#endif



#ifdef __cplusplus
}
#endif


#if defined(OS400) && (__OS400_TGTVRM__ >= 510)
#pragma datamodel(pop)
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -