IdAllAuthentications.pas 824 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. unit IdAllAuthentications;
  2. interface
  3. {
  4. Note that this unit is simply for listing ALL Authentications in Indy.
  5. The user could then add this unit to a uses clause in their program and
  6. have all Authentications linked into their program.
  7. ABSOLUTELY NO CODE is permitted in this unit.
  8. }
  9. {$I IdCompilerDefines.inc}
  10. // RLebeau 2/14/09: this forces C++Builder to link to this unit so
  11. // the units can register themselves correctly at program startup...
  12. {$IFDEF HAS_DIRECTIVE_HPPEMIT_LINKUNIT}
  13. {$HPPEMIT LINKUNIT}
  14. {$ELSE}
  15. {$HPPEMIT '#pragma link "IdAllAuthentications"'}
  16. {$ENDIF}
  17. implementation
  18. uses
  19. {$IFNDEF DOTNET}
  20. IdAuthenticationNTLM,
  21. {$IFDEF USE_SSPI}
  22. IdAuthenticationSSPI,
  23. {$ENDIF}
  24. {$ENDIF}
  25. IdAuthenticationDigest;
  26. {dee-duh-de-duh, that's all folks.}
  27. end.