CardFile.h
上传用户:lsj_816
上传日期:2007-01-01
资源大小:37k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #ifndef __CARDFILE_H__
  2. #define __CARDFILE_H__
  3. #include <windows.h>
  4. //////////////////////////////////////////////////////////////////////
  5. // CardFile.h
  6. //
  7. // Header file for the function library CARDFILE.DLL
  8. //
  9. // This file and the associated implementation file 'CARDFILE.CPP'
  10. // may be distributed freely and altered in any way you wish as long 
  11. // as this notice is kept.
  12. // 
  13. // Christian Skovdal Andersen 27/9-1998
  14. // Any questions/suggestions conerning this library 
  15. // should be directed to my e-mail address: csa@jubii.dk
  16. //
  17. // Common error messages
  18. #define CF_FILEOPENERROR 0x001
  19. #define CF_FILETOSMALL 0x002
  20. #define CF_NOMEMORY 0x003
  21. #define CF_FILEREADERROR 0x004
  22. #define CF_SUCCESS 0x005
  23. #define CF_NOTACARDFILE 0x006
  24. // Strucure trhat will hold one cardfile card
  25. typedef struct _CARDFILECARD
  26. {
  27. LPSTR szHeading;
  28. LPSTR szBodyText;
  29. } CARDFILECARD, *LPCARDFILECARD;
  30. // Function definitions
  31. typedef DWORD (* IMPORTCARDFILE)(LPCSTR , LPCARDFILECARD *, DWORD *);
  32. typedef void (* FREECARDFILEPTR)(LPCARDFILECARD *, DWORD);
  33. #endif //__CARDFILE_H__