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
SensAPI.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*++
- Copyright (c) Microsoft Corporation. All rights reserved.
- Module Name:
- sensapi.h
- Abstract:
- Public header file for the SENS Connectivity APIs.
- Author:
- Gopal Parupudi <GopalP>
- [Notes:]
- optional-notes
- Revision History:
- GopalP 10/12/1997 Start.
- --*/
- #ifndef __SENSAPI_H__
- #define __SENSAPI_H__
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define NETWORK_ALIVE_LAN 0x00000001
- #define NETWORK_ALIVE_WAN 0x00000002
- #define NETWORK_ALIVE_AOL 0x00000004
- typedef struct tagQOCINFO
- {
- DWORD dwSize;
- DWORD dwFlags;
- DWORD dwInSpeed;
- DWORD dwOutSpeed;
- } QOCINFO, *LPQOCINFO;
- #ifdef UNICODE
- #define IsDestinationReachable IsDestinationReachableW
- #else
- #define IsDestinationReachable IsDestinationReachableA
- #endif // UNICODE
- #if !defined(__midl)
- BOOL APIENTRY
- IsDestinationReachableA(
- LPCSTR lpszDestination,
- LPQOCINFO lpQOCInfo
- );
- BOOL APIENTRY
- IsDestinationReachableW(
- LPCWSTR lpszDestination,
- LPQOCINFO lpQOCInfo
- );
- BOOL APIENTRY
- IsNetworkAlive(
- LPDWORD lpdwFlags
- );
- #endif // !defined(__midl)
- #ifdef __cplusplus
- }
- #endif
- #endif // __SENSAPI_H__