Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
509 B

  1. #include "basepch.h"
  2. #pragma hdrstop
  3. #include <cscapi.h>
  4. static
  5. BOOL
  6. WINAPI
  7. CSCIsCSCEnabled(
  8. VOID
  9. )
  10. {
  11. return FALSE;
  12. }
  13. static
  14. BOOL
  15. WINAPI
  16. CSCQueryFileStatusW(
  17. LPCWSTR lpszFileName,
  18. LPDWORD lpdwStatus,
  19. LPDWORD lpdwPinCount,
  20. LPDWORD lpdwHintFlags
  21. )
  22. {
  23. return FALSE;
  24. }
  25. //
  26. // !! WARNING !! The entries below must be in order by ORDINAL
  27. //
  28. DEFINE_ORDINAL_ENTRIES(cscdll)
  29. {
  30. DLOENTRY(9, CSCIsCSCEnabled)
  31. DLOENTRY(42, CSCQueryFileStatusW)
  32. };
  33. DEFINE_ORDINAL_MAP(cscdll)