- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
CardFile.h
资源名称:cardfile.zip [点击查看]
上传用户:lsj_816
上传日期:2007-01-01
资源大小:37k
文件大小:1k
源码类别:
Windows编程
开发平台:
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__