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

📄 csuserst.h

📁 www工具包. 这是W3C官方支持的www支撑库. 其中提供通用目的的客户端的WebAPI: complete HTTP/1.1 (with caching, pipelining, PUT, POS
💻 H
字号:
/*					User data internals!User data internals!*//***	(c) COPYRIGHT MIT 1996.**	Please first read the full copyright statement in the file COPYRIGH.*//*This module defines the User data structures read by CSParser.c. Applications will include this if theywant direct access to the data (as opposed to using iterator methods).The following data structures relate to the data encapsulated in a PICS User.Each data type correlates to a time in the BNF for the user description.*/#ifndef CSUSERST_H#define CSUSERST_H/**/typedef struct {    SVal_t identifier;    BVal_t missing_scale;    BVal_t observe_dates;    HTList * ranges;    } UserServiceRating_t;typedef struct {    FVal_t version;    SVal_t rating_system;    SVal_t rating_service;    BVal_t missing_service;    BVal_t missing_scale;    BVal_t observe_dates;    HTList * userServiceRatings;    } UserService_t;struct CSUserData_s {    FVal_t version;    SVal_t user_name;    SVal_t password;    BVal_t super_user;    FVal_t minimum_services;    BVal_t missing_service;    BVal_t missing_scale;    BVal_t observe_dates;    SVal_t bureau;    HTList * proxies;    HTList * userServices;    };/*--------------these provide access to the above data types--------------*/extern CSUserData_t * CSUser_getCSUserData(CSUser_t * me);extern UserService_t * CSUser_getUserService(CSUser_t * pCSUser);extern UserServiceRating_t * CSUser_getUserServiceRating(CSUser_t * pCSUser);/**/#endif /* CSUSERST_H *//*End of Declaration*/

⌨️ 快捷键说明

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