Greetings...

I'm working with functions from esebcli2.dll and there is one problem:
MSDN says that DATABASE_BACKUP_INFO structure defined as:
Code:
typedef struct {
    wchar **wszDatabaseStreams;
    wchar **wszDatabaseDisplayName;
    GUID *rguidDatabase;
    unsigned long *rgIconIndexDatabase;
} DATABASE_BACKUP_INFO;
but in my PSDK (march 2006) it defined as:
Code:
typedef struct _DATABASE_BACKUP_INFO {
    RPC_STRING wszDatabaseDisplayName;

    unsigned long cwDatabaseStreams;
    RPC_SIZE(cwDatabaseStreams)  WCHAR * wszDatabaseStreams;
    
    GUID guidDatabase;
    unsigned long ulIconIndexDatabase;
    unsigned long fDatabaseFlags;
    
    } DATABASE_BACKUP_INFO;
(there is only one file name)
so I don't know where to get other's filenames.

Best regards...