views:

61

answers:

1

Microsoft has this nice little feature called CardSpace. This is a Microsoft implementation of InfoCards. Microsoft has a nice document which explains how it can be used, which is useful. And doing a Google search doesn't provide me many useful answers but it does provide an enormous amount of noise. (Mostly because people wonder what it is or sites offering this DLL as some kind of download. The latter is suspicious since it's just part of Windows Vista and .NET 3.0 and higher.)

Basically, I need to call all functionality from this DLL within Delphi 2007. If there's a C++ header for this DLL then I can convert it. Or maybe some other information about it's functions, parameters, datatypes and whatever more.

+1  A: 

There is an InfoCard.h file included with Microsoft's Windows SDK which should be what you need. Bit of a hefty download for a single file if you don't already have it - you might be better visiting the MSDN reference for the CardSpace API and getting the info from there.

Steve Beedie
Found it! :-) I have the SDK already installed but failed to find it.
Workshop Alex