C++/(MFC)특정 확장자 선택 다이얼로그 템플리트

Full text search for "DC"


Case-sensitive searching
Display context of search results
  • C++/(MFC)SaveBitmapToDirectFile CDC를 Bitmap으로 저장 . . . . 14 matches
         #keywords C++, DC, Bitmap, 함수, MFC
         void SomeClassDoc::SaveBitmapToDirectFile(CDC* pDC, CRect BitmapSize, int BitCount, CString strFilePath)
          CDC dcMem;
          /*----- CDC의 내용을 Bitmap으로 전송 ----*/
          dcMem.CreateCompatibleDC(pDC);
          bmp.CreateCompatibleBitmap(pDC ,BitmapSize.Width(),BitmapSize.Height());
          pOldBmp = (CBitmap*) dcMem.SelectObject(&bmp);
          dcMem.BitBlt( 0,0, BitmapSize.Width(), BitmapSize.Height(), pDC, 0,0, SRCCOPY);
          dcMem.SelectObject(pOldBmp);
          hPal = SelectPalette(pDC->GetSafeHdc(),hPal,FALSE);
          RealizePalette(pDC->GetSafeHdc());
          GetDIBits(pDC->GetSafeHdc(),
          GetDIBits(pDC->GetSafeHdc(),
          SelectPalette(pDC->GetSafeHdc(),hPal,FALSE);
  • C++/새 장치 감지 WM_DEVICECHANGE . . . . 12 matches
          PDEV_BROADCAST_HDR pHdr = (PDEV_BROADCAST_HDR)lParam;
          PDEV_BROADCAST_DEVICEINTERFACE pDevInf;
          PDEV_BROADCAST_HANDLE pDevHnd;
          PDEV_BROADCAST_OEM pDevOem;
          PDEV_BROADCAST_PORT pDevPort;
          PDEV_BROADCAST_VOLUME pDevVolume;
          pDevInf = (PDEV_BROADCAST_DEVICEINTERFACE)pHdr;
          pDevHnd = (PDEV_BROADCAST_HANDLE)pHdr;
          pDevOem = (PDEV_BROADCAST_OEM)pHdr;
          pDevPort = (PDEV_BROADCAST_PORT)pHdr;
          pDevVolume = (PDEV_BROADCAST_VOLUME)pHdr;
  • HTML에 사용되는 색이름 . . . . 12 matches
         <TD style="BACKGROUND: crimson">crimson (#DC143C)</TD>
         <TD style="BACKGROUND: #dc143c">crimson (#DC143C)</TD></TR>
         <TD style="BACKGROUND: cornsilk">cornsilk (#FFF8DC)</TD>
         <TD style="BACKGROUND: #fff8dc">cornsilk (#FFF8DC)</TD></TR>
         <TD style="BACKGROUND: beige">beige (#F5F5DC)</TD>
         <TD style="BACKGROUND: #f5f5dc">beige (#F5F5DC)</TD></TR>
         <TD style="BACKGROUND: gainsboro">gainsboro (#DCDCDC)</TD>
         <TD style="BACKGROUND: #dcdcdc">gainsboro (#DCDCDC)</TD></TR>
  • C++/(Windows)캡처 윈도우 . . . . 9 matches
          CClientDC dc(pWnd);
          CDC dcMem;
          dcMem.CreateCompatibleDC(&dc);
          bitmap.CreateCompatibleBitmap(&dc, rect.Width(), rect.Height());
          CBitmap* bitmapOld = dcMem.SelectObject(&bitmap);
          dcMem.BitBlt(0, 0, rect.Width(), rect.Height(), &dc, 0, 0, SRCCOPY);
          CFont* fontOld = dcMem.SelectObject(&font);
          dcMem.SetBkMode(TRANSPARENT);
          dcMem.SetTextColor(RGB(33, 255, 33));
          dcMem.TextOut(20, rect.Height() - 70, str.GetBuffer(0), str.GetLength());
          dcMem.TextOut(20, rect.Height() - 55, str.GetBuffer(0), str.GetLength());
          //dcMem.TextOut(20, rect.Height() - 40, str.GetBuffer(0), str.GetLength());
          HDC hDC = captureImage.GetDC();
          BitBlt(hDC, 0, 0, rect.Width(), rect.Height(), dcMem.GetSafeHdc(), 0, 0, SRCCOPY);
          captureImage.ReleaseDC();
          dcMem.SelectObject(&bitmapOld);
          dcMem.SelectObject(&fontOld);
          dcMem.DeleteDC();
  • C_Sharp/INI 읽고 쓰기 . . . . 7 matches
         namespace DCShuttle.Classes
          ini.SetIniValue("DCShuttle", "Comment", "True");
          ini.SetIniValue("DCShuttle", "Sound", "True");
          ini.SetIniValue("DCShuttle", "Delay", "5000");
          ini.SetIniValue("DCShuttle", "Gallery", "ani1_new1");
          ini.SetIniValue("DCShuttle", "StopwordsURI", "http://hyacinth.byus.net/dcs/stopwords.txt");
         [DCShuttle]
  • C++/디버그 빌드 힙 스택 메모리 값 . . . . 6 matches
         * 힙에 할당된, 초기화되지 않은 메모리는 '''0xCDCDCDCD'''로 설정된다.
         * 해제된 힙 메모리는 '''0xFEEEFEEE'''로 설정된다. (이후 재할당되면 다시 '''0xCDCDCDCD'''가 된다.)
  • C++/모든 윈도우 메시지 종류 HEX DECIMAL 값 . . . . 6 matches
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>WM_DEADCHAR</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>WM_SYSDEADCHAR</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>WM_IME_ENDCOMPOSITION</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>WM_POWERBROADCAST</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>RB_GETBANDCOUNT</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>IE_GETPAINTDC</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>04dc</P></TD>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>04dc</P></TD>
  • C++/(MFC)CDialog resize . . . . 4 matches
          ChildWndMove(*GetDlgItem(IDC_BTN_RELOAD), diffRect);
          ChildWndMove(*GetDlgItem(IDC_BTN_DELETE), diffRect);
          ChildWndMove(*GetDlgItem(IDC_BTN_DELETEALL), diffRect);
          ChildWndMove(*GetDlgItem(IDC_STATIC_COPYRIGHT), diffRect, TRUE);
  • C++/(MFC)OnSizing 윈도우 리사이징 컨트롤 크기 조정 . . . . 3 matches
         void CLogDialog::DockChildControl(RECT rect)
          GetDlgItem(IDC_STATIC_LINE)->GetWindowRect(&childWndRect);
          GetDlgItem(IDC_STATIC_LINE)->MoveWindow(childWndRect.left, childWndRect.top, childWndRect.Width(), childWndRect.Height());
          GetDlgItem(IDC_STATIC_LINE)->RedrawWindow();
          DockChildControl(rect);
  • IsbnMap . . . . 3 matches
         AladdinMusic http://www.aladdin.co.kr/music/catalog/music.asp?ISBN= http://www.aladdin.co.kr/CDCover/$ISBN2_1.jpg
         {{{[wiki:AladdinMusic:9049741495 http://www.aladdin.co.kr/CDCover/2452436078_1.jpg]}}}
         [wiki:AladdinMusic:9049741495 http://www.aladdin.co.kr/CDCover/2452436078_1.jpg]
  • NT status codes returned . . . . 3 matches
         <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 돋움; font-size: 12px; line-height: 18px; background-color: rgb(255, 255, 255); "><span class="Apple-style-span" style="widows: 2; text-transform: none; text-indent: 0px; border-collapse: separate; font: normal normal normal medium/24px Gulim; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(0, 0, 0); word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><span class="Apple-style-span" style="line-height: 18px; font-family: Gulim, Verdana, Tahoma; color: rgb(51, 51, 51); font-size: 12px; "><h4 id="subjcns!B21C645F6C9CFD52!195" class="beTitle" style="margin-top: 0px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 16px; line-height: 20px; color: rgb(51, 51, 51); ">NT status codes returned</h4><p class="beTitle" style="margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 20px; color: rgb(51, 51, 51); font-size: 16px; "> </p><span class="Apple-style-span" style="widows: 2; text-transform: none; text-indent: 0px; border-collapse: separate; font: normal normal normal medium/normal Gulim; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(0, 0, 0); word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; "><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; ">NT_SUCCESS(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is a success type (0 − 0x3FFFFFFF) or an informational type (0x40000000 − 0x7FFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="d0b6774c-6756-4be2-8399-01e662c7f7b6" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_INFORMATION(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is an informational type (0x40000000 − 0x7FFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="dae1c647-56d7-4462-83da-be8cfb1cb034" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_WARNING(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is a warning type (0x80000000 − 0xBFFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="2931dd35-15a3-4d50-966f-cf94f2899eb7" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_ERROR(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is an error type (0xC0000000 - 0xFFFFFFFF).</dd><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "> </dd></span></span></span></span><p style="margin-top: 2px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 1.5; "> </p><p style="margin-top: 2px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 1.5; "></p><table border="0" cellspacing="0" cellpadding="0" width="531" style="text-align: left; border-collapse: collapse; width: 398pt; "><colgroup><col width="95" style="width: 71pt; "><col width="436" style="width: 327pt; "></colgroup><tbody><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" width="95" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; width: 71pt; height: 16.5pt; border-top-color: windowtext; border-top-width: 0.5pt; border-top-style: solid; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000000</font></td><td class="xl67" width="436" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; width: 327pt; border-top-color: windowtext; border-top-width: 0.5pt; border-top-style: solid; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SUCCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000000</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_0</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_3</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_63</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED_WAIT_0</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">000000BF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED_WAIT_63</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">000000C0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_APC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000100</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KERNEL_APC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000101</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALERTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000102</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000103</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000104</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPARSE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000105</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000106</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_ALL_ASSIGNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000107</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SOME_NOT_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000108</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPLOCK_BREAK_IN_PROGRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000109</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VOLUME_MOUNTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOTIFY_CLEANUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOTIFY_ENUM_DIR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_QUOTAS_FOR_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000110</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_TRANSITION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000111</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_DEMAND_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000112</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_COPY_ON_WRITE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000113</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_GUARD_PAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000114</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_PAGING_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000115</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CACHE_PAGE_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000116</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CRASH_DUMP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000117</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_ALL_ZEROS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000118</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPARSE_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000000</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_WAS_SUSPENDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WORKING_SET_LIMIT_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_NOT_AT_BASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_STATE_CREATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SEGMENT_NOTIFICATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCAL_USER_SESSION_KEY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_CURRENT_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_MORE_WRITES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_RECOVERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_READ_RECOVERY_FROM_BACKUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_WRITE_RECOVERY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_COUNTER_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NULL_LM_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MACHINE_TYPE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_PARTIAL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_EXPEDITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_PARTIAL_EXPEDITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENT_DONE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENT_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CHECKING_FILE_SYSTEM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FATAL_APP_EXIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PREDEFINED_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAS_UNLOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVICE_NOTIFICATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAS_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOG_HARD_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_WIN32</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_UNSIMULATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_CONTINUE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_SINGLE_STEP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_BREAKPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_CONTINUE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_LASTCHANCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_CHAIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_YIELD_PERFORMED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_RESUME_IGNORED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUARD_PAGE_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATATYPE_MISALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BREAKPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SINGLE_STEP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAKE_SYSTEM_DEBUGGER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HANDLES_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_INHERITANCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUID_SUBSTITUTION_MADE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARTIAL_COPY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_PAPER_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_POWERED_OFF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_OFF_LINE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_EAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_EA_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_LIST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_EA_FLAG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VERIFY_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EXTRANEOUS_INFORMATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMIT_NECESSARY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILEMARK_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_CHANGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUS_RESET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_END_OF_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BEGINNING_OF_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SETMARK_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_DATA_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_HAS_OPEN_HANDLES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_HAS_OPEN_HANDLES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LONGJUMP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNSUCCESSFUL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_IMPLEMENTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_INFO_CLASS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INFO_LENGTH_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCESS_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IN_PAGE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_QUOTA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INITIAL_STACK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INITIAL_PC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_CID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_NOT_CANCELED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DEVICE_REQUEST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_END_OF_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEDIA_IN_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNRECOGNIZED_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONEXISTENT_SECTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MORE_PROCESSING_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEMORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONFLICTING_ADDRESSES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_MAPPED_VIEW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_FREE_VM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_DELETE_SECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SYSTEM_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_INSTRUCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOCK_SEQUENCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VIEW_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_FILE_FOR_SECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCESS_DENIED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_TYPE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONCONTINUABLE_EXCEPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DISPOSITION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000027</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNWIND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000028</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_STACK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000029</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_UNWIND_TARGET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARITY_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_DECOMMIT_VM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PORT_ATTRIBUTES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_MESSAGE_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000030</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_MIX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000031</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_QUOTA_LOWER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000032</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000033</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000034</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000035</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_COLLISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000037</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000038</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_ALREADY_ATTACHED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000039</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_SYNTAX_BAD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_OVERRUN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_LATE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CRC_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000040</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_TOO_BIG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000041</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_CONNECTION_REFUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000042</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PORT_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000043</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARING_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000044</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000045</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PAGE_PROTECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000046</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MUTANT_NOT_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000047</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SEMAPHORE_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000048</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_ALREADY_SET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000049</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_NOT_IMAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SUSPEND_COUNT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_IS_TERMINATING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_WORKING_SET_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INCOMPATIBLE_FILE_MAP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_PROTECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EAS_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000050</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_TOO_LARGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000051</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONEXISTENT_EA_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000052</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_EAS_ON_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000053</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000054</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_LOCK_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000055</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCK_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000056</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DELETE_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000057</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CTL_FILE_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000058</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNKNOWN_REVISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000059</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REVISION_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_OWNER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PRIMARY_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_IMPERSONATION_TOKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_DISABLE_MANDATORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LOGON_SERVERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_LOGON_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000060</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_PRIVILEGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000061</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIVILEGE_NOT_HELD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000062</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ACCOUNT_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000063</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000064</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_USER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000065</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GROUP_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000066</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000067</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_IN_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000068</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_NOT_IN_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000069</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LAST_ADMIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILL_FORMED_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOGON_HOURS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000070</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_WORKSTATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000071</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_EXPIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000072</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000073</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONE_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000074</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_LUIDS_REQUESTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000075</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LUIDS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000076</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SUB_AUTHORITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000077</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ACL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000078</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000079</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SECURITY_DESCR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROCEDURE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TOKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INHERITANCE_ACL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RANGE_NOT_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000081</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_NOT_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000082</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_GUIDS_REQUESTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000083</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUIDS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000084</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ID_AUTHORITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000085</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_AGENTS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000086</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VOLUME_LABEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000087</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_NOT_EXTENDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000088</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_MAPPED_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000089</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_DATA_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_TYPE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_NAME_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ARRAY_BOUNDS_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_DENORMAL_OPERAND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_DIVIDE_BY_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_INEXACT_RESULT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000090</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_INVALID_OPERATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000091</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000092</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_STACK_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000093</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_UNDERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000094</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTEGER_DIVIDE_BY_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000095</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTEGER_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000096</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIVILEGED_INSTRUCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000097</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_PAGING_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000098</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000099</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALLOTTED_SPACE_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFFICIENT_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DFS_EXIT_PATH_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_DATA_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_CONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_POWER_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FREE_VM_NOT_AT_BASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMORY_NOT_ALLOCATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WORKING_SET_QUOTA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_WRITE_PROTECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_READY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_GROUP_ATTRIBUTES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_IMPERSONATION_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_OPEN_ANONYMOUS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_VALIDATION_CLASS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_TOKEN_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_MASTER_BOOT_RECORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSTRUCTION_MISALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSTANCE_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PIPE_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_FUNCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_CLOSING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_CONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_READ_MODE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_FORCED_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_NOT_STOPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_COULD_NOT_INTERPRET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_IS_A_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_NOT_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DUPLICATE_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_NETWORK_PATH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_DOES_NOT_EXIST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_COMMANDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADAPTER_HARDWARE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_NETWORK_RESPONSE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_NETWORK_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_REMOTE_ADAPTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRINT_QUEUE_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SPOOL_SPACE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRINT_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_NAME_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_ACCESS_DENIED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DEVICE_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_NETWORK_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_NAMES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SESSIONS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARING_PAUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REQUEST_NOT_ACCEPTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_PAUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NET_WRITE_FAULT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_AT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SAME_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_RENAMED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VIRTUAL_CIRCUIT_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SECURITY_ON_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_WAIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_ACCESS_DOMAIN_INFO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_TERMINATE_SELF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SERVER_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DOMAIN_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DOMAIN_ROLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_DOMAIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPLOCK_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_OPLOCK_PROTOCOL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_DB_CORRUPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GENERIC_NOT_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DESCRIPTOR_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_USER_BUFFER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_IO_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_CREATE_ERR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_MAP_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_EXTEND_ERR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000ED</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_LOGON_PROCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SESSION_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_3</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_4</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_5</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_6</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_7</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_8</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_9</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_10</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_11</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_12</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_STACK_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_PACKAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_FUNCTION_TABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000100</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VARIABLE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000101</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DIRECTORY_NOT_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000102</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000103</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_A_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000104</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_LOGON_SESSION_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000105</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SESSION_COLLISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000106</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NAME_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000107</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILES_OPEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000108</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_IN_USE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000109</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MESSAGE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROCESS_IS_TERMINATING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOGON_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_GUID_TRANSLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_IMPERSONATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_ALREADY_LOADED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_NOT_PRESENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000110</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_LID_NOT_EXIST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000111</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_LID_ALREADY_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000112</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_NOT_LID_OWNER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000113</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_COMMAND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000114</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_LID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000115</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_SELECTOR_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000116</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_SELECTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000117</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LDT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000118</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000119</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_OFFSET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_DESCRIPTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_NE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_INVALID_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMIT_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MAPPED_FILE_SIZE_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_OPENED_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000120</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000121</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_DELETE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000122</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_COMPUTER_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000123</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000124</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000125</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000126</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_USER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000127</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBERS_PRIMARY_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000128</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000129</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_THREADS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_NOT_IN_PROCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOKEN_ALREADY_IN_USE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_COMMITMENT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_LE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_NOT_MZ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000130</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_PROTECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000131</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_WIN_16</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000132</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SERVER_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000133</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIME_DIFFERENCE_AT_DC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000134</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SYNCHRONIZATION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000135</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000136</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPEN_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000137</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_PRIVILEGE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000138</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ORDINAL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000139</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ENTRYPOINT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONTROL_C_EXIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCAL_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LINK_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LINK_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000140</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_CONNECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000141</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000142</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_INIT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000143</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MISSING_SYSTEMFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000144</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNHANDLED_EXCEPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000145</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_APP_INIT_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000146</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_CREATE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000147</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_PAGEFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000148</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000149</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_PASSWORD_CORE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_FLOAT_CONTEXT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_BROKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_CORRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_IO_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_EVENT_PAIR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNRECOGNIZED_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000150</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_NO_DEVICE_INITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000151</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000152</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_NOT_IN_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000153</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_IN_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000154</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALIAS_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000155</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000156</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SECRETS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000157</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECRET_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000158</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_DB_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000159</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FULLSCREEN_MODE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_CONTEXT_IDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_TYPE_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_REGISTRY_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NT_CROSS_ENCRYPTION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_CTRLR_CONFIG_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_MISSING_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000160</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILL_FORMED_SERVICE_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000161</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000162</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNMAPPABLE_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000163</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNDEFINED_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000164</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000165</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_ID_MARK_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000166</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_WRONG_CYLINDER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000167</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_UNKNOWN_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000168</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_BAD_REGISTERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000169</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_RECALIBRATE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_OPERATION_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_RESET_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARED_IRQ_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_ORPHANING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000172</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARTITION_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000173</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_BLOCK_LENGTH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000174</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_PARTITIONED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000175</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_LOCK_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000176</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_UNLOAD_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000177</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EOM_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000178</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KEY_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LOG_SPACE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SIDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LM_CROSS_ENCRYPTION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000180</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KEY_HAS_CHILDREN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000181</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CHILD_MUST_BE_VOLATILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000182</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_CONFIGURATION_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000183</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000184</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DEVICE_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000185</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_DEVICE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000186</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_PROTOCOL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000187</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BACKUP_CONTROLLER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000188</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOG_FILE_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000189</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_LATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TRUST_LSA_SECRET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TRUST_SAM_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUSTED_DOMAIN_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUSTED_RELATIONSHIP_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_FILE_CORRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_CANT_START</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000190</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUST_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000191</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MUTANT_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000192</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETLOGON_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000193</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_EXPIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000194</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_POSSIBLE_DEADLOCK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000195</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_CREDENTIAL_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000196</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_SESSION_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000197</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_FILE_CHANGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000198</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000199</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_SERVER_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_TRUST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FS_DRIVER_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000202</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_USER_SESSION_KEY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000203</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_SESSION_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000204</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_LANG_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000205</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFF_SERVER_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000206</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_BUFFER_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000207</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS_COMPONENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000208</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS_WILDCARD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000209</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_ADDRESSES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_ALREADY_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_RESET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_NODES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000210</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_TIMED_OUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000211</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_NO_RELEASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000212</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_NO_MATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000213</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_RESPONDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000214</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_INVALID_ID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000215</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_INVALID_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000216</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SERVER_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000217</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_CLIENT_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000218</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_LOAD_REGISTRY_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000219</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEBUG_ATTACH_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SYSTEM_PROCESS_TERMINATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_NOT_ACCEPTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_BROWSER_SERVERS_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VDM_HARD_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_CANCEL_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPLY_MESSAGE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000220</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MAPPED_ALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000221</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_CHECKSUM_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000222</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOST_WRITEBEHIND_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000223</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CLIENT_SERVER_PARAMETERS_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000224</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_MUST_CHANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000225</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000226</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_TINY_STREAM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000227</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECOVERY_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000228</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_STACK_OVERFLOW_READ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000229</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FAIL_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DUPLICATE_OBJECTID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECTID_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONVERT_TO_LARGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RETRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FOUND_OUT_OF_SCOPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALLOCATE_BUCKET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000230</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROPSET_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000231</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MARSHALL_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000232</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VARIANT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000233</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_CONTROLLER_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000234</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_LOCKED_OUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000235</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HANDLE_NOT_CLOSABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000236</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_REFUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000237</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GRACEFUL_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000238</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_ALREADY_ASSOCIATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000239</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_NOT_ASSOCIATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HOST_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROTOCOL_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000240</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REQUEST_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000241</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000242</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_COMPRESSION_BUFFER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000243</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_MAPPED_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000244</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_AUDIT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000245</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_RESOLUTION_NOT_SET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000246</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_COUNT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000247</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGIN_TIME_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000248</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGIN_WKSTA_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000249</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MP_UP_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000250</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFFICIENT_LOGON_INFO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000251</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DLL_ENTRYPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000252</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_SERVICE_ENTRYPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000253</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LPC_REPLY_LOST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000254</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IP_ADDRESS_CONFLICT1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000255</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IP_ADDRESS_CONFLICT2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000256</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_QUOTA_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000257</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PATH_NOT_COVERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000258</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_CALLBACK_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000259</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LICENSE_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_TOO_SHORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_TOO_RECENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_HISTORY_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PLUGPLAY_NO_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNSUPPORTED_COMPRESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000260</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_HW_PROFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000261</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PLUGPLAY_DEVICE_PATH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000262</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_ORDINAL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000263</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_ENTRYPOINT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000264</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_NOT_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000265</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_LINKS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000266</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_QUOTA_LIST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000267</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_IS_OFFLINE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000268</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVALUATION_EXPIRATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000269</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_DLL_RELOCATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LICENSE_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_INIT_FAILED_LOGOFF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_UNABLE_TO_LOAD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DFS_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VOLUME_DISMOUNTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000270</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_FLOAT_STACK_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0009898</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WOW_ASSERTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_STRING_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_KIND_OF_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTSEQ_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_RPC_PROTSEQ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_STRING_UUID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_ENDPOINT_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NET_ADDR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_ENDPOINT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_OBJECT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ALREADY_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_TYPE_ALREADY_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ALREADY_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PROTSEQS_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_MGR_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_IF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_BINDINGS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PROTSEQS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CANT_CREATE_ENDPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_OUT_OF_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SERVER_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SERVER_TOO_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NETWORK_OPTIONS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_CALL_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_FAILED_DNE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTOCOL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_TRANS_SYN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_TAG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_BOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_ENTRY_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NAME_SYNTAX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_NAME_SYNTAX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020028</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UUID_NO_ADDRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020029</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_DUPLICATE_ENDPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_MAX_CALLS_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_STRING_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTSEQ_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROCNUM_OUT_OF_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BINDING_HAS_NO_AUTH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020030</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020031</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020032</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_AUTH_IDENTITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020033</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHZ_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020034</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_INVALID_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020035</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_CANT_PERFORM_OP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020036</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_NOT_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020037</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOTHING_TO_EXPORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020038</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INCOMPLETE_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020039</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_VERS_OPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_MEMBERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_ALL_OBJS_UNEXPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INTERFACE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENTRY_ALREADY_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENTRY_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NAME_SERVICE_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020040</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NAF_ID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020041</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CANNOT_SUPPORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020042</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_CONTEXT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020043</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020044</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ZERO_DIVIDE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020045</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ADDRESS_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020046</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_DIV_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020047</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_UNDERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020048</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CHAR_TRANS_OPEN_FAIL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CHAR_TRANS_SHORT_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_IN_NULL_CONTEXT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CONTEXT_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CONTEXT_DAMAGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_HANDLES_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CANNOT_GET_CALL_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NULL_REF_POINTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENUM_VALUE_OUT_OF_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BYTE_COUNT_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BAD_STUB_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020049</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_IN_PROGRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_BINDINGS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_GROUP_MEMBER_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_CANT_CREATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_INTERFACES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020050</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020051</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BINDING_INCOMPLETE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020052</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_COMM_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020053</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_AUTHN_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020054</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PRINC_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020055</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_RPC_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40020056</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UUID_LOCAL_ONLY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020057</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SEC_PKG_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020058</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030059</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_ES_ACTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_ES_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_STUB_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_PIPE_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_PIPE_OPERATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_PIPE_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333"><font face="Verdana">400200AF</font></font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SEND_INCOMPLETE</font></td></tr></tbody></table></span>
  • omr1/404/01 . . . . 3 matches
          boost::regex exp_body("DCM_BODY-->"); // 기사 본문 구문
          expression.assign("<!--DCM_TITLE--><b>(.*)</b><!--/DCM_TITLE-->");
  • C++/(Shell)프로세스 아이콘 가져오기 . . . . 2 matches
         ::DrawIconEx(pDC->m_hDC, 0, 0, psfi->hIcon, 32, 32, 0, NULL, DI_IMAGE | DI_MASK);
  • C++/(Windows)파일 처리 . . . . 2 matches
         공통된 부분이 없다면 pszPath는 NULL로 설정된다.</p></blockquote><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#0000ff" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">BOOL PathCompactPath( HDC <em style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">hDC</em>, LPTSTR <em style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">lpszPath</em>, UINT <em style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">dx</em> );</font></p><blockquote dir="ltr" style="margin: 5px 0px 5px 5px; padding: 0px 0px 0px 16px; border: 0px; line-height: 1.3; font-family: 돋움, Dotum, AppleGothic, sans-serif; background-image: url(http://ts.daumcdn.net/custom/blog/29/294052/skin/images/iconBlockquote.gif); background-position: initial initial; background-repeat: no-repeat no-repeat;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"></font><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">Truncates a file path to fit within a given pixel width by replacing path components with ellipses.</font></p><p dir="ltr" style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;">lpszPath에 포함된 경로 문자열을 dx pixel 크기에 출력하기 적절하게 잘라준다.
         PathUnquoteSpaces("\"c:\temp\"") = c:\temp</p></blockquote><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#0000ff" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">BOOL SHSkipJunction( IBindCtx *pbc, const CLSID *pclsid );</font></p><blockquote dir="ltr" style="margin: 5px 0px 5px 5px; padding: 0px 0px 0px 16px; border: 0px; line-height: 1.3; font-family: 돋움, Dotum, AppleGothic, sans-serif; background-image: url(http://ts.daumcdn.net/custom/blog/29/294052/skin/images/iconBlockquote.gif); background-position: initial initial; background-repeat: no-repeat no-repeat;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"></font><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">Checks a bind context to see if it is safe to bind to a particular component object.</font></p><p dir="ltr" style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;">...이놈은 당최 뭐에 쓰라는건지 모르겠다 -_-;</p></blockquote><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#0000ff" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">HRESULT UrlApplyScheme( LPCTSTR pszIn, LPTSTR pszOut, LPDWORD pcchOut, DWORD dwFlags );</font></p><blockquote dir="ltr" style="margin: 5px 0px 5px 5px; padding: 0px 0px 0px 16px; border: 0px; line-height: 1.3; font-family: 돋움, Dotum, AppleGothic, sans-serif; background-image: url(http://ts.daumcdn.net/custom/blog/29/294052/skin/images/iconBlockquote.gif); background-position: initial initial; background-repeat: no-repeat no-repeat;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"></font><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">Determines a scheme for a specified URL string, and returns a string with an appropriate prefix.</font></p><p dir="ltr" style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;">경로앞에 적절한 scheme를 붙여준다. (http://, file:///, ftp:// 등)
  • C++/RGB 히스토그램 . . . . 2 matches
          CClientDC dc(this);
          CPen *oldPen = dc.SelectObject(&pen);
          dc.Rectangle(x, y, x + width, y + height);
          dc.SelectObject(oldPen);
          if (((CButton*)GetDlgItem(IDC_RADIO1))->GetCheck() == TRUE)
          oldPen = dc.SelectObject(&penData);
          dc.MoveTo(x + i, y + height - 2);
          dc.LineTo(x + i, y + height - (data_print[i] > height ? height : data_print[i]) - 1);
          dc.SelectObject(oldPen);
  • 일출 . . . . 2 matches
         attachment:"[JK] Vividred Operation - 01v0 [720p][7C97DCF0].mkv_20130112_001109.099.jpg"
         attachment:"[JK] Vividred Operation - 01v0 [720p][7C97DCF0].mkv_20130112_001231.516.jpg"
  • 한글화/완료 및 진행중인 작품 . . . . 2 matches
         코믹파티 DCE.Comic Party DCE.2003 - 아르카디아 스튜디오
  • AnimeReleased/2013년 7월 신작 . . . . 1 match
         <img src="http://cfile5.uf.tistory.com/image/2729A348518BA07327DC2B" style="padding: 0px; margin: 0px; border: 0px; vertical-align: middle;"></div><div style="padding: 0px; margin: 0px; font-size: 13px; line-height: 20px; background-color: rgb(255, 255, 255);">
  • Blog/2016-05 . . . . 1 match
         https://lh3.googleusercontent.com/IKAqP6BA5RaSTaF2bpPO46mCYcFjt8uU2KqLeyJ3nR4ZTyUbD6_Glh5A4lbApYrbNFcDIGv79I8aV48JEEI9fYT_3fpKwQFyhlvb7OirNjV3awjHwjJ7jWeu6pOuvWrXqTylJKM0ZXj5KPuHmpMPQyzDCyIBj4dcHtznasIpRAkN1XYBhs6HkKNgVFCUyvgJGkmj5rakZyD7tsX45xKAEpIRisxgUGIU8368AOIlnovh6OaUiZL9XCUcsm3i7AL5xk-gEuzep39FCpbgoHW3Bw6DHUgtv3gAIsPjtLPIqYx3uz-nKCu2wSZs-TAUO6ZFLIHdLa1Knl2-a7xnoQPJtgamthsZf3XWmkKjvA9H9hc43ItvepVeqDLDpp1bDl2w73N7dDFxC_68ABdeFL-Ucat1kxRtCAwC9tr3BSMydubFHWKqeJ6-fkoIipp3RgGbjYnhrJwplQUDQMMsOMf17GC6muZCc6OpyGmTL8CUBUhnf12EFUHvRGwnRP6tl3s6IYX5hpMQA25tTBc12TZVq1tBGek4aXmSSihIh4dc3g7tFbVCeJM0sG0oQf7a42Kv2iyyTOxVYm6v7StCe4MslG1o3dWt3w0u=w1833-h1031-no&.jpg?width=800
         https://lh3.googleusercontent.com/jsCzYA3nAwQ_oLRe7WQPrOYE_S0wMGFoDkuip3jPMHXJQtmQqHpUDlFgKoXg8DEnHHaGiLuHWqUxI_X40LWUf5eILFXQDctjzAlH95cRrVPdOa5pIFfUhbDhNRDqj99cqc1mMDKRGCou56bDa9hexfOMyY9W7HiDoLrFzQXNOxnf4F1vGAEw8h2O0nxA51huDQoOkGzK1V5vPdgn-vjf-jJ0srsphwfkVz_JWhPzVhM_0dnUgG0m5qKkgT6ThAEN_h6U0ZecHK--JZTSYiF5_uYg4YwDgfPEHYgHcuSAN4089RMSflFDy8eUJchpKV3XLZl53yviM9asxvkUX_7NF4Jrnhre-exvH-u3tVIb0K-5KGQEKRLZgKM6xXF08oxSUWECZ5bWu-xLzJYZijTMjaSQBj7rFOJf8L18-rXkAx0quq28JyExQB3eIc0UalSLpT8uzpjQHCgpCKlKWkl9oONblh873BlYtdXTk9iJqhijU4quOWw4ihUT4rBzQYbvVHZpMF16dO08tAu6-j1SorHpKnK9lRwLyoL21CvYCK2huOjhaBvSMuoEz-5PupCulplZ2dYcbtPH8xVhyj6TNwv0HTRbRCrG=w1833-h1031-no&.jpg?width=800
  • Blog/2017-06 . . . . 1 match
         https://pbs.twimg.com/media/DCCZKJmUIAEfRXd.jpg
  • C++ . . . . 1 match
         ["/(MFC)SaveBitmapToDirectFile CDC를 Bitmap으로 저장"]
  • C++/(Gdiplus)BitmapArray to HBITMAP . . . . 1 match
         hbmReturn = CreateDIBitmap(pDC->GetSafeHdc(), bmih, CBM_INIT, bits, bmi, DIB_RGB_COLORS);
  • C++/(MFC)콤보박스의 Edit 부분 readonly . . . . 1 match
         CWnd *p_combo = GetDlgItem(IDC_COMBO1);
  • C++/SAL 표준 표식 언어 . . . . 1 match
         </p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">// e.g. void AppendCharRange( _Pre_count_(cchFrom) const char* rgFrom, size_t cchFrom, _Out_z_cap_(cchTo) char* szTo, size_t cchTo );</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">// Valid buffer extent described by another parameter</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">#define _Pre_count_(size)                _Pre2_impl_(_$notnull,  _$count(size))       _Deref_pre1_impl_(_$valid)</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">#define _Pre_opt_count_(size)            _Pre2_impl_(_$maybenull,_$count(size))       _Deref_pre1_impl_(_$valid)</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">#define _Pre_bytecount_(size)            _Pre2_impl_(_$notnull,  _$bytecount(size))   _Deref_pre1_impl_(_$valid)</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">#define _Pre_opt_bytecount_(size)        _Pre2_impl_(_$maybenull,_$bytecount(size))   _Deref_pre1_impl_(_$valid)</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">
         </p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; "> void MyPaintingFunction(</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __in HWND hwndControl,               -- An initialized read-only parameter.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __in_opt HDC hdcOptional,            -- An initialized read-only parameter that might be NULL.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __inout IPropertyStore *ppsStore     -- An initialized parameter that may be freely used</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">                                          --   and modified.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; "> );</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">
  • C++/컴파일러의 변수에 대한 최적화 . . . . 1 match
         데드 코드 제거(Dead code elimination, DCE)는 컴파일러 최적화 기법 중 하나로, 실행되지 않거나 프로그램에 영향을 주지 않는 코드를 제거하는 과정입니다. 데드 코드 제거를 통해 프로그램의 크기를 줄이고 실행 속도를 향상시킬 수 있습니다.
  • InterWikiIcons . . . . 1 match
          * Wiki:WardCunningham
          * [[Icon(moin-new.gif)]][http://www.worrynet.com/jandi/wiki.cgi/%C0%DC%B5%F0%B9%E7 Jandi] - http://puzzlet.org/imgs/jandi-16.png (16x16x16M)
  • JavaScript/MD5 SHA-1 SHA-256 SHA-512 . . . . 1 match
          if(0xD800 <= x && x <= 0xDBFF && 0xDC00 <= y && y <= 0xDFFF)
          var oldc = c;
          c = safe_add(c, oldc);
  • LocalKeywords . . . . 1 match
         C++ DC Bitmap 함수 MFC
  • PictureMap . . . . 1 match
         P7110099.jpg https://i.postimg.cc/TPLDcJPr/P7110099.jpg
         IMG_7744.jpg https://i.postimg.cc/FKYZ5GdC/IMG-7744.jpg
         VE_5.gif https://i.postimg.cc/43KmDCNG/VE-5.gif
  • irc logs/2013-2017 . . . . 1 match
         [23:35:40] 18<loudColour18> 헉 조용하당
         [23:55:55] 24* loudColour (loudcolour@121.169.90.6724)님이 나갔습니다
         [10:10:46] 19* 현재 22#dcmath에서 대화중입니다
         [11:32] 20<hyacinth^afk>30 4월 4일 (토) : AiRI / OLDCODEX / 키타 슈헤이 / ZAQ / JAM Project / 하타 아키 / 미사토 아키 / yozuca*
         [21:36] * Haruna (~AndChat71@175.244.166.77) 종료 (Quit: Bye)
  • あ・る・ぴ・じ♪ . . . . 1 match
         [[HTML(<iframe width="640" height="360" src="http://www.youtube.com/embed/xuADCb2zsdA" frameborder="0" allowfullscreen></iframe>)]]
  • 미즈키 나나 . . . . 1 match
         [[HTML(<embed src="http://cfile10.uf.tistory.com/original/136B84264B373EA98DC36D" width="450" height="270" wmode="transparent" type="application/x-shockwave-flash" style="font-family: gulim; line-height: 23px; "><span style="font-family: gulim; line-height: 23px; "> </span>)]]
  • 미쿠 . . . . 1 match
         [[HTML(<EMBED width=800 height=480 type=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer src=http://tabris17l.tistory.com/attachment/cfile25.uf@1851824A505E7EDC315CF8.swf wmode="transparent" bufferlength="0" allowfullscreen="true" autostart="true" flashvars="file=http://cfs.tistory.com/custom/blog/64/643285/skin/images/Umu_694_1.xml&skin=http://cfs.tistory.com/custom/blog/64/643285/skin/images/skin.swf&repeat=list&repeat=always&autostart=true&logo.file=http://cfs.tistory.com/custom/blog/64/643285/skin/images/tabris_logo.png&logo.link=http://tabris17l.tistory.com/&logo.hide=false&icons=false"> <br /><span id="callbacknesttabris17ltistorycom22459837" style="width:1px; height:1px; float:right">)]]
  • 스파이 박스 . . . . 1 match
         http://images.akamai.steamusercontent.com/ugc/449581922344055178/652D87157BD4ABDC49C8F503E01636DB19EAA576/&.jpg
  • 유니코드에 대해 . . . . 1 match
         BMP를 벗어나는 문자는 서러게이트(Surrogate) 문자 영역에 해당하는 두 개의 16비트 문자로 변환되어 한 쌍(즉 32비트)이 그 문자를 표현한다. 유니코드의 기본 다국어 평면에 문자가 전혀 배정되어 있지 않은 영역이 2군데가 있는데 하나는 110110으로 시작하는 영역으로 U+D800부터 U+DB7F까지이고 다른 하나는 110111으로 시작하는 영역으로 U+DC00부터 U+DFFF까지의 영역이다. 전자는 High Surrogate 영역, 후자는 Low Surrogate 영역이라고 부른다. 따라서 UTF-16에서 110110이나 110111로 시작하는 경우 기본 다국어 평면 이외 문자라고 확신할 수 있을 것이다.
Found 35 matching pages out of 1201 total pages

You can also click here to search title.