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
LMConfig.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*++ BUILD Version: 0003 // Increment this if a change has global effects
- Copyright (c) 1991-1999 Microsoft Corporation
- Module Name:
- lmconfig.h
- Abstract:
- This module defines the API function prototypes and data structures
- for the following groups of NT API functions:
- NetConfig
- Environment:
- User Mode - Win32
- Notes:
- You must include NETCONS.H before this file, since this file depends
- on values defined in NETCONS.H.
- --*/
- #ifndef _LMCONFIG_
- #define _LMCONFIG_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define REVISED_CONFIG_APIS
- //
- // Function Prototypes - Config
- //
- NET_API_STATUS NET_API_FUNCTION
- NetConfigGet (
- IN LPCWSTR server OPTIONAL,
- IN LPCWSTR component,
- IN LPCWSTR parameter,
- #ifdef REVISED_CONFIG_APIS
- OUT LPBYTE *bufptr
- #else
- OUT LPBYTE *bufptr,
- OUT LPDWORD totalavailable
- #endif
- );
- NET_API_STATUS NET_API_FUNCTION
- NetConfigGetAll (
- IN LPCWSTR server OPTIONAL,
- IN LPCWSTR component,
- #ifdef REVISED_CONFIG_APIS
- OUT LPBYTE *bufptr
- #else
- OUT LPBYTE *bufptr,
- OUT LPDWORD totalavailable
- #endif
- );
- NET_API_STATUS NET_API_FUNCTION
- NetConfigSet (
- IN LPCWSTR server OPTIONAL,
- IN LPCWSTR reserved1 OPTIONAL,
- IN LPCWSTR component,
- IN DWORD level,
- IN DWORD reserved2,
- IN LPBYTE buf,
- IN DWORD reserved3
- );
- NET_API_STATUS NET_API_FUNCTION
- NetRegisterDomainNameChangeNotification(
- PHANDLE NotificationEventHandle
- );
- NET_API_STATUS NET_API_FUNCTION
- NetUnregisterDomainNameChangeNotification(
- HANDLE NotificationEventHandle
- );
- //
- // Data Structures - Config
- //
- typedef struct _CONFIG_INFO_0 {
- LPWSTR cfgi0_key;
- LPWSTR cfgi0_data;
- } CONFIG_INFO_0, *PCONFIG_INFO_0, *LPCONFIG_INFO_0;
- #ifdef __cplusplus
- }
- #endif
- #endif // _LMCONFIG_