types.h

来自「nsis是一个流传比较广的程序安装和解安装封装软件」· C头文件 代码 · 共 73 行

H
73
字号
/* * Types.h *  * This file is a part of LZMA compression module for NSIS. *  * Original LZMA SDK Copyright (C) 1999-2006 Igor Pavlov * Modifications Copyright (C) 2003-2006 Amir Szekely <kichik@netvision.net.il> *  * Licensed under the Common Public License version 1.0 (the "License"); * you may not use this file except in compliance with the License. *  * Licence details can be found in the file COPYING. *  * This software is provided 'as-is', without any express or implied * warranty. */#ifndef __COMMON_TYPES_H#define __COMMON_TYPES_H#ifndef _7ZIP_BYTE_DEFINED#define _7ZIP_BYTE_DEFINEDtypedef unsigned char Byte;#endif #ifndef _7ZIP_INT16_DEFINED#define _7ZIP_INT16_DEFINEDtypedef short Int16;#endif #ifndef _7ZIP_UINT16_DEFINED#define _7ZIP_UINT16_DEFINEDtypedef unsigned short UInt16;#endif #ifndef _7ZIP_INT32_DEFINED#define _7ZIP_INT32_DEFINEDtypedef int Int32;#endif #ifndef _7ZIP_UINT32_DEFINED#define _7ZIP_UINT32_DEFINEDtypedef unsigned int UInt32;#endif #ifdef _MSC_VER#ifndef _7ZIP_INT64_DEFINED#define _7ZIP_INT64_DEFINEDtypedef __int64 Int64;#endif #ifndef _7ZIP_UINT64_DEFINED#define _7ZIP_UINT64_DEFINEDtypedef unsigned __int64 UInt64;#endif #else#ifndef _7ZIP_INT64_DEFINED#define _7ZIP_INT64_DEFINEDtypedef long long int Int64;#endif #ifndef _7ZIP_UINT64_DEFINED#define _7ZIP_UINT64_DEFINEDtypedef unsigned long long int UInt64;#endif #endif#endif

⌨️ 快捷键说明

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