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
qshelpr.h
Package: win2ksrc.rar [view]
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 2k
Category:
Windows Develop
Development Platform:
Visual C++
- /*++
- Intel Corporation Proprietary Information
- Copyright (c) 1995 Intel Corporation
- This listing is supplied under the terms of a license agreement with
- Intel Corporation and may not be used, copied, nor disclosed except in
- accordance with the terms of that agreeement.
- Module Name:
- qshelpr.h
- Abstract:
- This file contains the definitions of the procedures exported by the query
- set helper module for internal use within the WinSock 2 DLL.
- Author:
- Paul Drews (drewsxpa@ashland.intel.com) 11-Jan-1996
- Notes:
- $Revision: 1.2 $
- $Modtime: 18 Jan 1996 11:22:32 $
- Revision History:
- most-recent-revision-date email-name
- description
- 11-Jan-1996 drewsxpa@ashland.intel.com
- Created original version
- --*/
- #ifndef _QSHELPR_
- #define _QSHELPR_
- #include "winsock2.h"
- #include <windows.h>
- INT
- MapAnsiQuerySetToUnicode(
- IN LPWSAQUERYSETA Source,
- IN OUT LPDWORD lpTargetSize,
- OUT LPWSAQUERYSETW Target
- );
- INT
- MapUnicodeQuerySetToAnsi(
- IN LPWSAQUERYSETW Source,
- IN OUT LPDWORD lpTargetSize,
- OUT LPWSAQUERYSETA Target
- );
- INT
- CopyQuerySetA(
- IN LPWSAQUERYSETA Source,
- OUT LPWSAQUERYSETA *Target
- );
- CopyQuerySetW(
- IN LPWSAQUERYSETW Source,
- OUT LPWSAQUERYSETW *Target
- );
- LPWSTR
- wcs_dup_from_ansi(
- IN LPSTR Source
- );
- LPSTR
- ansi_dup_from_wcs(
- IN LPWSTR Source
- );
- #endif // _QSHELPR_