- Code/Resource
- Windows Develop
- Linux-Unix program
- Internet-Socket-Network
- Web Server
- Browser Client
- Ftp Server
- Ftp Client
- Browser Plugins
- Proxy Server
- Email Server
- Email Client
- WEB Mail
- Firewall-Security
- Telnet Server
- Telnet Client
- ICQ-IM-Chat
- Search Engine
- Sniffer Package capture
- Remote Control
- xml-soap-webservice
- P2P
- WEB(ASP,PHP,...)
- TCP/IP Stack
- SNMP
- Grid Computing
- SilverLight
- DNS
- Cluster Service
- Network Security
- Communication-Mobile
- Game Program
- Editor
- Multimedia program
- Graph program
- Compiler program
- Compress-Decompress algrithms
- Crypt_Decrypt algrithms
- Mathimatics-Numerical algorithms
- MultiLanguage
- Disk/Storage
- Java Develop
- assembly language
- Applications
- Other systems
- Database system
- Embeded-SCM Develop
- FlashMX/Flex
- source in ebook
- Delphi VCL
- OS Develop
- MiddleWare
- MPI
- MacOS develop
- LabView
- ELanguage
- Software/Tools
- E-Books
- Artical/Document
COMOBJ.RC
Package: MSDN_VC98.zip [view]
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 3k
Category:
Windows Develop
Development Platform:
Visual C++
- //===========================================================================
- // File: COMOBJ.RC
- //
- // Summary: Resource definition file for COMOBJ.DLL.
- //
- // Origin: 8-20-95: atrent - Editor-inheritance from the DLLSKEL source.
- //
- // -------------------------------------------------------------------------
- // This file is part of the Microsoft COM Tutorial Code Samples.
- //
- // Copyright (C) Microsoft Corporation, 1997. All rights reserved.
- //
- // This source code is intended only as a supplement to Microsoft
- // Development Tools and/or on-line documentation. See these other
- // materials for detailed information regarding Microsoft code samples.
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- // PARTICULAR PURPOSE.
- //===========================================================================
- // We include ole2.h because we're defining the Version Info.
- // We inlcude apputil.h for Resource IDs shared with APPUTIL.
- // We include comobji.h for Resource IDs unique to COMOBJ.DLL.
- #include <ole2.h>
- #include <apputil.h>
- #include "comobji.h"
- // The main icon resource for the application.
- AppIcon ICON DISCARDABLE "comobj.ico"
- // The COMOBJ About Box dialog resource.
- IDD_ABOUTBOX DIALOG DISCARDABLE 67, 46, 196, 53
- STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
- CAPTION "About COMOBJ"
- FONT 8, "MS Shell Dlg"
- BEGIN
- ICON "AppIcon",-1,6,7,18,20
- LTEXT "Tutorial Code Sample: COMOBJ Version 1.0",-1,32,7,
- 155,8,NOT WS_GROUP
- LTEXT "Copyright 1997 Microsoft Corporation",-1,32,18,155,
- 8,NOT WS_GROUP
- PUSHBUTTON "OK",IDOK,75,32,40,14
- END
- // Error Box String Resources.
- STRINGTABLE DISCARDABLE
- BEGIN
- IDS_ASSERT_FAIL "COMOBJ: Assertion Failed."
- END
- // If being read in by AppStudio we don't confuse it with this Version Info.
- #ifndef APSTUDIO_INVOKED
- // The version information for the binary.
- VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,0
- PRODUCTVERSION 1,0,0,0
- FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
- #ifndef DEBUG
- FILEFLAGS 0
- #else
- FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
- #endif
- FILEOS VOS_NT_WINDOWS32
- FILETYPE VFT_DLL
- FILESUBTYPE VFT2_UNKNOWN
- BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- #ifdef UNICODE
- BLOCK "040904B0" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=Unicode
- #else
- BLOCK "040904E4" // LANG_ENGLISH/SUBLANG_ENGLISH_US, CharSet=MultiLang
- #endif
- BEGIN
- VALUE "CompanyName", "Microsoft Corporation"
- VALUE "FileDescription", "COMOBJ: Tutorial Code Sample"
- VALUE "FileVersion", "1.00"
- VALUE "InternalName", "COMOBJ"
- VALUE "LegalCopyright", "Copyright 251 1997 Microsoft Corp. "
- VALUE "OriginalFilename","COMOBJ.DLL"
- VALUE "ProductName", "Microsoft256 Tutorial Code Samples"
- VALUE "ProductVersion", "1.00"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- #ifdef UNICODE
- VALUE "Translation", 0x409, 1200 //English (0x409), Unicode (1200)
- #else
- VALUE "Translation", 0x409, 1252 //English (0x409), ANSI (1252)
- #endif
- END
- END
- #endif