Leaked source code of windows server 2003
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.

19 lines
470 B

  1. #ifndef _IMPLSTUB_H_
  2. #define _IMPLSTUB_H_
  3. // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4. //
  5. // IMPLSTUB.H
  6. //
  7. // This file is similar to impldef.h. The difference is that impldefs.h are
  8. // meant to be implemented by ISAPI dlls. and this implstub.h are for
  9. // those functions that might be implemented by all CAL componets.
  10. //
  11. namespace IMPLSTUB
  12. {
  13. VOID __fastcall SaveHandle(HANDLE hHandle);
  14. }
  15. #endif // _IMPLSTUB_H_