pgpkinit.h

来自「著名的加密软件的应用于电子邮件中」· C头文件 代码 · 共 31 行

H
31
字号
/*
 * pgpkInit.h -- Initalize the PGPK Application
 *
 * Copyright (C) 1996,1997 Pretty Good Privacy, Inc.  All rights reserved.
 *
 * $Id: pgpkInit.h,v 1.1.2.1 1997/06/07 09:49:13 mhw Exp $
 */

#ifndef PGPINITAPP_H
#define PGPINITAPP_H

#ifdef __cplusplus
extern "C" {
#endif

int pgpInitApp (void *stacktop, int exit_prog);

/*
 * This routine must be defined for each application.  It works just like
 * main.  pgpInitApp.c contains the real main(), which calls appMain().
 * This is because on the Macintosh, main gets called without parameters,
 * so we need to read the arguments from the command line from within main().
 */
int appMain (int argc, char *argv[]);

#ifdef __cplusplus
}
#endif

#endif /* PGPINITAPP_H */

⌨️ 快捷键说明

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