headers: Define missing PHYSICAL_ADDRESS type in ntddser.h

This fixes the following compiler error in chromium.

ntddser.h: At global scope:
ntddser.h:368:9: error: 'PHYSICAL_ADDRESS' does not name a type; did you mean 'PNC_ADDRESS'?
  368 |         PHYSICAL_ADDRESS  PortAddress;
      |         ^~~~~~~~~~~~~~~~
      |         PNC_ADDRESS

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
This commit is contained in:
Biswapriyo Nath 2023-09-09 16:24:20 +00:00 committed by LIU Hao
parent 0622020e9e
commit 48b7cb4191

View File

@ -362,6 +362,9 @@ typedef struct _SERIAL_BASIC_SETTINGS {
ULONG TxFifo;
} SERIAL_BASIC_SETTINGS, *PSERIAL_BASIC_SETTINGS;
#undef PHYSICAL_ADDRESS
#define PHYSICAL_ADDRESS LARGE_INTEGER
typedef struct _SERENUM_PORT_DESC {
ULONG Size;
PVOID PortHandle;