design.h
来自「IBM Lotus C++ API 7.0a for IBM Lotus Not」· C头文件 代码 · 共 59 行
H
59 行
#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, 2005 All Rights Reserved */
/* */
/* US Government Users Restricted Rights - Use, duplication or */
/* disclosure restricted by GSA ADP Schedule Contract with */
/* IBM Corp. */
/* */
/*********************************************************************/
/* Database Design Definitions */
#ifndef DESIGN_DEFS
#define DESIGN_DEFS
#ifndef OSSIGNAL_DEFS
#include "ossignal.h" /* OSSIGMSGPROC */
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Identifier for different types of design elements and macros
for working with them. Used in the Folder API (foldman.h) */
typedef DWORD DESIGN_TYPE;
#define DESIGN_TYPE_SHARED 0 /* Note is shared (always located in the database) */
#define DESIGN_TYPE_PRIVATE_DATABASE 1 /* Note is private and is located in the database */
typedef STATUS (LNCALLBACKPTR ABORTCHECKPROC)(void);
STATUS LNPUBLIC DesignRefresh(char *Server, DBHANDLE hDB, DWORD dwFlags, ABORTCHECKPROC AbortCheck, OSSIGMSGPROC MessageProc);
/* dwFlags: */
#define DESIGN_FORCE 0x00000001 /* Force operation, even if destination "up to date" */
#ifdef __cplusplus
}
#endif
#endif /* DESIGN_DEFS */
#if defined(OS400) && (__OS400_TGTVRM__ >= 510)
#pragma datamodel(pop)
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?