There is a compile issue when use Visual studio 2015.

Root-cause is Special characters (comma) exist in the header file.

Silicon\ApollolakePkg\Include\Library/HeciLib.h: warning C4819: The file contains a character that cannot be represented in the current code page (950). Save the file in Unicode format to prevent data loss
This commit is contained in:
EthanHsu
2018-10-09 11:33:40 +08:00
committed by Maurice Ma
parent bd1ea24cc1
commit a8e8fccd03
@@ -146,7 +146,7 @@ typedef union {
UINT32 HostAddress : 8; // This is the logical address of the Host client of the message.
UINT32 Length : 9; // This is the message length in bytes, not including the HECI_MESSAGE_HEADER
UINT32 Reserved : 6;
UINT32 MessageComplete : 1; // This bit is used to indicate that this is the last message of a multi message HECI transfer of a clients message that is larger than HECI circular buffer.
UINT32 MessageComplete : 1; // This bit is used to indicate that this is the last message of a multi message HECI transfer of a client's message that is larger than HECI circular buffer.
} Fields;
} HeciMessageHeader;