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
roll.h
Package: shell.rar [view]
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:
Windows Kernel
Development Platform:
Visual C++
- //*********************************************************************
- //* Microsoft Windows **
- //* Copyright(c) Microsoft Corp., 1996 **
- //*********************************************************************
- #ifndef _ROLL_H_
- #define _ROLL_H_
- /*Includes-----------------------------------------------------------*/
- /*Classes------------------------------------------------------------*/
- /*
- The format of the local list file is as follows:
- BATCAVE_LOCAL_LIST_MAGIC_COOKIE
- LocalListRecordHeader_1 pUrl_1 pRating_1
- .
- .
- .
- .
- LocalListRecordHeader_n pUrl_n pRating_n
- The file is binary.
- Entries should be sorted based on pUrl
- pUrl and pRating are both strings whose size is determined
- by the record header. They are NOT null terminated!
- */
- #define BATCAVE_LOCAL_LIST_MAGIC_COOKIE 0x4e4f5845
- //BUG BUG should either be inside of registry or user profile
- #define FILE_NAME_LIST "ratings.lst"
- struct LocalListRecordHeader{
- int nUrl;
- int nRating;
- HRESULT hrRet;
- };
- /*Prototypes---------------------------------------------------------*/
- HRESULT RatingHelperProcLocalList(LPCTSTR pszTargetUrl, HANDLE hAbortEvent, void* (WINAPI *MemAlloc)(long size), char **ppRatingOut);
- #endif
- //_ROLL_H_