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
CardFile.h
Package: cardfile.zip [view]
Upload User: lsj_816
Upload Date: 2007-01-01
Package Size: 37k
Code Size: 1k
Category:
Windows Develop
Development Platform:
Visual C++
- #ifndef __CARDFILE_H__
- #define __CARDFILE_H__
- #include <windows.h>
- //////////////////////////////////////////////////////////////////////
- // CardFile.h
- //
- // Header file for the function library CARDFILE.DLL
- //
- // This file and the associated implementation file 'CARDFILE.CPP'
- // may be distributed freely and altered in any way you wish as long
- // as this notice is kept.
- //
- // Christian Skovdal Andersen 27/9-1998
- // Any questions/suggestions conerning this library
- // should be directed to my e-mail address: csa@jubii.dk
- //
- // Common error messages
- #define CF_FILEOPENERROR 0x001
- #define CF_FILETOSMALL 0x002
- #define CF_NOMEMORY 0x003
- #define CF_FILEREADERROR 0x004
- #define CF_SUCCESS 0x005
- #define CF_NOTACARDFILE 0x006
- // Strucure trhat will hold one cardfile card
- typedef struct _CARDFILECARD
- {
- LPSTR szHeading;
- LPSTR szBodyText;
- } CARDFILECARD, *LPCARDFILECARD;
- // Function definitions
- typedef DWORD (* IMPORTCARDFILE)(LPCSTR , LPCARDFILECARD *, DWORD *);
- typedef void (* FREECARDFILEPTR)(LPCARDFILECARD *, DWORD);
- #endif //__CARDFILE_H__