您的位置:首页 > 其它

准确看看 user32.dll 里有哪些导出函数(win7-32)

2015-09-15 17:46 106 查看
看看 user32.dll里有哪些导出函数,大家都会,但准确性???以MS dumpbin为标准,要做出来结果一模一样,才表示代码完全正确。

直接上代码:

// ListExport.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <windows.h>
#include <winnt.h>

extern "C" DWORD _stdcall _RVAToOffset(DWORD  _lpFileHead,DWORD _dwRVA);
extern "C" DWORD _stdcall _OffsetToRVA(DWORD _lpFileHead,DWORD _dwOffset);
extern "C" DWORD _stdcall _getRVASectionName(DWORD _lpFileHead,DWORD _dwRVA);

HANDLE m_file;
HANDLE m_map;
LPVOID m_base;

LPVOID RvaToPtr(DWORD dwBase,DWORD dwRVA)
{
DWORD dd=_RVAToOffset(dwBase,dwRVA);
dd=dd+dwBase;
return (LPVOID)dd;
}

bool LoadPE()
{
bool bret=false;
wchar_t pwch[]=L"C:\\Windows\\System32\\user32.dll";
m_file=CreateFile(pwch,
GENERIC_READ ,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_ARCHIVE,
NULL);
if(m_file==INVALID_HANDLE_VALUE)
return bret;
m_map=CreateFileMapping(m_file,
NULL,PAGE_READONLY,
0,0,0);
if (m_map==NULL)
{
CloseHandle(m_file);
return bret;
}
m_base=MapViewOfFile(m_map,
FILE_MAP_READ,
0,0,0);
if(m_base==NULL)
{
CloseHandle(m_map);
CloseHandle(m_file);
return bret;
}
bret=true;
return bret;
}

void UnloadPE()
{
UnmapViewOfFile(m_base);
CloseHandle(m_map);
CloseHandle(m_file);
}

void ListExport()
{
DWORD dbase=(DWORD)m_base;
PIMAGE_DOS_HEADER dos=(PIMAGE_DOS_HEADER)dbase;
PIMAGE_NT_HEADERS nt=(PIMAGE_NT_HEADERS)(dbase+dos->e_lfanew);
PIMAGE_EXPORT_DIRECTORY exp=(PIMAGE_EXPORT_DIRECTORY)(RvaToPtr(dbase,nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress));
PDWORD pdwNames,pdwRvs;
PWORD pwOrds;
pdwNames=(PDWORD)RvaToPtr(dbase,exp->AddressOfNames);
pdwRvs=(PDWORD)RvaToPtr(dbase,exp->AddressOfFunctions);
pwOrds=(PWORD)RvaToPtr(dbase,exp->AddressOfNameOrdinals);
if (!pdwRvs)
return;
DWORD iNumOfNames=exp->NumberOfNames;
bool bIsByName=false;
char szExportByOrd[]="[NONAME]";
char buf[2000],*pbuf;

char *szFuncName;
DWORD i,j,hint=-1;
pbuf=buf;
printf("Export Function Table vs MS dumpbin exports v0.0001.....\n\n\n ordinal   hint    RVA        name\n");
for (i=0;i<exp->NumberOfFunctions;i++)
{
if(*pdwRvs)
{
bIsByName=false;
for (j=0;j<iNumOfNames;j++)
{
if(i==pwOrds[j])
{
bIsByName=true;
break;
}
}
if (bIsByName)
{
++hint;
szFuncName=(char*)RvaToPtr(dbase,pdwNames[j]);
printf("%8ld   %4lx    %08lx   %s\n",exp->Base+i,hint,*pdwRvs,szFuncName);
}
else
{
szFuncName=szExportByOrd;
int ilen=sprintf(pbuf,"%8ld           %08lx   %s\n",exp->Base+i,*pdwRvs,szFuncName);
pbuf=pbuf+ilen;
}
}
++pdwRvs;
}
printf("%s\n",buf);

}

int _tmain(int argc, _TCHAR* argv[])
{
if (LoadPE())
{
ListExport();
UnloadPE();
}
getchar();
return 0;
}


看结果:

Export Function Table vs MS dumpbin exports v0.0001.....

ordinal   hint    RVA        name
1502      0    00008203   ActivateKeyboardLayout
1503      1    000649a5   AddClipboardFormatListener
1504      2    000270a4   AdjustWindowRect
1505      3    000148ba   AdjustWindowRectEx
1506      4    00065598   AlignRects
1507      5    0004c292   AllowForegroundActivation
1508      6    00007b60   AllowSetForegroundWindow
1509      7    00030620   AnimateWindow
1510      8    000627ee   AnyPopup
1511      9    00063aa3   AppendMenuA
1512      a    0001175c   AppendMenuW
1513      b    000312de   ArrangeIconicWindows
1514      c    00036b54   AttachThreadInput
1515      d    0000a6a6   BeginDeferWindowPos
1516      e    00015d14   BeginPaint
1517      f    00036a99   BlockInput
1518     10    0003040b   BringWindowToTop
1519     11    00063b4a   BroadcastSystemMessage
1520     12    00063b4a   BroadcastSystemMessageA
1521     13    00063b23   BroadcastSystemMessageExA
1522     14    00004255   BroadcastSystemMessageExW
1523     15    00007cb8   BroadcastSystemMessageW
1524     16    0006042d   BuildReasonArray
1525     17    00014d55   CalcMenuBar
1526     18    0001ee86   CalculatePopupWindowPosition
1527     19    00063eec   CallMsgFilter
1528     1a    00063eec   CallMsgFilterA
1529     1b    000140c2   CallMsgFilterW
1530     1c    0000abe1   CallNextHookEx
1531     1d    00032bd3   CallWindowProcA
1532     1e    00011b3c   CallWindowProcW
1533     1f    0004fd1b   CancelShutdown
1534     20    0004beb2   CascadeChildWindows
1535     21    0005b931   CascadeWindows
1536     22    0003147c   ChangeClipboardChain
1537     23    00064102   ChangeDisplaySettingsA
1538     24    0002627a   ChangeDisplaySettingsExA
1539     25    0004fa39   ChangeDisplaySettingsExW
1540     26    00026181   ChangeDisplaySettingsW
1541     27    0005bca1   ChangeMenuA
1542     28    0005bbfc   ChangeMenuW
1543     29    0000e248   ChangeWindowMessageFilter
1544     2a    000124c8   ChangeWindowMessageFilterEx
1545     2b    00013bf0   CharLowerA
1546     2c    00013b3a   CharLowerBuffA
1547     2d    00013afe   CharLowerBuffW
1548     2e    0000ba8a   CharLowerW
1549     2f    0000c861   CharNextA
1557     30    0006205f   CharNextExA
1558     31    00010be6   CharNextW
1559     32    0000c8be   CharPrevA
1560     33    00062096   CharPrevExA
1561     34    0000c816   CharPrevW
1562     35    000098a7   CharToOemA
1563     36    0000624b   CharToOemBuffA
1564     37    0005f11f   CharToOemBuffW
1565     38    0005f0c8   CharToOemW
1566     39    0001ecae   CharUpperA
1567     3a    0001ecef   CharUpperBuffA
1568     3b    0001ebd5   CharUpperBuffW
1569     3c    0001e981   CharUpperW
1570     3d    00008d3d   CheckDesktopByThreadId
1571     3e    0002ebfe   CheckDlgButton
1572     3f    0002ee7c   CheckMenuItem
1573     40    000225df   CheckMenuRadioItem
1574     41    0002ecf5   CheckRadioButton
1575     42    00064a1d   CheckWindowThreadDesktop
1576     43    0004b6aa   ChildWindowFromPoint
1577     44    0002f624   ChildWindowFromPointEx
1578     45    000491ed   CliImmSetHotKey
1579     46    0001d90b   ClientThreadSetup
1580     47    00011316   ClientToScreen
1581     48    0001f8f7   ClipCursor
1582     49    0003446c   CloseClipboard
1583     4a    0000c4ce   CloseDesktop
1584     4b    0004b38a   CloseGestureInfoHandle
1585     4c    0004d42e   CloseTouchInputHandle
1586     4d    0004bed3   CloseWindow
1587     4e    0000c6f2   CloseWindowStation
1588     4f    0001ced1   ConsoleControl
1589     50    0002688c   ControlMagnification
1590     51    0002af0b   CopyAcceleratorTableA
1591     52    00033412   CopyAcceleratorTableW
1592     53    00034119   CopyIcon
1593     54    000087a6   CopyImage
1594     55    00014ad9   CopyRect
1595     56    0003470a   CountClipboardFormats
1596     57    00026e79   CreateAcceleratorTableA
1597     58    00009794   CreateAcceleratorTableW
1598     59    00036232   CreateCaret
1599     5a    00024489   CreateCursor
1600     5b    0004bd9e   CreateDesktopA
1601     5c    0004bcac   CreateDesktopExA
1602     5d    000040f8   CreateDesktopExW
1603     5e    000040cf   CreateDesktopW
1604     5f    0002721d   CreateDialogIndirectParamA
1605     60    00035327   CreateDialogIndirectParamAorW
1606     61    0002ea10   CreateDialogIndirectParamW
1607     62    00021f42   CreateDialogParamA
1608     63    00035630   CreateDialogParamW
1609     64    00027510   CreateIcon
1610     65    0004d2b6   CreateIconFromResource
1611     66    0000de11   CreateIconFromResourceEx
1612     67    0000a7ab   CreateIconIndirect
1613     68    00028714   CreateMDIWindowA
1614     69    000267cb   CreateMDIWindowW
1615     6a    00036aed   CreateMenu
1616     6b    0000867c   CreatePopupMenu
1617     6c    00062828   CreateSystemThreads
1618     6d    0000bf40   CreateWindowExA
1619     6e    0000ec7c   CreateWindowExW
1620     6f    0004c8f4   CreateWindowStationA
1621     70    0000164c   CreateWindowStationW
1622     71    000042b4   CsrBroadcastSystemMessageExW
1623     72    00001c4f   CtxInitUser32
1624     73    00063934   DdeAbandonTransaction
1625     74    00057291   DdeAccessData
1626     75    000575f5   DdeAddData
1627     76    0006323c   DdeClientTransaction
1628     77    00057a4b   DdeCmpStringHandles
1629     78    0004eb5b   DdeConnect
1630     79    0004ee71   DdeConnectList
1631     7a    00025d42   DdeCreateDataHandle
1632     7b    000269ec   DdeCreateStringHandleA
1633     7c    00005e1a   DdeCreateStringHandleW
1634     7d    0004ed59   DdeDisconnect
1635     7e    0004edd0   DdeDisconnectList
1636     7f    0004a70a   DdeEnableCallback
1637     80    00025ddc   DdeFreeDataHandle
1638     81    00032d00   DdeFreeStringHandle
1639     82    00024d50   DdeGetData
1640     83    00050f78   DdeGetLastError
1641     84    0004e5b9   DdeGetQualityOfService
1642     85    00050fb9   DdeImpersonateClient
1643     86    000269ac   DdeInitializeA
1644     87    00005df2   DdeInitializeW
1645     88    00057b0b   DdeKeepStringHandle
1646     89    00006a01   DdeNameService
1647     8a    00062f2d   DdePostAdvise
1648     8b    00063756   DdeQueryConvInfo
1649     8c    0004e6f8   DdeQueryNextServer
1650     8d    00057b98   DdeQueryStringA
1651     8e    00025aef   DdeQueryStringW
1652     8f    0004ec06   DdeReconnect
1653     90    0004e5b9   DdeSetQualityOfService
1654     91    000638d9   DdeSetUserHandle
1655     92    00057303   DdeUnaccessData
1656     93    00032bf7   DdeUninitialize
1657     94    000271e4   DefDlgProcA
1658     95    00035bc1   DefDlgProcW
1659     96    000325b7   DefFrameProcA
1660     97    0003152b   DefFrameProcW
1661     98    000325db   DefMDIChildProcA
1662     99    0003150a   DefMDIChildProcW
1663     9a    0004cc17   DefRawInputProc
1664     9b    0000bb1c   DefWindowProcA
1665     9c    0001507d   DefWindowProcW
1666     9d    0000a6c8   DeferWindowPos
1667     9e    000083c2   DeleteMenu
1668     9f    00023c5e   DeregisterShellHookWindow
1669     a0    000362e5   DestroyAcceleratorTable
1670     a1    000363c0   DestroyCaret
1671     a2    0000a77f   DestroyCursor
1672     a3    0000a77f   DestroyIcon
1673     a4    000087f7   DestroyMenu
1674     a5    00060071   DestroyReasons
1675     a6    0000b2f4   DestroyWindow
1676     a7    000041bf   DeviceEventWorker
1677     a8    0004d274   DialogBoxIndirectParamA
1678     a9    00033b40   DialogBoxIndirectParamAorW
1679     aa    00033b7f   DialogBoxIndirectParamW
1680     ab    0004cf42   DialogBoxParamA
1681     ac    00023b9b   DialogBoxParamW
1682     ad    000059bd   DisableProcessWindowsGhosting
1683     ae    00012e32   DispatchMessageA
1684     af    0001cc61   DispatchMessageW
1685     b0    0001f026   DisplayConfigGetDeviceInfo
1686     b1    000648a5   DisplayConfigSetDeviceInfo
1687     b2    0004ff97   DisplayExitWindowsWarnings
1688     b3    00059eab   DlgDirListA
1689     b4    0004e1ac   DlgDirListComboBoxA
1690     b5    0004e239   DlgDirListComboBoxW
1691     b6    00059f39   DlgDirListW
1692     b7    0004e26a   DlgDirSelectComboBoxExA
1693     b8    0004e154   DlgDirSelectComboBoxExW
1694     b9    0005a0fc   DlgDirSelectExA
1695     ba    0005a162   DlgDirSelectExW
1696     bb    00003e69   DoSoundConnect
1697     bc    00064a31   DoSoundDisconnect
1698     bd    00064a43   DragDetect
1699     be    00064a57   DragObject
1700     bf    00064a6b   DrawAnimatedRects
1701     c0    0005ee36   DrawCaption
1702     c1    00063fbe   DrawCaptionTempA
1703     c2    0004fa79   DrawCaptionTempW
1704     c3    0001311a   DrawEdge
1705     c4    00033091   DrawFocusRect
1706     c5    0001ee9a   DrawFrame
1707     c6    0002b4f9   DrawFrameControl
1708     c7    00006427   DrawIcon
1709     c8    00012c32   DrawIconEx
1710     c9    000315ae   DrawMenuBar
1711     ca    0005bd65   DrawMenuBarTemp
1712     cb    0005c1a5   DrawStateA
1713     cc    00033588   DrawStateW
1714     cd    0002ae29   DrawTextA
1715     ce    0002ae60   DrawTextExA
1716     cf    00015894   DrawTextExW
1717     d0    00015b6a   DrawTextW
1718     d1    000263e6   DwmGetDxSharedSurface
1719     d2    00004fba   DwmStartRedirection
1720     d3    000261a9   DwmStopRedirection
1721     d4    0002b6cb   EditWndProc
1722     d5    0002290c   EmptyClipboard
1723     d6    000343bc   EnableMenuItem
1724     d7    000319ce   EnableScrollBar
1725     d8    00008d02   EnableWindow
1726     d9    0000a67a   EndDeferWindowPos
1727     da    00033ba3   EndDialog
1728     db    00008302   EndMenu
1729     dc    00015d42   EndPaint
1730     dd    0004fd66   EndTask
1731     de    0005fa1b   EnterReaderModeHelper
1732     df    00012948   EnumChildWindows
1733     e0    000347ec   EnumClipboardFormats
1734     e1    0000b4c7   EnumDesktopWindows
1735     e2    00006e80   EnumDesktopsA
1736     e3    0000c698   EnumDesktopsW
1737     e4    0000c204   EnumDisplayDevicesA
1738     e5    00005b66   EnumDisplayDevicesW
1739     e6    000134a3   EnumDisplayMonitors
1740     e7    000264df   EnumDisplaySettingsA
1741     e8    0002650b   EnumDisplaySettingsExA
1742     e9    000113cc   EnumDisplaySettingsExW
1743     ea    000114c7   EnumDisplaySettingsW
1744     eb    0004b056   EnumPropsA
1745     ec    0004b090   EnumPropsExA
1746     ed    0004b0ae   EnumPropsExW
1747     ee    0004b073   EnumPropsW
1748     ef    0000b712   EnumThreadWindows
1749     f0    00006e63   EnumWindowStationsA
1750     f1    00037178   EnumWindowStationsW
1751     f2    0001375b   EnumWindows
1752     f3    000149ba   EqualRect
1753     f4    0002e947   ExcludeUpdateRgn
1754     f5    000506c7   ExitWindowsEx
1755     f6    00015d56   FillRect
1756     f7    00008ff3   FindWindowA
1757     f8    00006f69   FindWindowExA
1758     f9    0003712b   FindWindowExW
1759     fa    0000ae0d   FindWindowW
1760     fb    00032ef3   FlashWindow
1761     fc    00032f32   FlashWindowEx
1762     fd    00030eb0   FrameRect
1763     fe    00024c3c   FreeDDElParam
1764     ff    00064acf   FrostCrashedWindow
1765    100    00033b33   GetActiveWindow
1766    101    000640de   GetAltTabInfo
1767    102    000640de   GetAltTabInfoA
1768    103    0004faf3   GetAltTabInfoW
1769    104    00012a9d   GetAncestor
1770    105    0001d734   GetAppCompatFlags2
1771    106    000111ff   GetAppCompatFlags
1772    107    0000a256   GetAsyncKeyState
1773    108    00009dc7   GetCapture
1774    109    00010d01   GetCaretBlinkTime
1775    10a    000333fe   GetCaretPos
1776    10b    00007158   GetClassInfoA
1777    10c    00006fd9   GetClassInfoExA
1778    10d    0001095e   GetClassInfoExW
1779    10e    00010ac2   GetClassInfoW
1780    10f    0003119f   GetClassLongA
1781    110    00013860   GetClassLongW
1782    111    00032445   GetClassNameA
1783    112    00012a29   GetClassNameW
1784    113    00034076   GetClassWord
1785    114    000154dd   GetClientRect
1786    115    00064b09   GetClipCursor
1787    116    00022ba7   GetClipboardData
1788    117    0002700a   GetClipboardFormatNameA
1789    118    00025fd2   GetClipboardFormatNameW
1790    119    00034525   GetClipboardOwner
1791    11a    00034513   GetClipboardSequenceNumber
1792    11b    00064af7   GetClipboardViewer
1793    11c    00033466   GetComboBoxInfo
1794    11d    00036408   GetCursor
1795    11e    0003266e   GetCursorFrameInfo
1796    11f    00064b31   GetCursorInfo
1797    120    0000a4b3   GetCursorPos
1798    121    0001544c   GetDC
1799    122    00012d57   GetDCEx
1800    123    000101a9   GetDesktopWindow
1801    124    0003351c   GetDialogBaseUnits
1802    125    00004fce   GetDisplayConfigBufferSizes
1803    126    0000b4e8   GetDlgCtrlID
1804    127    000342bb   GetDlgItem
1805    128    0002ed56   GetDlgItemInt
1806    129    00063d14   GetDlgItemTextA
1807    12a    0002ecbc   GetDlgItemTextW
1808    12b    0000ade0   GetDoubleClickTime
1809    12c    00013a34   GetFocus
1810    12d    0001335d   GetForegroundWindow
1811    12e    0001237e   GetGUIThreadInfo
1812    12f    000650a3   GetGestureConfig
1813    130    0004b376   GetGestureExtraArgs
1814    131    0004b30d   GetGestureInfo
1815    132    00064b45   GetGuiResources
1816    133    00012989   GetIconInfo
1817    134    0004d067   GetIconInfoExA
1818    135    0004cfae   GetIconInfoExW
1819    136    0004bf18   GetInputDesktop
1820    137    00064b6d   GetInputLocaleInfo
1821    138    00031c5f   GetInputState
1822    139    00064b81   GetInternalWindowPos
1823    13a    0004c2ba   GetKBCodePage
1824    13b    00063d4d   GetKeyNameTextA
1825    13c    0004fa03   GetKeyNameTextW
1826    13d    00012b4d   GetKeyState
1827    13e    00013800   GetKeyboardLayout
1828    13f    0000935c   GetKeyboardLayoutList
1829    140    00063db7   GetKeyboardLayoutNameA
1830    141    0004fa13   GetKeyboardLayoutNameW
1831    142    00036946   GetKeyboardState
1832    143    0004bfee   GetKeyboardType
1833    144    00036894   GetLastActivePopup
1834    145    00013834   GetLastInputInfo
1835    146    00064f53   GetLayeredWindowAttributes
1836    147    00064bbd   GetListBoxInfo
1837    148    0005ab99   GetMagnificationDesktopColorEffect
1838    149    0005ac32   GetMagnificationDesktopMagnification
1839    14a    0002690b   GetMagnificationLensCtxInformation
1840    14b    00036b68   GetMenu
1841    14c    00036fc7   GetMenuBarInfo
1842    14d    0005bd9b   GetMenuCheckMarkDimensions
1843    14e    0005bd46   GetMenuContextHelpId
1844    14f    00008710   GetMenuDefaultItem
1845    150    000345b1   GetMenuInfo
1846    151    0000ae39   GetMenuItemCount
1847    152    00009cd4   GetMenuItemID
1848    153    0000856a   GetMenuItemInfoA
1849    154    0000aefa   GetMenuItemInfoW
1850    155    000222c5   GetMenuItemRect
1851    156    000367d2   GetMenuState
1852    157    00063a16   GetMenuStringA
1853    158    00036528   GetMenuStringW
1854    159    00011899   GetMessageA
1855    15a    0000b705   GetMessageExtraInfo
1856    15b    00036703   GetMessagePos
1857    15c    00034231   GetMessageTime
1858    15d    0001cde8   GetMessageW
1859    15e    0000c34e   GetMonitorInfoA
1860    15f    000133e7   GetMonitorInfoW
1861    160    00064be5   GetMouseMovePointsEx
1862    161    000515f9   GetNextDlgGroupItem
1863    162    0003625b   GetNextDlgTabItem
1864    163    0003480b   GetOpenClipboardWindow
1865    164    00016029   GetParent
1866    165    00036ebd   GetPhysicalCursorPos
1867    166    00064bf9   GetPriorityClipboardFormat
1868    167    00004e28   GetProcessDefaultLayout
1869    168    0000dfdc   GetProcessWindowStation
1870    169    0004c0cd   GetProgmanWindow
1871    16a    00032b61   GetPropA
1872    16b    00015bbe   GetPropW
1873    16c    0000b23d   GetQueueStatus
1874    16d    00057190   GetRawInputBuffer
1875    16e    00064c21   GetRawInputData
1876    16f    00063b99   GetRawInputDeviceInfoA
1877    170    0004ca06   GetRawInputDeviceInfoW
1878    171    00064c49   GetRawInputDeviceList
1879    172    000605f9   GetReasonTitleFromReasonCode
1880    173    00064c5d   GetRegisteredRawInputDevices
1881    174    00014e11   GetScrollBarInfo
1882    175    00012da3   GetScrollInfo
1883    176    00030e43   GetScrollPos
1884    177    0003045a   GetScrollRange
1885    178    0004c2c5   GetSendMessageReceiver
1886    179    00012fcb   GetShellWindow
1887    17a    00009c19   GetSubMenu
1888    17b    0001db7a   GetSysColor
1889    17c    0000f1ed   GetSysColorBrush
1890    17d    0000fd8b   GetSystemMenu
1891    17e    000167cf   GetSystemMetrics
1892    17f    00050d14   GetTabbedTextExtentA
1893    180    00050cea   GetTabbedTextExtentW
1894    181    0004c122   GetTaskmanWindow
1895    182    0001db66   GetThreadDesktop
1896    183    00014d41   GetTitleBarInfo
1897    184    00064c71   GetTopLevelWindow
1898    185    000324d9   GetTopWindow
1899    186    0004d6d3   GetTouchInputInfo
1900    187    0000a575   GetUpdateRect
1901    188    00031c07   GetUpdateRgn
1902    189    00064c85   GetUpdatedClipboardFormats
1903    18a    000071b8   GetUserObjectInformationA
1904    18b    0000e355   GetUserObjectInformationW
1905    18c    0004bb6d   GetUserObjectSecurity
1906    18d    0004bba3   GetWinStationInfo
1907    18e    00012780   GetWindow
1908    18f    00012b25   GetWindowCompositionAttribute
1909    190    00012b39   GetWindowCompositionInfo
1910    191    0004c15f   GetWindowContextHelpId
1911    192    00014ab7   GetWindowDC
1912    193    00064c99   GetWindowDisplayAffinity
1913    194    00014b5e   GetWindowInfo
1914    195    0000a95e   GetWindowLongA
1915    196    000161b8   GetWindowLongW
1916    197    00009db3   GetWindowMinimizeRect
1917    198    00063b70   GetWindowModuleFileName
1918    199    00063b70   GetWindowModuleFileNameA
1919    19a    0004c9dd   GetWindowModuleFileNameW
1920    19b    000369de   GetWindowPlacement
1921    19c    0001558c   GetWindowRect
1922    19d    00036415   GetWindowRgn
1923    19e    000128ab   GetWindowRgnBox
1924    19f    00012bd9   GetWindowRgnEx
1925    1a0    00006eed   GetWindowTextA
1926    1a1    00026ded   GetWindowTextLengthA
1927    1a2    0000a04c   GetWindowTextLengthW
1928    1a3    0000b8c5   GetWindowTextW
1929    1a4    0000ee32   GetWindowThreadProcessId
1930    1a5    000304f5   GetWindowWord
1931    1a6    0000a561   GhostWindowFromHungWindow
1932    1a7    0004bb0d   GrayStringA
1933    1a8    0004bb3d   GrayStringW
1934    1a9    00009348   HideCaret
1935    1aa    00064cc1   HiliteMenuItem
1936    1ab    000261f5   HungWindowFromGhostWindow
1937    1ac    000641d7   IMPGetIMEA
1938    1ad    000641c6   IMPGetIMEW
1939    1ae    000641f9   IMPQueryIMEA
1940    1af    000641e8   IMPQueryIMEW
1941    1b0    0006421b   IMPSetIMEA
1942    1b1    0006420a   IMPSetIMEW
1943    1b2    00064cd5   ImpersonateDdeClientWindow
1944    1b3    00006fb8   InSendMessage
1945    1b4    0000b27a   InSendMessageEx
1946    1b5    000154b4   InflateRect
1947    1b6    0001d898   InitializeLpkHooks
1948    1b7    00063a60   InsertMenuA
1949    1b8    00026d4e   InsertMenuItemA
1950    1b9    0000aac5   InsertMenuItemW
1951    1ba    0000869a   InsertMenuW
1952    1bb    000261d6   InternalGetWindowIcon
1953    1bc    00014b00   InternalGetWindowText
1954    1bd    0001ce38   IntersectRect
1955    1be    0001566d   InvalidateRect
1956    1bf    00007fa5   InvalidateRgn
1957    1c0    00065719   InvertRect
1958    1c1    00028776   IsCharAlphaA
1959    1c2    00025f3a   IsCharAlphaNumericA
1960    1c3    00009a7a   IsCharAlphaNumericW
1961    1c4    0003154f   IsCharAlphaW
1962    1c5    000620ef   IsCharLowerA
1963    1c6    0002758f   IsCharLowerW
1964    1c7    00062156   IsCharUpperA
1965    1c8    000275c1   IsCharUpperW
1966    1c9    00013a83   IsChild
1967    1ca    000344ff   IsClipboardFormatAvailable
1968    1cb    00022019   IsDialogMessage
1969    1cc    00022019   IsDialogMessageA
1970    1cd    00014104   IsDialogMessageW
1971    1ce    00027135   IsDlgButtonChecked
1972    1cf    0006288d   IsGUIThread
1973    1d0    00037195   IsHungAppWindow
1974    1d1    00014c8e   IsIconic
1975    1d2    00036f0e   IsMenu
1976    1d3    0001212e   IsProcessDPIAware
1977    1d4    0001561e   IsRectEmpty
1978    1d5    00003fbc   IsSETEnabled
1979    1d6    000129d0   IsServerSideWindow
1980    1d7    000168b3   IsThreadDesktopComposited
1981    1d8    0000a49f   IsTopLevelWindow
1982    1d9    00065003   IsTouchWindow
1983    1da    00033f6d   IsWinEventHookInstalled
1984    1db    000153ba   IsWindow
1985    1dc    0000a9b9   IsWindowEnabled
1986    1dd    00014b3b   IsWindowInDestroy
1987    1de    00012d2b   IsWindowRedirectedForPrint
1988    1df    00012f55   IsWindowUnicode
1989    1e0    00014d69   IsWindowVisible
1990    1e1    00066252   IsWow64Message
1991    1e2    00014ce9   IsZoomed
1992    1e3    000164f7   KillTimer
1993    1e4    0002ae02   LoadAcceleratorsA
1994    1e5    0000976d   LoadAcceleratorsW
1995    1e6    00031608   LoadBitmapA
1996    1e7    00006460   LoadBitmapW
1997    1e8    00008328   LoadCursorA
1998    1e9    00049285   LoadCursorFromFileA
1999    1ea    00049266   LoadCursorFromFileW
2003    1eb    0000ed90   LoadCursorW
2004    1ec    000064ad   LoadIconA
2006    1ed    0000f142   LoadIconW
2007    1ee    00027779   LoadImageA
2008    1ef    000112eb   LoadImageW
2009    1f0    0004c892   LoadKeyboardLayoutA
2010    1f1    0004c84f   LoadKeyboardLayoutEx
2011    1f2    0004c874   LoadKeyboardLayoutW
2012    1f3    00002227   LoadLocalFonts
2013    1f4    0001f92c   LoadMenuA
2014    1f5    0000fbf5   LoadMenuIndirectA
2015    1f6    0000fbf5   LoadMenuIndirectW
2016    1f7    0000f214   LoadMenuW
2017    1f8    00003ee7   LoadRemoteFonts
2018    1f9    000066a7   LoadStringA
2019    1fa    0000dfba   LoadStringW
2020    1fb    000369ff   LockSetForegroundWindow
2021    1fc    0000478a   LockWindowStation
2022    1fd    00024a34   LockWindowUpdate
2023    1fe    0001edff   LockWorkStation
2024    1ff    00036e4f   LogicalToPhysicalPoint
2025    200    0004d298   LookupIconIdFromDirectory
2026    201    0000debc   LookupIconIdFromDirectoryEx
2027    202    0001e9c4   MBToWCSEx
2028    203    0005c6fc   MB_GetString
2029    204    0003347a   MapDialogRect
2030    205    00036038   MapVirtualKeyA
2031    206    00063df8   MapVirtualKeyExA
2032    207    0002fb48   MapVirtualKeyExW
2033    208    00036a7c   MapVirtualKeyW
2034    209    00015caa   MapWindowPoints
2035    20a    00064cfd   MenuItemFromPoint
2036    20b    0004cbbb   MenuWindowProcA
2037    20c    0004cb77   MenuWindowProcW
2038    20d    00032939   MessageBeep
2039    20e    0005ea11   MessageBoxA
2040    20f    0005e9c9   MessageBoxExA
2041    210    0005e9ed   MessageBoxExW
2042    211    0005e869   MessageBoxIndirectA
2043    212    0005e963   MessageBoxIndirectW
2044    213    0005e795   MessageBoxTimeoutA
2045    214    0005e70d   MessageBoxTimeoutW
2046    215    0005ea5f   MessageBoxW
2047    216    00063ae0   ModifyMenuA
2048    217    000346c7   ModifyMenuW
2049    218    000094c9   MonitorFromPoint
2050    219    00010ca1   MonitorFromRect
2051    21a    00013622   MonitorFromWindow
2052    21b    00008d29   MoveWindow
2053    21c    000137d8   MsgWaitForMultipleObjects
2054    21d    0000e369   MsgWaitForMultipleObjectsEx
2055    21e    0004c06c   NotifyOverlayWindow
2056    21f    0001cfbe   NotifyWinEvent
2057    220    0005f1ea   OemKeyScan
2058    221    0005f041   OemToCharA
2059    222    0005f080   OemToCharBuffA
2060    223    0005f1ac   OemToCharBuffW
2061    224    0005f164   OemToCharW
2062    225    0001cdab   OffsetRect
2063    226    0003447e   OpenClipboard
2064    227    0000b764   OpenDesktopA
2065    228    0000c669   OpenDesktopW
2066    229    0004c087   OpenIcon
2067    22a    00005c39   OpenInputDesktop
2068    22b    00064d73   OpenThreadDesktop
2069    22c    00006e9e   OpenWindowStationA
2070    22d    0003714c   OpenWindowStationW
2071    22e    000257e6   PackDDElParam
2072    22f    0000573b   PaintDesktop
2073    230    00037082   PaintMenuBar
2074    231    000054a4   PaintMonitor
2075    232    000119a5   PeekMessageA
2076    233    0001634a   PeekMessageW
2077    234    00036e63   PhysicalToLogicalPoint
2078    235    0000b446   PostMessageA
2079    236    0001447b   PostMessageW
2080    237    0000b308   PostQuitMessage
2081    238    0000ad09   PostThreadMessageA
2082    239    0000eefc   PostThreadMessageW
2083    23a    00064d87   PrintWindow
2084    23b    0005713f   PrivateExtractIconExA
2085    23c    00011233   PrivateExtractIconExW
2086    23d    000570e5   PrivateExtractIconsA
2087    23e    00010d13   PrivateExtractIconsW
2088    23f    0000432f   PrivateRegisterICSProc
2089    240    00012392   PtInRect
2090    241    000050a5   QueryDisplayConfig
2091    242    00064d9b   QuerySendMessage
2092    243    00064daf   RealChildWindowFromPoint
2093    244    0006405c   RealGetWindowClass
2094    245    0006405c   RealGetWindowClassA
2095    246    0000adb3   RealGetWindowClassW
2096    247    0005fa96   ReasonCodeNeedsBugID
2097    248    0005fa7f   ReasonCodeNeedsComment
2098    249    00050350   RecordShutdownReason
2099    24a    000129bc   RedrawWindow
2100    24b    0000bc6a   RegisterClassA
2101    24c    00006293   RegisterClassExA
2102    24d    00010162   RegisterClassExW
2103    24e    0000ed4a   RegisterClassW
2104    24f    0000c091   RegisterClipboardFormatA
2105    250    0000df8d   RegisterClipboardFormatW
2106    251    00006c53   RegisterDeviceNotificationA
2107    252    00006c53   RegisterDeviceNotificationW
2108    253    00064dd7   RegisterErrorReportingDialog
2109    254    0004c29f   RegisterFrostWindow
2110    255    000261bb   RegisterGhostWindow
2111    256    0000aa19   RegisterHotKey
2112    257    0000474b   RegisterLogonProcess
2113    258    000088ad   RegisterMessagePumpHook
2114    259    00009370   RegisterPowerSettingNotification
2115    25a    00005b52   RegisterRawInputDevices
2116    25b    00001539   RegisterServicesProcess
2117    25c    00003ed3   RegisterSessionPort
2118    25d    00004aeb   RegisterShellHookWindow
2119    25e    0004c192   RegisterSystemThread
2120    25f    00064deb   RegisterTasklist
2121    260    0005ed18   RegisterTouchWindow
2122    261    000022af   RegisterUserApiHook
2123    262    0000c091   RegisterWindowMessageA
2124    263    0000df8d   RegisterWindowMessageW
2125    264    000369f2   ReleaseCapture
2126    265    00015421   ReleaseDC
2127    266    00064dff   RemoveClipboardFormatListener
2128    267    000086e8   RemoveMenu
2129    268    00032551   RemovePropA
2130    269    00015fe1   RemovePropW
2131    26a    00025ca7   ReplyMessage
2132    26b    00064e13   ResolveDesktopForWOW
2133    26c    00025793   ReuseDDElParam
2134    26d    0000a506   ScreenToClient
2135    26e    0005b4a9   ScrollChildren
2136    26f    0001ec44   ScrollDC
2137    270    0002fc1d   ScrollWindow
2138    271    00033fe6   ScrollWindowEx
2139    272    00027241   SendDlgItemMessageA
2140    273    000270d8   SendDlgItemMessageW
2141    274    000641b5   SendIMEMessageExA
2142    275    000641a4   SendIMEMessageExW
2143    276    00037019   SendInput
2144    277    0000ad60   SendMessageA
2145    278    00063e8b   SendMessageCallbackA
2146    279    00012f7b   SendMessageCallbackW
2147    27a    00036da9   SendMessageTimeoutA
2148    27b    0000e459   SendMessageTimeoutW
2149    27c    00015539   SendMessageW
2150    27d    0002493c   SendNotifyMessageA
2151    27e    0000c88a   SendNotifyMessageW
2152    27f    0001333a   SetActiveWindow
2153    280    00036932   SetCapture
2154    281    0002fbd3   SetCaretBlinkTime
2155    282    00036217   SetCaretPos
2156    283    00031236   SetClassLongA
2157    284    0000658b   SetClassLongW
2158    285    00064e27   SetClassWord
2159    286    00022962   SetClipboardData
2160    287    00026ff6   SetClipboardViewer
2161    288    00013075   SetCursor
2162    289    00064e3b   SetCursorContents
2163    28a    0004c1b0   SetCursorPos
2164    28b    0006417a   SetDebugErrorLevel
2165    28c    0004b71e   SetDeskWallpaper
2166    28d    0006487c   SetDisplayConfig
2167    28e    0002ec2e   SetDlgItemInt
2168    28f    0002707a   SetDlgItemTextA
2169    290    0002ebd4   SetDlgItemTextW
2170    291    0004c1cb   SetDoubleClickTime
2171    292    0000abad   SetFocus
2172    293    0000b225   SetForegroundWindow
2173    294    00004715   SetGestureConfig
2174    295    00064e4f   SetInternalWindowPos
2175    296    0003695a   SetKeyboardState
2176    297    0005f334   SetLastErrorEx
2177    298    0000a6dc   SetLayeredWindowAttributes
2178    299    0005ab45   SetMagnificationDesktopColorEffect
2179    29a    0005abfa   SetMagnificationDesktopMagnification
2180    29b    000268a0   SetMagnificationLensCtxInformation
2181    29c    00036b0e   SetMenu
2182    29d    00064e63   SetMenuContextHelpId
2183    29e    000086fc   SetMenuDefaultItem
2184    29f    00034744   SetMenuInfo
2185    2a0    0002225e   SetMenuItemBitmaps
2186    2a1    00026d15   SetMenuItemInfoA
2187    2a2    00011799   SetMenuItemInfoW
2188    2a3    0004cbff   SetMessageExtraInfo
2189    2a4    000267a4   SetMessageQueue
2190    2a5    000650b7   SetMirrorRendering
2191    2a6    00008314   SetParent
2192    2a7    00036f6c   SetPhysicalCursorPos
2193    2a8    0001e95c   SetProcessDPIAware
2194    2a9    0004c27a   SetProcessDefaultLayout
2195    2aa    0000b83d   SetProcessWindowStation
2196    2ab    0004c10a   SetProgmanWindow
2197    2ac    000328e5   SetPropA
2198    2ad    00015dc5   SetPropW
2199    2ae    0001498b   SetRect
2200    2af    00014a97   SetRectEmpty
2201    2b0    000148da   SetScrollInfo
2202    2b1    000304be   SetScrollPos
2203    2b2    00008ec5   SetScrollRange
2204    2b3    0004c0b4   SetShellWindow
2205    2b4    00003f94   SetShellWindowEx
2206    2b5    0005eaad   SetSysColors
2207    2b6    0005f24d   SetSysColorsTemp
2208    2b7    0005ec07   SetSystemCursor
2209    2b8    0002f580   SetSystemMenu
2210    2b9    00003f31   SetTaskmanWindow
2211    2ba    0000b829   SetThreadDesktop
2212    2bb    000152ef   SetTimer
2213    2bc    00064e8b   SetUserObjectInformationA
2214    2bd    00064e8b   SetUserObjectInformationW
2215    2be    00002285   SetUserObjectSecurity
2216    2bf    000124dc   SetWinEventHook
2217    2c0    0000aab1   SetWindowCompositionAttribute
2218    2c1    0001f6bb   SetWindowContextHelpId
2219    2c2    00064edb   SetWindowDisplayAffinity
2220    2c3    00008ba3   SetWindowLongA
2221    2c4    00014449   SetWindowLongW
2222    2c5    00007f78   SetWindowPlacement
2223    2c6    00011bc4   SetWindowPos
2224    2c7    000099ec   SetWindowRgn
2225    2c8    0003314a   SetWindowRgnEx
2226    2c9    00003cad   SetWindowStationUser
2227    2ca    00030c5b   SetWindowTextA
2228    2cb    0001612b   SetWindowTextW
2229    2cc    000304aa   SetWindowWord
2230    2cd    0004b641   SetWindowsHookA
2231    2ce    00036d0c   SetWindowsHookExA
2232    2cf    0000e30c   SetWindowsHookExW
2233    2d0    0004b65c   SetWindowsHookW
2234    2d1    00023c0e   SfmDxBindSwapChain
2235    2d2    00023c4a   SfmDxGetSwapChainStats
2236    2d3    00023c22   SfmDxOpenSwapChain
2237    2d4    00023c36   SfmDxQuerySwapChainBindingStatus
2238    2d5    00023cf2   SfmDxReleaseSwapChain
2239    2d6    00004fa8   SfmDxReportPendingBindingsToDwm
2240    2d7    00023cde   SfmDxSetSwapChainBindingStatus
2241    2d8    0001cebd   SfmDxSetSwapChainStats
2242    2d9    00009334   ShowCaret
2243    2da    000064d3   ShowCursor
2244    2db    000328ca   ShowOwnedPopups
2245    2dc    00033c89   ShowScrollBar
2246    2dd    0004c1e3   ShowStartGlass
2247    2de    000650cb   ShowSystemCursor
2248    2df    0000f2a9   ShowWindow
2249    2e0    00064f03   ShowWindowAsync
2250    2e1    000507c5   ShutdownBlockReasonCreate
2251    2e2    0004fdbe   ShutdownBlockReasonDestroy
2252    2e3    000508b1   ShutdownBlockReasonQuery
2253    2e4    0005da4b   SoftModalMessageBox
2254    2e5    00025f28   SoundSentry
2255    2e6    00007f19   SubtractRect
2256    2e7    0004c1fb   SwapMouseButton
2257    2e8    0000476b   SwitchDesktop
2258    2e9    00004a0f   SwitchDesktopWithFade
2259    2ea    00036a17   SwitchToThisWindow
2260    2eb    000080e0   SystemParametersInfoA
2261    2ec    0000e09a   SystemParametersInfoW
2262    2ed    00050c54   TabbedTextOutA
2263    2ee    00050c25   TabbedTextOutW
2264    2ef    0004c213   TileChildWindows
2265    2f0    0005bbd5   TileWindows
2266    2f1    0004b73a   ToAscii
2267    2f2    0004b797   ToAsciiEx
2268    2f3    0005ebd4   ToUnicode
2269    2f4    000221b2   ToUnicodeEx
2270    2f5    000130ae   TrackMouseEvent
2271    2f6    00022228   TrackPopupMenu
2272    2f7    00034832   TrackPopupMenuEx
2273    2f8    0003133f   TranslateAccelerator
2274    2f9    0003133f   TranslateAcceleratorA
2275    2fa    0001667e   TranslateAcceleratorW
2276    2fb    00031a5a   TranslateMDISysAccel
2277    2fc    000164c7   TranslateMessage
2278    2fd    0001cc79   TranslateMessageEx
2279    2fe    0000b750   UnhookWinEvent
2280    2ff    0004c234   UnhookWindowsHook
2281    300    0000adf9   UnhookWindowsHookEx
2282    301    00013699   UnionRect
2283    302    0004c24f   UnloadKeyboardLayout
2284    303    00004a30   UnlockWindowStation
2285    304    00025a5d   UnpackDDElParam
2286    305    00008d70   UnregisterClassA
2287    306    0000b9ae   UnregisterClassW
2288    307    00006dd4   UnregisterDeviceNotification
2289    308    00036a54   UnregisterHotKey
2290    309    0000835c   UnregisterMessagePumpHook
2291    30a    0003634b   UnregisterPowerSettingNotification
2292    30b    00064fa1   UnregisterSessionPort
2293    30c    0005ed33   UnregisterTouchWindow
2294    30d    00002273   UnregisterUserApiHook
2295    30e    0000a420   UpdateLayeredWindow
2296    30f    00009ac2   UpdateLayeredWindowIndirect
2297    310    00003310   UpdatePerUserSystemParameters
2298    311    0000ffa8   UpdateWindow
2299    312    00064fb3   UpdateWindowTransform
2300    313    0001e878   User32InitializeImmEntryTable
2301    314    0001d711   UserClientDllInitialize
2302    315    00064f67   UserHandleGrantAccess
2303    316    00050dba   UserLpkPSMTextOut
2304    317    00050a68   UserLpkTabbedTextOut
2305    318    0002ffd5   UserRealizePalette
2306    319    0004c2dd   UserRegisterWowHandlers
2307    31a    00066252   VRipOutput
2308    31b    00066252   VTagOutput
2309    31c    0002f089   ValidateRect
2310    31d    00031a9e   ValidateRgn
2311    31e    000266cf   VkKeyScanA
2312    31f    00026947   VkKeyScanExA
2313    320    0002f09d   VkKeyScanExW
2314    321    0002ef77   VkKeyScanW
2315    322    0000c15c   WCSToMBEx
2316    323    00064182   WINNLSEnableIME
2317    324    00064193   WINNLSGetEnableStatus
2318    325    0006414f   WINNLSGetIMEHotkey
2319    326    00030397   WaitForInputIdle
2320    327    000166bd   WaitMessage
2321    328    0002471e   WinHelpA
2322    329    00024867   WinHelpW
2323    32a    00012116   WindowFromDC
2324    32b    00036c39   WindowFromPhysicalPoint
2325    32c    00036be9   WindowFromPoint
2326    32d    00062743   _UserTestTokenForInteractive
2327    32e    00069440   gSharedInfo
2328    32f    0001c318   gapfnScSendMessage
2329    330    0005ec3b   keybd_event
2330    331    00026209   mouse_event
2331    332    00013f47   wsprintfA
2332    333    0002426d   wsprintfW
2333    334    00013c94   wvsprintfA
2334    335    0002407a   wvsprintfW
1500           00065017   [NONAME]
1501           0006502b   [NONAME]
1550           00060717   [NONAME]
1551           000607a3   [NONAME]
1552           0006076b   [NONAME]
1553           00026031   [NONAME]
1554           00025fe2   [NONAME]
1555           000607c1   [NONAME]
1556           000607f7   [NONAME]
2000           0000574f   [NONAME]
2001           0005ac98   [NONAME]
2002           000268b4   [NONAME]
2005           00003fa8   [NONAME]
2500           0004b282   [NONAME]
2501           0004b2a7   [NONAME]
2502           0004b2d9   [NONAME]


完全正确才有意义!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: