home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / crypto / cfiler / cfiler.h < prev    next >
C/C++ Source or Header  |  1996-01-09  |  950b  |  40 lines

  1. // CFILER.H
  2.  
  3. #ifndef    CRYPTFILER_INCLUDED
  4. #define CRYPTFILER_INCLUDED
  5.  
  6. #include <windows.h>
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9. #include <cderr.h>
  10. #include <ctype.h>
  11. #include <stdarg.h>
  12. #include <limits.h>
  13. #include <wincrypt.h>
  14. #include "GLOBALS.H"
  15. #include "ENUMDRV.H"
  16. #include "DRVPROC.H"
  17. #include "EXPDIR.H"
  18. #include "CFILER.H"
  19. #include "RESOURCE.H"
  20. #include "CRP.H"
  21. #include "TABLE.H"
  22. #include "FILLFILE.H"
  23.  
  24. #ifdef UNICODE
  25.     #include <TCHAR.H>
  26. #else
  27.     #include <STRING.H>
  28. #endif
  29.  
  30. BOOL    InitializeApp           (VOID);
  31. VOID    ErrorMsg                (LPTSTR);
  32. LRESULT WINAPI MainWndProc      (HWND, UINT, WPARAM, LPARAM);
  33. LRESULT WINAPI AboutProc        (HWND, UINT, WPARAM, LPARAM);
  34. LRESULT WINAPI DriveBarProc     (HWND, UINT, WPARAM, LPARAM);
  35. INT        GetDriveBitmap            (LPBINFO);
  36. BOOL     ChangeDrive                (LPTSTR, DWORD);
  37. BOOL    UpdateDrivesMenu        (HMENU, HANDLE);
  38.  
  39. #endif // #ifndef CRYPTFILER_INCLUDED
  40.