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.
37 lines
406 B
37 lines
406 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
miaslign.c
|
|
|
|
Abstract:
|
|
|
|
This module implements __misaligned_access().
|
|
|
|
Author:
|
|
|
|
Forrest Foltz (forrestf) 26-Jun-2002
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#include "ntrtlp.h"
|
|
|
|
|
|
VOID
|
|
__misaligned_access (
|
|
IN PVOID Address,
|
|
IN LONG Size,
|
|
IN LONG Alignment,
|
|
IN BOOLEAN Write
|
|
)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|