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

📄 wiconn.rc

📁 Windows CE 6.0 Server 源码
💻 RC
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
//-----------------------------------------------------------------------------
// File:            WIConn.rc
//
// Contents:        Main resource file
//
// Comments:
//
//-----------------------------------------------------------------------------

// Includes ------------------------------------------------------------------
#include <windows.h>
#include "soapver.h"

// Version -------------------------------------------------------------------
//  Add the appropriate entries to the following tables for a new language
#define USENGLISH_ANSI      "040904E4"  // String of 0x0409 and 1252
#define USENGLISH_TRANS     0x0409, 1252  // 0x0409 and 1252

//  Replace the USENGLISH with the correct language
#define LANGUAGE_ANSI   USENGLISH_ANSI
#define LANGUAGE_TRANS  USENGLISH_TRANS

#ifdef  VER_PRODUCTNAME_STR
#undef  VER_PRODUCTNAME_STR
#define VER_PRODUCTNAME_STR "Microsoft Soap SDK\0"
#endif

// Localize: file description
#define VER_FILEDESC_STR    "WinInet Soap Connector Library"
#define VER_NAME_STR        "WiSC10\0"
#define VER_FILENAME_STR    "WiSC10.dll"


// Version -------------------------------------------------------------------
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION     VER_FILEVERSION
PRODUCTVERSION  VER_PRODUCTVERSION
FILEFLAGSMASK   VER_FILEFLAGSMASK
FILEFLAGS       VER_FILEFLAGS
FILEOS          VER_FILEOS
FILETYPE        VFT_DLL
FILESUBTYPE     VFT2_UNKNOWN
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK LANGUAGE_ANSI
        BEGIN
        VALUE "CompanyName",            VER_COMPANYNAME_STR
        VALUE "FileDescription",        VER_FILEDESC_STR
        VALUE "FileVersion",            VER_FILEVERSION_STR
        VALUE "InternalName",           VER_NAME_STR
        VALUE "LegalCopyright",         VER_LEGALCOPYRIGHT_STR
        VALUE "LegalTrademarks",        VER_LEGALTRADEMARKS_STR
        VALUE "OriginalFilename",       VER_FILENAME_STR
        VALUE "ProductName",            VER_PRODUCTNAME_STR
        VALUE "ProductVersion",         VER_PRODUCTVERSION_STR 
        VALUE "OLESelfRegister",        "\0"
        END
    END

  BLOCK "VarFileInfo"
  BEGIN
    VALUE "Translation",  LANGUAGE_TRANS
  END
END

1 TYPELIB "..\..\Idl\WISC.tlb"

⌨️ 快捷键说明

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