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


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

    直接上代码:

      1 // ListExport.cpp : Defines the entry point for the console application.
      2 //
      3 #include "stdafx.h"
      4 #include <windows.h>
      5 #include <winnt.h>
      6 
      7 extern "C" DWORD _stdcall _RVAToOffset(DWORD  _lpFileHead,DWORD _dwRVA);
      8 extern "C" DWORD _stdcall _OffsetToRVA(DWORD _lpFileHead,DWORD _dwOffset);
      9 extern "C" DWORD _stdcall _getRVASectionName(DWORD _lpFileHead,DWORD _dwRVA);
     10 
     11 HANDLE m_file;
     12 HANDLE m_map;
     13 LPVOID m_base;
     14 
     15 LPVOID RvaToPtr(DWORD dwBase,DWORD dwRVA)
     16 {    
     17     DWORD dd=_RVAToOffset(dwBase,dwRVA);
     18     dd=dd+dwBase;
     19     return (LPVOID)dd;
     20 }
     21 
     22 bool LoadPE()
     23 {
     24     bool bret=false;
     25     wchar_t pwch[]=L"C:\Windows\System32\user32.dll";
     26     m_file=CreateFile(pwch,
     27         GENERIC_READ ,
     28         FILE_SHARE_READ | FILE_SHARE_WRITE,
     29         NULL,
     30         OPEN_EXISTING,
     31         FILE_ATTRIBUTE_ARCHIVE,
     32         NULL);
     33     if(m_file==INVALID_HANDLE_VALUE)
     34         return bret;
     35     m_map=CreateFileMapping(m_file,
     36         NULL,PAGE_READONLY,
     37         0,0,0);
     38     if (m_map==NULL)
     39     {
     40         CloseHandle(m_file);
     41         return bret;
     42     }
     43     m_base=MapViewOfFile(m_map,
     44         FILE_MAP_READ,
     45         0,0,0);
     46     if(m_base==NULL)
     47     {
     48         CloseHandle(m_map);
     49         CloseHandle(m_file);
     50         return bret;
     51     }
     52     bret=true;
     53     return bret;
     54 }
     55 
     56 void UnloadPE()
     57 {
     58     UnmapViewOfFile(m_base);
     59     CloseHandle(m_map);
     60     CloseHandle(m_file);
     61 }
     62 
     63 void ListExport()
     64 {
     65     DWORD dbase=(DWORD)m_base;
     66     PIMAGE_DOS_HEADER dos=(PIMAGE_DOS_HEADER)dbase;
     67     PIMAGE_NT_HEADERS nt=(PIMAGE_NT_HEADERS)(dbase+dos->e_lfanew);
     68     PIMAGE_EXPORT_DIRECTORY exp=(PIMAGE_EXPORT_DIRECTORY)(RvaToPtr(dbase,nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress)); 
     69     PDWORD pdwNames,pdwRvs;
     70     PWORD pwOrds;
     71     pdwNames=(PDWORD)RvaToPtr(dbase,exp->AddressOfNames);
     72     pdwRvs=(PDWORD)RvaToPtr(dbase,exp->AddressOfFunctions);
     73     pwOrds=(PWORD)RvaToPtr(dbase,exp->AddressOfNameOrdinals);
     74     if (!pdwRvs)
     75         return;
     76     DWORD iNumOfNames=exp->NumberOfNames;
     77     bool bIsByName=false;
     78     char szExportByOrd[]="[NONAME]";
     79     char buf[2000],*pbuf;
     80     
     81     char *szFuncName;
     82     DWORD i,j,hint=-1;
     83     pbuf=buf;
     84     printf("Export Function Table vs MS dumpbin exports v0.0001.....
    
    
     ordinal   hint    RVA        name
    ");
     85     for (i=0;i<exp->NumberOfFunctions;i++)
     86     {
     87         if(*pdwRvs)
     88         {
     89             bIsByName=false;
     90             for (j=0;j<iNumOfNames;j++)
     91             {
     92                 if(i==pwOrds[j])
     93                 {    
     94                     bIsByName=true;                                    
     95                     break;                    
     96                 }                                
     97             }
     98             if (bIsByName)    
     99             {    
    100                 ++hint;
    101                 szFuncName=(char*)RvaToPtr(dbase,pdwNames[j]);    
    102                 printf("%8ld   %4lx    %08lx   %s
    ",exp->Base+i,hint,*pdwRvs,szFuncName);
    103             }
    104             else
    105             {
    106                 szFuncName=szExportByOrd;
    107                 int ilen=sprintf(pbuf,"%8ld           %08lx   %s
    ",exp->Base+i,*pdwRvs,szFuncName);
    108                 pbuf=pbuf+ilen;
    109             }    
    110         }
    111         ++pdwRvs;
    112     }
    113     printf("%s
    ",buf);
    114 
    115 }
    116 
    117 int _tmain(int argc, _TCHAR* argv[])
    118 {
    119     if (LoadPE())
    120     {    
    121         ListExport();
    122         UnloadPE();
    123     }
    124     getchar();
    125     return 0;
    126 }

    看结果:

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

     完全正确才有意义!

    /***********************************************

    看书看原版,原汁原味。

    不会英文?没关系,硬着头皮看下去慢慢熟练,才会有真正收获。

    没有原书,也要网上找PDF来看。

    网上的原版资料多了去了,下载东西也到原始下载点去看看。

    你会知其所以然,呵呵。

    ***********************************************/

  • 相关阅读:
    C#代码也VB
    Flash/Flex学习笔记(9):ActionScript3.0与Javascript的相互调用
    原来Silverlight 4中是可以玩UDP的!
    Flash/Flex学习笔记(20):贝塞尔曲线
    Flash/Flex学习笔记(16):如何做自定义Loading加载其它swf
    AS3:让人叹为观止的Flash作品
    Flash/Flex学习笔记(10):FMS 3.5之Hello World!
    Flash/Flex学习笔记(12):FMS 3.5之如何做视频实时直播
    Flash/Flex学习笔记(28):动态文本的滚动控制
    Flash/Flex学习笔记(18):画线及三角函数的基本使用
  • 原文地址:https://www.cnblogs.com/dpblue/p/4810941.html
Copyright © 2020-2023  润新知