]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Update to use DOS format
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 31 Oct 2008 04:23:14 +0000 (04:23 +0000)
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 31 Oct 2008 04:23:14 +0000 (04:23 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6323 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Library/ExtractGuidedSectionLib.h

index 72e979d0e3b953ec1df28e48d61e27c1dadfccc5..63595ee3b7102d0a905a5777c80a38d9f3136bf5 100644 (file)
 #ifndef __EXTRACT_GUIDED_SECTION_H__\r
 #define __EXTRACT_GUIDED_SECTION_H__\r
 \r
-/**
+/**\r
   Get information for the input guided section data.\r
   It will ASSERT () if the pointer to OutputBufferSize is NULL.\r
-  It will ASSERT () if the pointer to ScratchBufferSize is NULL.
+  It will ASSERT () if the pointer to ScratchBufferSize is NULL.\r
   It will ASSERT () if the pointer to SectionAttribute is NULL.\r
 \r
   @param[in]  InputSection          Buffer containing the input GUIDed section to be processed. \r
   @param[out] OutputBufferSize      The size of OutputBuffer.\r
   @param[out] ScratchBufferSize     The size of ScratchBuffer.\r
   @param[out] SectionAttribute      The attribute of the input guided section.\r
-
+\r
   @retval  RETURN_SUCCESS           Get the required information successfully.\r
   @retval  RETURN_INVALID_PARAMETER The input data is not the valid guided section.\r
 \r
@@ -39,8 +39,8 @@ RETURN_STATUS
   OUT       UINT16  *SectionAttribute\r
   );\r
 \r
-/**
-  Extract data and Auth from the specific guided section.
+/**\r
+  Extract data and Auth from the specific guided section.\r
   It will ASSERT () if the pointer to OutputBuffer is NULL.\r
   It will ASSERT () if the pointer to AuthenticationStatus is NULL.\r
 \r
@@ -51,8 +51,8 @@ RETURN_STATUS
   @param[out] ScratchBuffer A pointer to a caller-allocated buffer for function internal use. \r
   @param[out] AuthenticationStatus \r
                             A pointer to a caller-allocated UINT32 that indicates the\r
-                            authentication status of the output buffer. 
-
+                            authentication status of the output buffer. \r
+\r
   @retval  RETURN_SUCCESS               Get the output data and AuthenticationStatus successfully.\r
   @retval  RETURN_INVALID_PARAMETER     The input data is not the valid guided section.\r
 \r
@@ -66,14 +66,14 @@ RETURN_STATUS
   OUT       UINT32  *AuthenticationStatus\r
   );\r
 \r
-/**
+/**\r
   Register Guided Section Extract and GetInfo Handler.\r
 \r
-  @param[in]     SectionGuid    The guid matches this Extraction Handler.
+  @param[in]     SectionGuid    The guid matches this Extraction Handler.\r
   @param[in]     GetInfoHandler Handler to get information from guided section.\r
-  @param[in]     DecodeHandler  Handler to extract guided section.
-
-  @retval  RETURN_SUCCESS           Register Guided Section Extract Handler successfully.
+  @param[in]     DecodeHandler  Handler to extract guided section.\r
+\r
+  @retval  RETURN_SUCCESS           Register Guided Section Extract Handler successfully.\r
   @retval  RETURN_OUT_OF_RESOURCES  Resource is not enough to register new Handler. \r
   @retval  RETURN_INVALID_PARAMETER Pointer to Guid value is not valid.\r
 \r
@@ -86,15 +86,15 @@ ExtractGuidedSectionRegisterHandlers (
   IN        EXTRACT_GUIDED_SECTION_DECODE_HANDLER    DecodeHandler\r
   );\r
 \r
-/**
+/**\r
   Get the supported exract guided section Handler guid table, which is maintained\r
   by library. The caller can directly get the guid table \r
   without responsibility to allocate or free this table buffer.  \r
   It will ASSERT () if ExtractHandlerGuidTable = NULL.\r
 \r
-  @param[out]  ExtractHandlerGuidTable   The extract Handler guid pointer list.
+  @param[out]  ExtractHandlerGuidTable   The extract Handler guid pointer list.\r
 \r
-  @return the number of the supported extract guided Handler.
+  @return the number of the supported extract guided Handler.\r
 **/\r
 UINTN\r
 EFIAPI\r
@@ -102,7 +102,7 @@ ExtractGuidedSectionGetGuidList (
   OUT  GUID  **ExtractHandlerGuidTable\r
   );\r
 \r
-/**
+/**\r
   Get information from the guided section. This function first gets the guid value\r
   from guided section header, then match this guid in the registered extract Handler list\r
   to its corresponding getinfo Handler. \r
@@ -110,14 +110,14 @@ ExtractGuidedSectionGetGuidList (
   If found, it will call the getinfo Handler to get the required size and attribute.\r
 \r
   It will ASSERT () if the pointer to OutputBufferSize is NULL.\r
-  It will ASSERT () if the pointer to ScratchBufferSize is NULL.
+  It will ASSERT () if the pointer to ScratchBufferSize is NULL.\r
   It will ASSERT () if the pointer to SectionAttribute is NULL.\r
 \r
   @param[in]  InputSection          Buffer containing the input GUIDed section to be processed. \r
   @param[out] OutputBufferSize      The size of OutputBuffer.\r
   @param[out] ScratchBufferSize     The size of ScratchBuffer.  \r
   @param[out] SectionAttribute      The attribute of the input guided section.\r
-
+\r
   @retval  RETURN_SUCCESS           Get the required information successfully.\r
   @retval  RETURN_UNSUPPORTED       Guided section data is not supported.\r
   @retval  RETURN_INVALID_PARAMETER The input data is not the valid guided section.\r
@@ -132,12 +132,12 @@ ExtractGuidedSectionGetInfo (
   OUT       UINT16  *SectionAttribute   \r
   );\r
 \r
-/**
+/**\r
   Extract data from the guided section. This function first gets the guid value\r
   from guided section header, then match this guid in the registered extract Handler list\r
   to its corresponding extract Handler. \r
   If not found, RETURN_UNSUPPORTED will be return. \r
-  If found, it will call this extract Handler to get output data and AuthenticationStatus.
+  If found, it will call this extract Handler to get output data and AuthenticationStatus.\r
 \r
   It will ASSERT () if the pointer to OutputBuffer is NULL.\r
   It will ASSERT () if the pointer to AuthenticationStatus is NULL.\r
@@ -150,11 +150,11 @@ ExtractGuidedSectionGetInfo (
   @param[out] ScratchBuffer A pointer to a caller-allocated buffer for function internal use. \r
   @param[out] AuthenticationStatus \r
                             A pointer to a caller-allocated UINT32 that indicates the\r
-                            authentication status of the output buffer. 
-
+                            authentication status of the output buffer. \r
+\r
   @retval  RETURN_SUCCESS           Get the output data and AuthenticationStatus successfully.\r
   @retval  RETURN_UNSUPPORTED       Guided section data is not supported to be decoded.\r
-  @retval  RETURN_INVALID_PARAMETER The input data is not the valid guided section.
+  @retval  RETURN_INVALID_PARAMETER The input data is not the valid guided section.\r
 **/\r
 RETURN_STATUS\r
 EFIAPI\r