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
msffdefs.h
Package: shell.rar [view]
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 2k
Category:
Windows Kernel
Development Platform:
Visual C++
- /*----------------------------------------------------------------------------
- | Module : hildefs.h
- |
- | Purpose : platform dependent include file for HALO Imaging Library for
- | Microsoft Windows NT
- |
- | History : 4/21/94
- |
- | Copyright 1990-1994 Media Cybernetics, Inc.
- |-----------------------------------------------------------------------------*/
- #ifdef __cplusplus
- extern "C" { /* Assume C declarations for C++ */
- #endif /* __cplusplus */
- /*-----------------------------------------------------------------
- | Define the platform
- |------------------------------------------------------------------*/
- #define HIL_WINDOWS32 1
- #ifndef _WINDOWS_
- #define WIN32_LEAN_AND_MEAN
- #include <windows.h>
- #endif
- #define DllExport __declspec(dllexport)
- #define DllImport __declspec(dllimport)
- #ifdef _X86_
- #define FLTAPI __stdcall
- #else
- #define FLTAPI __cdecl
- #endif
- #define HILAPI __cdecl
- typedef float * LPFLOAT;
- typedef double * LPDOUBLE;
- typedef void * HPVOID;
- typedef LPBYTE * LPLPBYTE;
- #ifndef LPBOOL
- typedef BOOL * LPBOOL;
- #endif
- typedef short * LPSHORT;
- #ifndef S_IRUSR
- #define S_IRUSR 00400
- #endif
- #ifndef S_IWUSR
- #define S_IWUSR 00200
- #endif
- #ifndef S_IRGRP
- #define S_IRGRP 00040
- #endif
- #ifndef S_IWGRP
- #define S_IWGRP 00020
- #endif
- #ifndef S_IROTH
- #define S_IROTH 00004
- #endif
- #ifndef S_IWOTH
- #define S_IWOTH 00002
- #endif
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */