set eol-style to native

svn path=/trunk/; revision=18417
This commit is contained in:
Thomas Bluemel 2005-10-12 22:04:07 +00:00
parent 016dd801d7
commit 342429fe3b
3 changed files with 163 additions and 163 deletions

View file

@ -1,61 +1,61 @@
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <lsass/lsass.h>
#define NDEBUG
#include <debug.h>
#include <ntsecapi.h>
#include <secext.h>
BOOLEAN
WINAPI
GetComputerObjectNameA (
EXTENDED_NAME_FORMAT extended_name_format,
LPSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetComputerObjectNameW (
EXTENDED_NAME_FORMAT extended_name_format,
LPWSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetUserNameExA (
EXTENDED_NAME_FORMAT extended_exe_format,
LPSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetUserNameExW (
EXTENDED_NAME_FORMAT extended_exe_format,
LPWSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <lsass/lsass.h>
#define NDEBUG
#include <debug.h>
#include <ntsecapi.h>
#include <secext.h>
BOOLEAN
WINAPI
GetComputerObjectNameA (
EXTENDED_NAME_FORMAT extended_name_format,
LPSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetComputerObjectNameW (
EXTENDED_NAME_FORMAT extended_name_format,
LPWSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetUserNameExA (
EXTENDED_NAME_FORMAT extended_exe_format,
LPSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOLEAN
WINAPI
GetUserNameExW (
EXTENDED_NAME_FORMAT extended_exe_format,
LPWSTR lpstr,
PULONG pulong
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}

View file

@ -1,35 +1,35 @@
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <lsass/lsass.h>
#define NDEBUG
#include <debug.h>
#include <ntsecapi.h>
#include <security.h>
#include <sspi.h>
SECURITY_STATUS
WINAPI
EnumerateSecurityPackagesW (
PULONG pulong,
PSecPkgInfoW* psecpkginfow
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
FreeContextBuffer (
PVOID pvoid
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <lsass/lsass.h>
#define NDEBUG
#include <debug.h>
#include <ntsecapi.h>
#include <security.h>
#include <sspi.h>
SECURITY_STATUS
WINAPI
EnumerateSecurityPackagesW (
PULONG pulong,
PSecPkgInfoW* psecpkginfow
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
FreeContextBuffer (
PVOID pvoid
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}

View file

@ -1,67 +1,67 @@
typedef struct _CERTIFICATE_BLOB {
DWORD dwCertEncodingType;
DWORD cbData;
PBYTE pbData;
} EFS_CERTIFICATE_BLOB, *PEFS_CERTIFICATE_BLOB;
typedef struct _EFS_HASH_BLOB {
DWORD cbData;
PBYTE pbData;
} EFS_HASH_BLOB, *PEFS_HASH_BLOB;
typedef struct _ENCRYPTION_CERTIFICATE {
DWORD cbTotalLength;
SID* pUserSid;
PEFS_CERTIFICATE_BLOB pCertBlob;
} ENCRYPTION_CERTIFICATE, *PENCRYPTION_CERTIFICATE;
typedef struct _ENCRYPTION_CERTIFICATE_HASH {
DWORD cbTotalLength;
SID* pUserSid;
PEFS_HASH_BLOB pHash;
LPWSTR lpDisplayInformation;
} ENCRYPTION_CERTIFICATE_HASH, *PENCRYPTION_CERTIFICATE_HASH;
typedef struct _ENCRYPTION_CERTIFICATE_LIST {
DWORD nUsers;
PENCRYPTION_CERTIFICATE* pUsers;
} ENCRYPTION_CERTIFICATE_LIST, *PENCRYPTION_CERTIFICATE_LIST;
typedef struct _ENCRYPTION_CERTIFICATE_HASH_LIST {
DWORD nCert_Hash;
PENCRYPTION_CERTIFICATE_HASH* pUsers;
} ENCRYPTION_CERTIFICATE_HASH_LIST, *PENCRYPTION_CERTIFICATE_HASH_LIST;
DWORD WINAPI AddUsersToEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_LIST
);
DWORD WINAPI RemoveUsersFromEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST
);
BOOL WINAPI EncryptionDisable (
LPCWSTR,
BOOL
);
BOOL WINAPI FileEncryptionStatus (
LPCTSTR,
LPDWORD
);
DWORD WINAPI QueryUsersOnEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST*
);
void WINAPI FreeEncryptionCertificateHashList (
PENCRYPTION_CERTIFICATE_HASH_LIST
);
DWORD WINAPI QueryRecoveryAgentsOnEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST*
);
typedef struct _CERTIFICATE_BLOB {
DWORD dwCertEncodingType;
DWORD cbData;
PBYTE pbData;
} EFS_CERTIFICATE_BLOB, *PEFS_CERTIFICATE_BLOB;
typedef struct _EFS_HASH_BLOB {
DWORD cbData;
PBYTE pbData;
} EFS_HASH_BLOB, *PEFS_HASH_BLOB;
typedef struct _ENCRYPTION_CERTIFICATE {
DWORD cbTotalLength;
SID* pUserSid;
PEFS_CERTIFICATE_BLOB pCertBlob;
} ENCRYPTION_CERTIFICATE, *PENCRYPTION_CERTIFICATE;
typedef struct _ENCRYPTION_CERTIFICATE_HASH {
DWORD cbTotalLength;
SID* pUserSid;
PEFS_HASH_BLOB pHash;
LPWSTR lpDisplayInformation;
} ENCRYPTION_CERTIFICATE_HASH, *PENCRYPTION_CERTIFICATE_HASH;
typedef struct _ENCRYPTION_CERTIFICATE_LIST {
DWORD nUsers;
PENCRYPTION_CERTIFICATE* pUsers;
} ENCRYPTION_CERTIFICATE_LIST, *PENCRYPTION_CERTIFICATE_LIST;
typedef struct _ENCRYPTION_CERTIFICATE_HASH_LIST {
DWORD nCert_Hash;
PENCRYPTION_CERTIFICATE_HASH* pUsers;
} ENCRYPTION_CERTIFICATE_HASH_LIST, *PENCRYPTION_CERTIFICATE_HASH_LIST;
DWORD WINAPI AddUsersToEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_LIST
);
DWORD WINAPI RemoveUsersFromEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST
);
BOOL WINAPI EncryptionDisable (
LPCWSTR,
BOOL
);
BOOL WINAPI FileEncryptionStatus (
LPCTSTR,
LPDWORD
);
DWORD WINAPI QueryUsersOnEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST*
);
void WINAPI FreeEncryptionCertificateHashList (
PENCRYPTION_CERTIFICATE_HASH_LIST
);
DWORD WINAPI QueryRecoveryAgentsOnEncryptedFile (
LPCWSTR,
PENCRYPTION_CERTIFICATE_HASH_LIST*
);