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.

18 lines
543 B

  1. // This file contains the prototype declaration of SFP API's on Millennium (in sfc.dll)
  2. // typedef's
  3. typedef DWORD (WINAPI * SFPINSTALLCATALOG) (LPCTSTR, LPCTSTR);
  4. typedef DWORD (WINAPI * SFPDELETECATALOG) (LPCTSTR);
  5. typedef DWORD (WINAPI * SFPDUPLICATECATALOG)(LPCTSTR, LPCTSTR);
  6. // extern declarations
  7. // functions
  8. extern BOOL LoadSfcDLL();
  9. extern VOID UnloadSfcDLL();
  10. // variables
  11. extern SFPINSTALLCATALOG g_pfSfpInstallCatalog;
  12. extern SFPDELETECATALOG g_pfSfpDeleteCatalog;
  13. extern SFPDUPLICATECATALOG g_pfSfpDuplicateCatalog;