ixedit.h

来自「IBM Lotus C++ API 7.0a for IBM Lotus Not」· C头文件 代码 · 共 77 行

H
77
字号

#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, 2002  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


/* This file contains typedefs for data structures passed from the editor */
/* to import/export procedures. */

#ifndef IXEDIT_DEFS
#define IXEDIT_DEFS

#ifndef FONTID_DEFS
#include "fontid.h"		/* for FONTID */
#endif

#ifndef EDIT_ODS_DEFS
#include "editods.h"	/* for HEAD_DESC_BUFFER */
#endif

#ifndef NAME_DEFS
#include "names.h"		/* for MAXPATH */
#endif


/* Block passed to all editor imports */

typedef struct
	{
	char OutputFileName[OLDMAXPATH];/* File to be filled by import with CD records */
	FONTID FontID;					/* font used at the current caret position */
	} EDITIMPORTDATA;


/* Block passed to all editor exports */

typedef struct
	{
	char InputFileName[OLDMAXPATH];	/* File to be read by export containing CD records */
	HANDLE hCompBuffer;			 	/* Handle to composite buffer (V1 Exports) */
	DWORD CompLength;				/* Length of composite buffer (V1 Exports) */
	HEAD_DESC_BUFFER HeaderBuffer; 
	HEAD_DESC_BUFFER FooterBuffer;		
	PRINT_SETTINGS   PrintSettings;
	} EDITEXPORTDATA;


#endif

#ifdef __cplusplus
}
#endif


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

⌨️ 快捷键说明

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