2003-11-27 02:10:26 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the unicows dll
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winver.h"
|
|
|
|
#include "winspool.h"
|
|
|
|
#include "commdlg.h"
|
|
|
|
#include "wincrypt.h"
|
|
|
|
#include "ddeml.h"
|
|
|
|
#include "wincon.h"
|
|
|
|
#include "oledlg.h"
|
|
|
|
#include "ras.h"
|
2004-12-16 15:43:54 +01:00
|
|
|
#include "sspi.h"
|
2003-11-27 02:10:26 +01:00
|
|
|
#include "mmsystem.h"
|
|
|
|
#include "shlobj.h"
|
|
|
|
#include "shellapi.h"
|
|
|
|
#include "vfw.h"
|
|
|
|
#include "winnetwk.h"
|
2005-02-22 15:49:43 +01:00
|
|
|
#include "sensapi.h"
|
2003-11-27 02:10:26 +01:00
|
|
|
|
|
|
|
/* Create a dummy reference to every function we need so that
|
|
|
|
* the linker will import them.
|
|
|
|
*/
|
|
|
|
const void *dummy_references[] =
|
|
|
|
{
|
2004-12-16 15:43:54 +01:00
|
|
|
AcquireCredentialsHandleW,
|
2003-11-27 02:10:26 +01:00
|
|
|
AddAtomW,
|
|
|
|
AddFontResourceW,
|
|
|
|
AddJobW,
|
2005-01-03 21:30:57 +01:00
|
|
|
AddMonitorW,
|
|
|
|
AddPortW,
|
2003-11-27 02:10:26 +01:00
|
|
|
AddPrinterDriverW,
|
|
|
|
AddPrinterW,
|
2005-01-03 21:30:57 +01:00
|
|
|
AddPrintProcessorW,
|
|
|
|
AddPrintProvidorW,
|
|
|
|
AdvancedDocumentPropertiesW,
|
2003-11-27 02:10:26 +01:00
|
|
|
AppendMenuW,
|
|
|
|
BeginUpdateResourceA,
|
|
|
|
BeginUpdateResourceW,
|
|
|
|
BroadcastSystemMessageW,
|
|
|
|
BuildCommDCBAndTimeoutsW,
|
|
|
|
BuildCommDCBW,
|
|
|
|
CallMsgFilterW,
|
|
|
|
CallNamedPipeW,
|
|
|
|
CallWindowProcA,
|
|
|
|
CallWindowProcW,
|
|
|
|
ChangeDisplaySettingsExW,
|
|
|
|
ChangeDisplaySettingsW,
|
|
|
|
ChangeMenuW,
|
|
|
|
CharLowerBuffW,
|
|
|
|
CharLowerW,
|
|
|
|
CharNextW,
|
|
|
|
CharPrevW,
|
|
|
|
CharToOemBuffW,
|
|
|
|
CharToOemW,
|
|
|
|
CharUpperBuffW,
|
|
|
|
CharUpperW,
|
|
|
|
ChooseColorW,
|
|
|
|
ChooseFontW,
|
|
|
|
CommConfigDialogW,
|
|
|
|
CompareStringW,
|
2005-01-03 21:30:57 +01:00
|
|
|
ConfigurePortW,
|
2003-11-27 02:10:26 +01:00
|
|
|
CopyAcceleratorTableW,
|
2004-12-16 15:43:54 +01:00
|
|
|
CopyEnhMetaFileW,
|
2003-11-27 02:10:26 +01:00
|
|
|
CopyFileExW ,
|
|
|
|
CopyFileW,
|
|
|
|
CopyMetaFileW,
|
|
|
|
CreateAcceleratorTableW,
|
|
|
|
CreateColorSpaceW,
|
|
|
|
CreateDCW,
|
|
|
|
CreateDialogIndirectParamW,
|
|
|
|
CreateDialogParamW,
|
|
|
|
CreateDirectoryExW,
|
|
|
|
CreateDirectoryW,
|
|
|
|
CreateEnhMetaFileW,
|
|
|
|
CreateEventW,
|
|
|
|
CreateFileMappingW,
|
|
|
|
CreateFileW,
|
|
|
|
CreateFontIndirectW,
|
|
|
|
CreateFontW,
|
|
|
|
CreateICW,
|
|
|
|
CreateMDIWindowW,
|
|
|
|
CreateMailslotW,
|
|
|
|
CreateMetaFileW,
|
|
|
|
CreateMutexW,
|
|
|
|
CreateNamedPipeW,
|
|
|
|
CreateProcessW,
|
|
|
|
CreateScalableFontResourceW,
|
|
|
|
CreateSemaphoreW,
|
|
|
|
CreateWaitableTimerW,
|
|
|
|
CreateWindowExW,
|
|
|
|
CryptAcquireContextW,
|
|
|
|
CryptEnumProviderTypesW,
|
|
|
|
CryptEnumProvidersW,
|
|
|
|
CryptGetDefaultProviderW,
|
|
|
|
CryptSetProviderExW,
|
|
|
|
CryptSetProviderW,
|
|
|
|
CryptSignHashW,
|
|
|
|
CryptVerifySignatureW,
|
|
|
|
DdeConnect,
|
|
|
|
DdeConnectList,
|
|
|
|
DdeCreateStringHandleW,
|
|
|
|
DdeInitializeW,
|
|
|
|
DdeQueryConvInfo,
|
|
|
|
DdeQueryStringW,
|
|
|
|
DefDlgProcW,
|
|
|
|
DefFrameProcW,
|
|
|
|
DefMDIChildProcW,
|
|
|
|
DefWindowProcW,
|
|
|
|
DeleteFileW,
|
2005-01-03 21:30:57 +01:00
|
|
|
DeleteMonitorW,
|
|
|
|
DeletePortW,
|
|
|
|
DeletePrinterDriverW,
|
|
|
|
DeletePrintProcessorW,
|
|
|
|
DeletePrintProvidorW,
|
2003-11-27 02:10:26 +01:00
|
|
|
DeviceCapabilitiesW,
|
|
|
|
DialogBoxIndirectParamW,
|
|
|
|
DialogBoxParamW,
|
|
|
|
DispatchMessageW,
|
|
|
|
DlgDirListComboBoxW,
|
|
|
|
DlgDirListW,
|
|
|
|
DlgDirSelectComboBoxExW,
|
|
|
|
DlgDirSelectExW,
|
|
|
|
DocumentPropertiesW,
|
|
|
|
DragQueryFileW,
|
|
|
|
DrawStateW,
|
|
|
|
DrawTextExW,
|
|
|
|
DrawTextW,
|
|
|
|
EnableWindow,
|
|
|
|
EndUpdateResourceA,
|
|
|
|
EndUpdateResourceW,
|
2004-12-16 15:43:54 +01:00
|
|
|
EnumCalendarInfoExW,
|
|
|
|
EnumCalendarInfoW,
|
2003-11-27 02:10:26 +01:00
|
|
|
EnumClipboardFormats,
|
2005-01-03 21:30:57 +01:00
|
|
|
EnumDateFormatsExW,
|
2003-11-27 02:10:26 +01:00
|
|
|
EnumDateFormatsW,
|
|
|
|
EnumDisplayDevicesW,
|
|
|
|
EnumDisplaySettingsExW,
|
|
|
|
EnumDisplaySettingsW,
|
|
|
|
EnumFontFamiliesExW,
|
|
|
|
EnumFontFamiliesW,
|
|
|
|
EnumFontsW,
|
2004-12-16 15:43:54 +01:00
|
|
|
EnumICMProfilesW,
|
|
|
|
EnumMonitorsW,
|
2005-01-03 21:30:57 +01:00
|
|
|
EnumPortsW,
|
|
|
|
EnumPrintProcessorDatatypesW,
|
2004-12-16 15:43:54 +01:00
|
|
|
EnumPrintProcessorsW,
|
2003-11-27 02:10:26 +01:00
|
|
|
EnumPrinterDriversW,
|
|
|
|
EnumPrintersW,
|
|
|
|
EnumPropsA,
|
|
|
|
EnumPropsExA,
|
|
|
|
EnumPropsExW,
|
|
|
|
EnumPropsW,
|
|
|
|
EnumSystemCodePagesW,
|
|
|
|
EnumSystemLocalesW,
|
|
|
|
EnumTimeFormatsW,
|
2004-12-16 15:43:54 +01:00
|
|
|
EnumerateSecurityPackagesW,
|
2003-11-27 02:10:26 +01:00
|
|
|
ExpandEnvironmentStringsW,
|
|
|
|
ExtTextOutW,
|
|
|
|
ExtractIconExW,
|
|
|
|
ExtractIconW,
|
|
|
|
FatalAppExitW,
|
|
|
|
FillConsoleOutputCharacterW,
|
|
|
|
FindAtomW,
|
|
|
|
FindExecutableW,
|
|
|
|
FindFirstChangeNotificationW,
|
|
|
|
FindFirstFileW,
|
|
|
|
FindNextFileW,
|
|
|
|
FindResourceExW,
|
|
|
|
FindResourceW,
|
|
|
|
FindTextW,
|
|
|
|
FindWindowExW,
|
|
|
|
FindWindowW,
|
|
|
|
FormatMessageW,
|
2004-12-16 15:43:54 +01:00
|
|
|
FreeContextBuffer,
|
2003-11-27 02:10:26 +01:00
|
|
|
FreeEnvironmentStringsW,
|
2005-01-03 21:30:57 +01:00
|
|
|
GetAltTabInfoW,
|
2003-11-27 02:10:26 +01:00
|
|
|
GetAtomNameW,
|
|
|
|
GetCPInfo,
|
|
|
|
GetCPInfoExW,
|
|
|
|
GetCalendarInfoW,
|
|
|
|
GetCharABCWidthsFloatW,
|
|
|
|
GetCharABCWidthsW,
|
|
|
|
GetCharWidth32W,
|
|
|
|
GetCharWidthFloatW,
|
|
|
|
GetCharWidthW,
|
|
|
|
GetCharacterPlacementW,
|
|
|
|
GetClassInfoExW,
|
|
|
|
GetClassInfoW,
|
|
|
|
GetClassLongW,
|
|
|
|
GetClassNameW,
|
|
|
|
GetClipboardData,
|
|
|
|
GetClipboardFormatNameW,
|
|
|
|
GetComputerNameW,
|
|
|
|
GetConsoleTitleW,
|
|
|
|
GetCurrencyFormatW,
|
|
|
|
GetCurrentDirectoryW,
|
2004-12-16 15:43:54 +01:00
|
|
|
GetCurrentHwProfileW,
|
2003-11-27 02:10:26 +01:00
|
|
|
GetDateFormatW,
|
|
|
|
GetDefaultCommConfigW,
|
|
|
|
GetDiskFreeSpaceExW ,
|
|
|
|
GetDiskFreeSpaceW,
|
|
|
|
GetDlgItemTextW,
|
|
|
|
GetDriveTypeW,
|
|
|
|
GetEnhMetaFileDescriptionW,
|
|
|
|
GetEnhMetaFileW,
|
|
|
|
GetEnvironmentStringsW,
|
|
|
|
GetEnvironmentVariableW,
|
|
|
|
GetFileAttributesExW,
|
|
|
|
GetFileAttributesW,
|
|
|
|
GetFileTitleW,
|
|
|
|
GetFileVersionInfoSizeW,
|
|
|
|
GetFileVersionInfoW,
|
|
|
|
GetFullPathNameW,
|
|
|
|
GetGlyphOutlineW,
|
2005-01-03 21:30:57 +01:00
|
|
|
GetICMProfileW,
|
|
|
|
GetJobW,
|
2003-11-27 02:10:26 +01:00
|
|
|
GetKerningPairsW,
|
|
|
|
GetKeyNameTextW,
|
|
|
|
GetKeyboardLayoutNameW,
|
|
|
|
GetLocaleInfoW,
|
2005-01-03 21:30:57 +01:00
|
|
|
GetLogColorSpaceW,
|
2003-11-27 02:10:26 +01:00
|
|
|
GetLogicalDriveStringsW,
|
|
|
|
GetLongPathNameW ,
|
|
|
|
GetMenuItemInfoW,
|
|
|
|
GetMenuStringW,
|
|
|
|
GetMessageW,
|
|
|
|
GetMetaFileW,
|
|
|
|
GetModuleFileNameW,
|
|
|
|
GetModuleHandleW,
|
|
|
|
GetMonitorInfoW,
|
|
|
|
GetNamedPipeHandleStateW,
|
|
|
|
GetNumberFormatW,
|
|
|
|
GetObjectW,
|
|
|
|
GetOpenFileNamePreviewW,
|
|
|
|
GetOpenFileNameW,
|
|
|
|
GetOutlineTextMetricsW,
|
|
|
|
GetPrinterDataW,
|
|
|
|
GetPrinterDriverDirectoryW,
|
|
|
|
GetPrinterDriverW,
|
|
|
|
GetPrinterW,
|
2005-01-03 21:30:57 +01:00
|
|
|
GetPrintProcessorDirectoryW,
|
2003-11-27 02:10:26 +01:00
|
|
|
GetPrivateProfileIntW,
|
|
|
|
GetPrivateProfileSectionNamesW,
|
|
|
|
GetPrivateProfileSectionW,
|
|
|
|
GetPrivateProfileStringW,
|
|
|
|
GetPrivateProfileStructW,
|
|
|
|
GetProcAddress,
|
|
|
|
GetProfileIntW,
|
|
|
|
GetProfileSectionW,
|
|
|
|
GetProfileStringW,
|
|
|
|
GetPropA,
|
|
|
|
GetPropW,
|
|
|
|
GetSaveFileNamePreviewW,
|
|
|
|
GetSaveFileNameW,
|
|
|
|
GetShortPathNameW,
|
|
|
|
GetStartupInfoW,
|
|
|
|
GetStringTypeExW,
|
|
|
|
GetStringTypeW,
|
|
|
|
GetSystemDirectoryW,
|
|
|
|
GetSystemWindowsDirectoryW,
|
|
|
|
GetTabbedTextExtentW,
|
|
|
|
GetTempFileNameW,
|
|
|
|
GetTempPathW,
|
|
|
|
GetTextExtentExPointW,
|
|
|
|
GetTextExtentPoint32W,
|
|
|
|
GetTextExtentPointW,
|
|
|
|
GetTextFaceW,
|
|
|
|
GetTextMetricsW,
|
|
|
|
GetTimeFormatW,
|
|
|
|
GetUserNameW,
|
|
|
|
GetVersionExW,
|
|
|
|
GetVolumeInformationW,
|
|
|
|
GetWindowLongA,
|
|
|
|
GetWindowLongW,
|
|
|
|
GetWindowModuleFileNameW,
|
|
|
|
GetWindowTextLengthW,
|
|
|
|
GetWindowTextW,
|
|
|
|
GetWindowsDirectoryW,
|
|
|
|
GlobalAddAtomW,
|
|
|
|
GlobalFindAtomW,
|
|
|
|
GlobalGetAtomNameW,
|
|
|
|
GrayStringW,
|
2004-12-16 15:43:54 +01:00
|
|
|
InitSecurityInterfaceW,
|
|
|
|
InitializeSecurityContextW,
|
2003-11-27 02:10:26 +01:00
|
|
|
InsertMenuItemW,
|
|
|
|
InsertMenuW,
|
|
|
|
IsBadStringPtrW,
|
|
|
|
IsCharAlphaNumericW,
|
|
|
|
IsCharAlphaW,
|
|
|
|
IsCharLowerW,
|
|
|
|
IsCharUpperW,
|
|
|
|
IsClipboardFormatAvailable,
|
2005-02-22 15:49:43 +01:00
|
|
|
IsDestinationReachableW,
|
2003-11-27 02:10:26 +01:00
|
|
|
IsDialogMessageW,
|
|
|
|
IsTextUnicode,
|
|
|
|
IsValidCodePage,
|
|
|
|
IsWindowUnicode,
|
|
|
|
LCMapStringW,
|
|
|
|
LoadAcceleratorsW,
|
|
|
|
LoadBitmapW,
|
|
|
|
LoadCursorFromFileW,
|
|
|
|
LoadCursorW,
|
|
|
|
LoadIconW,
|
|
|
|
LoadImageW,
|
|
|
|
LoadKeyboardLayoutW,
|
|
|
|
LoadLibraryExW,
|
|
|
|
LoadLibraryW,
|
|
|
|
LoadMenuIndirectW,
|
|
|
|
LoadMenuW,
|
|
|
|
LoadStringW,
|
|
|
|
MCIWndCreateW,
|
|
|
|
MapVirtualKeyExW,
|
|
|
|
MapVirtualKeyW,
|
|
|
|
MessageBoxExW,
|
|
|
|
MessageBoxIndirectW,
|
|
|
|
MessageBoxW,
|
|
|
|
ModifyMenuW,
|
|
|
|
MoveFileW,
|
|
|
|
MultiByteToWideChar,
|
|
|
|
MultinetGetConnectionPerformanceW,
|
|
|
|
OemToCharBuffW,
|
|
|
|
OemToCharW,
|
|
|
|
OleUIAddVerbMenuW,
|
|
|
|
OleUIBusyW,
|
|
|
|
OleUIChangeIconW,
|
|
|
|
OleUIChangeSourceW,
|
|
|
|
OleUIConvertW,
|
|
|
|
OleUIEditLinksW,
|
|
|
|
OleUIInsertObjectW,
|
|
|
|
OleUIObjectPropertiesW,
|
|
|
|
OleUIPasteSpecialW,
|
|
|
|
OleUIPromptUserW,
|
|
|
|
OleUIUpdateLinksW,
|
|
|
|
OpenEventW,
|
|
|
|
OpenFileMappingW,
|
|
|
|
OpenMutexW,
|
|
|
|
OpenPrinterW,
|
|
|
|
OpenSemaphoreW,
|
|
|
|
OpenWaitableTimerW,
|
|
|
|
OutputDebugStringW,
|
|
|
|
PageSetupDlgW,
|
|
|
|
PeekConsoleInputW,
|
|
|
|
PeekMessageW,
|
|
|
|
PlaySoundW,
|
|
|
|
PolyTextOutW,
|
|
|
|
PostMessageW,
|
|
|
|
PostThreadMessageW,
|
|
|
|
PrintDlgW,
|
2004-12-16 15:43:54 +01:00
|
|
|
QueryContextAttributesW,
|
|
|
|
QueryCredentialsAttributesW,
|
2003-11-27 02:10:26 +01:00
|
|
|
QueryDosDeviceW,
|
2004-12-16 15:43:54 +01:00
|
|
|
QuerySecurityPackageInfoW,
|
2005-01-03 21:30:57 +01:00
|
|
|
RasConnectionNotificationW,
|
|
|
|
RasCreatePhonebookEntryW,
|
2003-11-27 02:10:26 +01:00
|
|
|
RasDeleteEntryW,
|
2005-01-03 21:30:57 +01:00
|
|
|
RasDeleteSubEntryW,
|
|
|
|
RasDialW,
|
|
|
|
RasEditPhonebookEntryW,
|
2003-11-27 02:10:26 +01:00
|
|
|
RasEnumConnectionsW,
|
|
|
|
RasEnumDevicesW,
|
|
|
|
RasEnumEntriesW,
|
2005-01-03 21:30:57 +01:00
|
|
|
RasGetConnectStatusW,
|
|
|
|
RasGetEntryDialParamsW,
|
|
|
|
RasGetEntryPropertiesW,
|
|
|
|
RasGetErrorStringW,
|
|
|
|
RasGetProjectionInfoW,
|
|
|
|
RasHangUpW,
|
|
|
|
RasRenameEntryW,
|
|
|
|
RasSetEntryDialParamsW,
|
2003-11-27 02:10:26 +01:00
|
|
|
RasSetEntryPropertiesW,
|
2005-01-03 21:30:57 +01:00
|
|
|
RasSetSubEntryPropertiesW,
|
2004-12-16 15:43:54 +01:00
|
|
|
RasValidateEntryNameW,
|
2003-11-27 02:10:26 +01:00
|
|
|
ReadConsoleInputW,
|
|
|
|
ReadConsoleOutputCharacterW,
|
|
|
|
ReadConsoleOutputW,
|
|
|
|
ReadConsoleW,
|
|
|
|
RegConnectRegistryW,
|
|
|
|
RegCreateKeyExW,
|
|
|
|
RegCreateKeyW,
|
|
|
|
RegDeleteKeyW,
|
|
|
|
RegDeleteValueW,
|
|
|
|
RegEnumKeyExW,
|
|
|
|
RegEnumKeyW,
|
|
|
|
RegEnumValueW,
|
|
|
|
RegLoadKeyW,
|
|
|
|
RegOpenKeyExW,
|
|
|
|
RegOpenKeyW,
|
|
|
|
RegQueryInfoKeyW,
|
|
|
|
RegQueryMultipleValuesW,
|
|
|
|
RegQueryValueExW,
|
|
|
|
RegQueryValueW,
|
|
|
|
RegReplaceKeyW,
|
|
|
|
RegSaveKeyW,
|
|
|
|
RegSetValueExW,
|
|
|
|
RegSetValueW,
|
|
|
|
RegUnLoadKeyW,
|
|
|
|
RegisterClassExW,
|
|
|
|
RegisterClassW,
|
|
|
|
RegisterClipboardFormatW,
|
2004-12-16 15:43:54 +01:00
|
|
|
RegisterDeviceNotificationW,
|
2003-11-27 02:10:26 +01:00
|
|
|
RegisterWindowMessageW,
|
|
|
|
RemoveDirectoryW,
|
|
|
|
RemoveFontResourceW,
|
|
|
|
RemovePropA,
|
|
|
|
RemovePropW,
|
|
|
|
ReplaceTextW,
|
|
|
|
ResetDCW,
|
|
|
|
ResetPrinterW,
|
|
|
|
SHBrowseForFolderW,
|
|
|
|
SHChangeNotify ,
|
|
|
|
SHFileOperationW,
|
|
|
|
SHGetFileInfoW,
|
2005-01-03 21:30:57 +01:00
|
|
|
SHGetNewLinkInfoW,
|
2003-11-27 02:10:26 +01:00
|
|
|
SHGetPathFromIDListW,
|
|
|
|
ScrollConsoleScreenBufferW,
|
|
|
|
SearchPathW,
|
|
|
|
SendDlgItemMessageW,
|
|
|
|
SendMessageCallbackW,
|
|
|
|
SendMessageTimeoutW,
|
|
|
|
SendMessageW,
|
|
|
|
SendNotifyMessageW,
|
|
|
|
SetCalendarInfoW,
|
|
|
|
SetClassLongW,
|
|
|
|
SetComputerNameW,
|
|
|
|
SetConsoleTitleW,
|
|
|
|
SetCurrentDirectoryW,
|
|
|
|
SetDefaultCommConfigW,
|
|
|
|
SetDlgItemTextW,
|
|
|
|
SetEnvironmentVariableW,
|
|
|
|
SetFileAttributesW,
|
2005-01-03 21:30:57 +01:00
|
|
|
SetICMProfileW,
|
2003-11-27 02:10:26 +01:00
|
|
|
SetJobW,
|
|
|
|
SetLocaleInfoW,
|
|
|
|
SetMenuItemInfoW,
|
|
|
|
SetPrinterDataW,
|
|
|
|
SetPrinterW,
|
|
|
|
SetPropA,
|
|
|
|
SetPropW,
|
|
|
|
SetVolumeLabelW,
|
|
|
|
SetWindowLongA,
|
|
|
|
SetWindowLongW,
|
|
|
|
SetWindowTextW,
|
|
|
|
SetWindowsHookExW,
|
|
|
|
SetWindowsHookW,
|
|
|
|
ShellAboutW,
|
|
|
|
ShellExecuteExW ,
|
|
|
|
ShellExecuteW ,
|
|
|
|
Shell_NotifyIconW,
|
|
|
|
StartDocPrinterW,
|
|
|
|
StartDocW,
|
|
|
|
SystemParametersInfoW,
|
|
|
|
TabbedTextOutW,
|
|
|
|
TextOutW,
|
|
|
|
TranslateAcceleratorW,
|
|
|
|
UnregisterClassW,
|
2005-01-03 21:30:57 +01:00
|
|
|
UpdateICMRegKeyW,
|
2003-11-27 02:10:26 +01:00
|
|
|
UpdateResourceA,
|
|
|
|
UpdateResourceW,
|
|
|
|
VerFindFileW,
|
|
|
|
VerInstallFileW,
|
|
|
|
VerLanguageNameW,
|
|
|
|
VerQueryValueW,
|
|
|
|
VkKeyScanExW,
|
|
|
|
VkKeyScanW,
|
|
|
|
WNetAddConnection2W,
|
|
|
|
WNetAddConnection3W,
|
|
|
|
WNetAddConnectionW,
|
|
|
|
WNetCancelConnection2W,
|
|
|
|
WNetCancelConnectionW,
|
|
|
|
WNetConnectionDialog1W,
|
|
|
|
WNetDisconnectDialog1W,
|
|
|
|
WNetEnumResourceW,
|
|
|
|
WNetGetConnectionW,
|
|
|
|
WNetGetLastErrorW,
|
|
|
|
WNetGetNetworkInformationW,
|
|
|
|
WNetGetProviderNameW,
|
|
|
|
WNetGetResourceInformationW,
|
|
|
|
WNetGetResourceParentW,
|
|
|
|
WNetGetUniversalNameW ,
|
|
|
|
WNetGetUserW,
|
|
|
|
WNetOpenEnumW,
|
|
|
|
WNetUseConnectionW,
|
|
|
|
WaitNamedPipeW ,
|
|
|
|
WideCharToMultiByte,
|
|
|
|
WinHelpW,
|
|
|
|
WriteConsoleInputW,
|
|
|
|
WriteConsoleOutputCharacterW,
|
|
|
|
WriteConsoleOutputW,
|
|
|
|
WriteConsoleW,
|
|
|
|
WritePrivateProfileSectionW,
|
|
|
|
WritePrivateProfileStringW,
|
|
|
|
WritePrivateProfileStructW,
|
|
|
|
WriteProfileSectionW,
|
|
|
|
WriteProfileStringW,
|
|
|
|
auxGetDevCapsW,
|
|
|
|
capCreateCaptureWindowW,
|
|
|
|
capGetDriverDescriptionW,
|
|
|
|
joyGetDevCapsW,
|
|
|
|
lstrcatW,
|
|
|
|
lstrcmpW,
|
|
|
|
lstrcmpiW,
|
|
|
|
lstrcpyW,
|
|
|
|
lstrcpynW,
|
|
|
|
lstrlenW,
|
|
|
|
mciGetDeviceIDW,
|
|
|
|
mciGetErrorStringW,
|
|
|
|
mciSendCommandW,
|
|
|
|
mciSendStringW,
|
|
|
|
midiInGetDevCapsW,
|
|
|
|
midiInGetErrorTextW,
|
|
|
|
midiOutGetDevCapsW,
|
|
|
|
midiOutGetErrorTextW,
|
|
|
|
mixerGetControlDetailsW,
|
|
|
|
mixerGetDevCapsW,
|
|
|
|
mixerGetLineControlsW,
|
|
|
|
mixerGetLineInfoW,
|
|
|
|
mmioInstallIOProcW,
|
|
|
|
mmioOpenW,
|
|
|
|
mmioRenameW,
|
|
|
|
mmioStringToFOURCCW,
|
|
|
|
sndPlaySoundW,
|
|
|
|
waveInGetDevCapsW,
|
|
|
|
waveInGetErrorTextW,
|
|
|
|
waveOutGetDevCapsW,
|
|
|
|
waveOutGetErrorTextW,
|
|
|
|
wsprintfW,
|
|
|
|
wvsprintfW
|
|
|
|
};
|