add clang
This commit is contained in:
parent
4715742aa8
commit
9a4b261179
890 changed files with 229323 additions and 20 deletions
191
05/tcc-final-old/win32/lib/chkstk.S
Normal file
191
05/tcc-final-old/win32/lib/chkstk.S
Normal file
|
@ -0,0 +1,191 @@
|
|||
/* ---------------------------------------------- */
|
||||
/* chkstk86.s */
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#ifndef __x86_64__
|
||||
/* ---------------------------------------------- */
|
||||
|
||||
.globl __chkstk
|
||||
|
||||
__chkstk:
|
||||
xchg (%esp),%ebp /* store ebp, get ret.addr */
|
||||
push %ebp /* push ret.addr */
|
||||
lea 4(%esp),%ebp /* setup frame ptr */
|
||||
push %ecx /* save ecx */
|
||||
mov %ebp,%ecx
|
||||
P0:
|
||||
sub $4096,%ecx
|
||||
test %eax,(%ecx)
|
||||
sub $4096,%eax
|
||||
cmp $4096,%eax
|
||||
jge P0
|
||||
sub %eax,%ecx
|
||||
test %eax,(%ecx)
|
||||
|
||||
mov %esp,%eax
|
||||
mov %ecx,%esp
|
||||
mov (%eax),%ecx /* restore ecx */
|
||||
jmp *4(%eax)
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#else
|
||||
/* ---------------------------------------------- */
|
||||
|
||||
.globl __chkstk
|
||||
|
||||
__chkstk:
|
||||
xchg (%rsp),%rbp /* store ebp, get ret.addr */
|
||||
push %rbp /* push ret.addr */
|
||||
lea 8(%rsp),%rbp /* setup frame ptr */
|
||||
push %rcx /* save ecx */
|
||||
mov %rbp,%rcx
|
||||
movslq %eax,%rax
|
||||
P0:
|
||||
sub $4096,%rcx
|
||||
test %rax,(%rcx)
|
||||
sub $4096,%rax
|
||||
cmp $4096,%rax
|
||||
jge P0
|
||||
sub %rax,%rcx
|
||||
test %rax,(%rcx)
|
||||
|
||||
mov %rsp,%rax
|
||||
mov %rcx,%rsp
|
||||
mov (%rax),%rcx /* restore ecx */
|
||||
jmp *8(%rax)
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
/* setjmp/longjmp support */
|
||||
|
||||
.globl tinyc_getbp
|
||||
tinyc_getbp:
|
||||
mov %rbp,%rax
|
||||
ret
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#endif
|
||||
/* ---------------------------------------------- */
|
||||
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#ifndef __x86_64__
|
||||
/* ---------------------------------------------- */
|
||||
|
||||
/*
|
||||
int _except_handler3(
|
||||
PEXCEPTION_RECORD exception_record,
|
||||
PEXCEPTION_REGISTRATION registration,
|
||||
PCONTEXT context,
|
||||
PEXCEPTION_REGISTRATION dispatcher
|
||||
);
|
||||
|
||||
int __cdecl _XcptFilter(
|
||||
unsigned long xcptnum,
|
||||
PEXCEPTION_POINTERS pxcptinfoptrs
|
||||
);
|
||||
|
||||
struct _sehrec {
|
||||
void *esp; // 0
|
||||
void *exception_pointers; // 1
|
||||
void *prev; // 2
|
||||
void *handler; // 3
|
||||
void *scopetable; // 4
|
||||
int trylevel; // 5
|
||||
void *ebp // 6
|
||||
};
|
||||
|
||||
// this is what the assembler code below means:
|
||||
__try
|
||||
{
|
||||
// ...
|
||||
}
|
||||
__except (_XcptFilter(GetExceptionCode(), GetExceptionInformation()))
|
||||
{
|
||||
exit(GetExceptionCode());
|
||||
}
|
||||
*/
|
||||
|
||||
.globl _exception_info
|
||||
_exception_info:
|
||||
mov 1*4-24(%ebp),%eax
|
||||
ret
|
||||
|
||||
.globl _exception_code
|
||||
_exception_code:
|
||||
call _exception_info
|
||||
mov (%eax),%eax
|
||||
mov (%eax),%eax
|
||||
ret
|
||||
|
||||
seh_filter:
|
||||
call _exception_info
|
||||
push %eax
|
||||
call _exception_code
|
||||
push %eax
|
||||
call _XcptFilter
|
||||
add $ 8,%esp
|
||||
ret
|
||||
|
||||
seh_except:
|
||||
mov 0*4-24(%ebp),%esp
|
||||
call _exception_code
|
||||
push %eax
|
||||
call _exit
|
||||
|
||||
// msvcrt wants scopetables aligned and in read-only segment (using .text)
|
||||
.align 4
|
||||
seh_scopetable:
|
||||
.long -1
|
||||
.long seh_filter
|
||||
.long seh_except
|
||||
|
||||
seh_handler:
|
||||
jmp _except_handler3
|
||||
|
||||
.globl ___try__
|
||||
___try__:
|
||||
.globl __try__
|
||||
__try__:
|
||||
push %ebp
|
||||
mov 8(%esp),%ebp
|
||||
|
||||
// void *esp;
|
||||
lea 12(%esp),%eax
|
||||
mov %eax,0*4(%ebp)
|
||||
|
||||
// void *exception_pointers;
|
||||
xor %eax,%eax
|
||||
mov %eax,1*4(%ebp)
|
||||
|
||||
// void *prev;
|
||||
mov %fs:0,%eax
|
||||
mov %eax,2*4(%ebp)
|
||||
|
||||
// void *handler;
|
||||
mov $ seh_handler,%eax
|
||||
mov %eax,3*4(%ebp)
|
||||
|
||||
// void *scopetable;
|
||||
mov $ seh_scopetable,%eax
|
||||
mov %eax,4*4(%ebp)
|
||||
|
||||
// int trylevel;
|
||||
xor %eax,%eax
|
||||
mov %eax,5*4(%ebp)
|
||||
|
||||
// register new SEH
|
||||
lea 2*4(%ebp),%eax
|
||||
mov %eax,%fs:0
|
||||
|
||||
pop %ebp
|
||||
ret
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#else
|
||||
/* ---------------------------------------------- */
|
||||
|
||||
/* SEH on x86-64 not implemented */
|
||||
|
||||
/* ---------------------------------------------- */
|
||||
#endif
|
||||
/* ---------------------------------------------- */
|
79
05/tcc-final-old/win32/lib/crt1.c
Normal file
79
05/tcc-final-old/win32/lib/crt1.c
Normal file
|
@ -0,0 +1,79 @@
|
|||
// =============================================
|
||||
// crt1.c
|
||||
|
||||
// _UNICODE for tchar.h, UNICODE for API
|
||||
#include <tchar.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define _UNKNOWN_APP 0
|
||||
#define _CONSOLE_APP 1
|
||||
#define _GUI_APP 2
|
||||
|
||||
#define _MCW_PC 0x00030000 // Precision Control
|
||||
#define _PC_24 0x00020000 // 24 bits
|
||||
#define _PC_53 0x00010000 // 53 bits
|
||||
#define _PC_64 0x00000000 // 64 bits
|
||||
|
||||
#ifdef _UNICODE
|
||||
#define __tgetmainargs __wgetmainargs
|
||||
#define _tstart _wstart
|
||||
#define _tmain wmain
|
||||
#define _runtmain _runwmain
|
||||
#else
|
||||
#define __tgetmainargs __getmainargs
|
||||
#define _tstart _start
|
||||
#define _tmain main
|
||||
#define _runtmain _runmain
|
||||
#endif
|
||||
|
||||
typedef struct { int newmode; } _startupinfo;
|
||||
int __cdecl __tgetmainargs(int *pargc, _TCHAR ***pargv, _TCHAR ***penv, int globb, _startupinfo*);
|
||||
void __cdecl __set_app_type(int apptype);
|
||||
unsigned int __cdecl _controlfp(unsigned int new_value, unsigned int mask);
|
||||
extern int _tmain(int argc, _TCHAR * argv[], _TCHAR * env[]);
|
||||
|
||||
/* Allow command-line globbing with "int _dowildcard = 1;" in the user source */
|
||||
int _dowildcard;
|
||||
|
||||
void _tstart(void)
|
||||
{
|
||||
__TRY__
|
||||
_startupinfo start_info = {0};
|
||||
|
||||
// Sets the current application type
|
||||
__set_app_type(_CONSOLE_APP);
|
||||
|
||||
// Set default FP precision to 53 bits (8-byte double)
|
||||
// _MCW_PC (Precision control) is not supported on ARM
|
||||
#if defined __i386__ || defined __x86_64__
|
||||
_controlfp(_PC_53, _MCW_PC);
|
||||
#endif
|
||||
|
||||
__tgetmainargs( &__argc, &__targv, &_tenviron, _dowildcard, &start_info);
|
||||
exit(_tmain(__argc, __targv, _tenviron));
|
||||
}
|
||||
|
||||
int _runtmain(int argc, /* as tcc passed in */ char **argv)
|
||||
{
|
||||
#ifdef UNICODE
|
||||
_startupinfo start_info = {0};
|
||||
|
||||
__tgetmainargs(&__argc, &__targv, &_tenviron, _dowildcard, &start_info);
|
||||
/* may be wrong when tcc has received wildcards (*.c) */
|
||||
if (argc < __argc) {
|
||||
__targv += __argc - argc;
|
||||
__argc = argc;
|
||||
}
|
||||
#else
|
||||
__argc = argc;
|
||||
__targv = argv;
|
||||
#endif
|
||||
#if defined __i386__ || defined __x86_64__
|
||||
_controlfp(_PC_53, _MCW_PC);
|
||||
#endif
|
||||
return _tmain(__argc, __targv, _tenviron);
|
||||
}
|
||||
|
||||
// =============================================
|
3
05/tcc-final-old/win32/lib/crt1w.c
Normal file
3
05/tcc-final-old/win32/lib/crt1w.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
#define _UNICODE 1
|
||||
#define UNICODE 1
|
||||
#include "crt1.c"
|
13
05/tcc-final-old/win32/lib/dllcrt1.c
Normal file
13
05/tcc-final-old/win32/lib/dllcrt1.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
//+---------------------------------------------------------------------------
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved);
|
||||
|
||||
BOOL WINAPI _dllstart(HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
|
||||
{
|
||||
BOOL bRet;
|
||||
bRet = DllMain (hDll, dwReason, lpReserved);
|
||||
return bRet;
|
||||
}
|
||||
|
9
05/tcc-final-old/win32/lib/dllmain.c
Normal file
9
05/tcc-final-old/win32/lib/dllmain.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
//+---------------------------------------------------------------------------
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
337
05/tcc-final-old/win32/lib/gdi32.def
Normal file
337
05/tcc-final-old/win32/lib/gdi32.def
Normal file
|
@ -0,0 +1,337 @@
|
|||
LIBRARY gdi32.dll
|
||||
|
||||
EXPORTS
|
||||
AbortDoc
|
||||
AbortPath
|
||||
AddFontResourceA
|
||||
AddFontResourceW
|
||||
AngleArc
|
||||
AnimatePalette
|
||||
Arc
|
||||
ArcTo
|
||||
BeginPath
|
||||
BitBlt
|
||||
ByeByeGDI
|
||||
CancelDC
|
||||
CheckColorsInGamut
|
||||
ChoosePixelFormat
|
||||
Chord
|
||||
CloseEnhMetaFile
|
||||
CloseFigure
|
||||
CloseMetaFile
|
||||
ColorCorrectPalette
|
||||
ColorMatchToTarget
|
||||
CombineRgn
|
||||
CombineTransform
|
||||
CopyEnhMetaFileA
|
||||
CopyEnhMetaFileW
|
||||
CopyMetaFileA
|
||||
CopyMetaFileW
|
||||
CreateBitmap
|
||||
CreateBitmapIndirect
|
||||
CreateBrushIndirect
|
||||
CreateColorSpaceA
|
||||
CreateColorSpaceW
|
||||
CreateCompatibleBitmap
|
||||
CreateCompatibleDC
|
||||
CreateDCA
|
||||
CreateDCW
|
||||
CreateDIBPatternBrush
|
||||
CreateDIBPatternBrushPt
|
||||
CreateDIBSection
|
||||
CreateDIBitmap
|
||||
CreateDiscardableBitmap
|
||||
CreateEllipticRgn
|
||||
CreateEllipticRgnIndirect
|
||||
CreateEnhMetaFileA
|
||||
CreateEnhMetaFileW
|
||||
CreateFontA
|
||||
CreateFontIndirectA
|
||||
CreateFontIndirectW
|
||||
CreateFontW
|
||||
CreateHalftonePalette
|
||||
CreateHatchBrush
|
||||
CreateICA
|
||||
CreateICW
|
||||
CreateMetaFileA
|
||||
CreateMetaFileW
|
||||
CreatePalette
|
||||
CreatePatternBrush
|
||||
CreatePen
|
||||
CreatePenIndirect
|
||||
CreatePolyPolygonRgn
|
||||
CreatePolygonRgn
|
||||
CreateRectRgn
|
||||
CreateRectRgnIndirect
|
||||
CreateRoundRectRgn
|
||||
CreateScalableFontResourceA
|
||||
CreateScalableFontResourceW
|
||||
CreateSolidBrush
|
||||
DPtoLP
|
||||
DeleteColorSpace
|
||||
DeleteDC
|
||||
DeleteEnhMetaFile
|
||||
DeleteMetaFile
|
||||
DeleteObject
|
||||
DescribePixelFormat
|
||||
DeviceCapabilitiesEx
|
||||
DeviceCapabilitiesExA
|
||||
DeviceCapabilitiesExW
|
||||
DrawEscape
|
||||
Ellipse
|
||||
EnableEUDC
|
||||
EndDoc
|
||||
EndPage
|
||||
EndPath
|
||||
EnumEnhMetaFile
|
||||
EnumFontFamiliesA
|
||||
EnumFontFamiliesExA
|
||||
EnumFontFamiliesExW
|
||||
EnumFontFamiliesW
|
||||
EnumFontsA
|
||||
EnumFontsW
|
||||
EnumICMProfilesA
|
||||
EnumICMProfilesW
|
||||
EnumMetaFile
|
||||
EnumObjects
|
||||
EqualRgn
|
||||
Escape
|
||||
ExcludeClipRect
|
||||
ExtCreatePen
|
||||
ExtCreateRegion
|
||||
ExtEscape
|
||||
ExtFloodFill
|
||||
ExtSelectClipRgn
|
||||
ExtTextOutA
|
||||
ExtTextOutW
|
||||
FillPath
|
||||
FillRgn
|
||||
FixBrushOrgEx
|
||||
FlattenPath
|
||||
FloodFill
|
||||
FrameRgn
|
||||
GdiComment
|
||||
GdiFlush
|
||||
GdiGetBatchLimit
|
||||
GdiPlayDCScript
|
||||
GdiPlayJournal
|
||||
GdiPlayScript
|
||||
GdiSetBatchLimit
|
||||
GetArcDirection
|
||||
GetAspectRatioFilterEx
|
||||
GetBitmapBits
|
||||
GetBitmapDimensionEx
|
||||
GetBkColor
|
||||
GetBkMode
|
||||
GetBoundsRect
|
||||
GetBrushOrgEx
|
||||
GetCharABCWidthsA
|
||||
GetCharABCWidthsFloatA
|
||||
GetCharABCWidthsFloatW
|
||||
GetCharABCWidthsW
|
||||
GetCharWidth32A
|
||||
GetCharWidth32W
|
||||
GetCharWidthA
|
||||
GetCharWidthFloatA
|
||||
GetCharWidthFloatW
|
||||
GetCharWidthW
|
||||
GetCharacterPlacementA
|
||||
GetCharacterPlacementW
|
||||
GetClipBox
|
||||
GetClipRgn
|
||||
GetColorAdjustment
|
||||
GetColorSpace
|
||||
GetCurrentObject
|
||||
GetCurrentPositionEx
|
||||
GetDCOrgEx
|
||||
GetDIBColorTable
|
||||
GetDIBits
|
||||
GetDeviceCaps
|
||||
GetDeviceGammaRamp
|
||||
GetEnhMetaFileA
|
||||
GetEnhMetaFileBits
|
||||
GetEnhMetaFileDescriptionA
|
||||
GetEnhMetaFileDescriptionW
|
||||
GetEnhMetaFileHeader
|
||||
GetEnhMetaFilePaletteEntries
|
||||
GetEnhMetaFileW
|
||||
GetFontData
|
||||
GetFontLanguageInfo
|
||||
GetFontResourceInfo
|
||||
GetGlyphOutline
|
||||
GetGlyphOutlineA
|
||||
GetGlyphOutlineW
|
||||
GetGraphicsMode
|
||||
GetICMProfileA
|
||||
GetICMProfileW
|
||||
GetKerningPairs
|
||||
GetKerningPairsA
|
||||
GetKerningPairsW
|
||||
GetLayout
|
||||
GetLogColorSpaceA
|
||||
GetLogColorSpaceW
|
||||
GetMapMode
|
||||
GetMetaFileA
|
||||
GetMetaFileBitsEx
|
||||
GetMetaFileW
|
||||
GetMetaRgn
|
||||
GetMiterLimit
|
||||
GetNearestColor
|
||||
GetNearestPaletteIndex
|
||||
GetObjectA
|
||||
GetObjectType
|
||||
GetObjectW
|
||||
GetOutlineTextMetricsA
|
||||
GetOutlineTextMetricsW
|
||||
GetPaletteEntries
|
||||
GetPath
|
||||
GetPixel
|
||||
GetPixelFormat
|
||||
GetPolyFillMode
|
||||
GetROP2
|
||||
GetRandomRgn
|
||||
GetRasterizerCaps
|
||||
GetRegionData
|
||||
GetRgnBox
|
||||
GetStockObject
|
||||
GetStretchBltMode
|
||||
GetSystemPaletteEntries
|
||||
GetSystemPaletteUse
|
||||
GetTextAlign
|
||||
GetTextCharacterExtra
|
||||
GetTextCharset
|
||||
GetTextCharsetInfo
|
||||
GetTextColor
|
||||
GetTextExtentExPointA
|
||||
GetTextExtentExPointW
|
||||
GetTextExtentPoint32A
|
||||
GetTextExtentPoint32W
|
||||
GetTextExtentPointA
|
||||
GetTextExtentPointW
|
||||
GetTextFaceA
|
||||
GetTextFaceW
|
||||
GetTextMetricsA
|
||||
GetTextMetricsW
|
||||
GetViewportExtEx
|
||||
GetViewportOrgEx
|
||||
GetWinMetaFileBits
|
||||
GetWindowExtEx
|
||||
GetWindowOrgEx
|
||||
GetWorldTransform
|
||||
IntersectClipRect
|
||||
InvertRgn
|
||||
LPtoDP
|
||||
LineDDA
|
||||
LineTo
|
||||
MaskBlt
|
||||
ModifyWorldTransform
|
||||
MoveToEx
|
||||
OffsetClipRgn
|
||||
OffsetRgn
|
||||
OffsetViewportOrgEx
|
||||
OffsetWindowOrgEx
|
||||
PaintRgn
|
||||
PatBlt
|
||||
PathToRegion
|
||||
Pie
|
||||
PlayEnhMetaFile
|
||||
PlayEnhMetaFileRecord
|
||||
PlayMetaFile
|
||||
PlayMetaFileRecord
|
||||
PlgBlt
|
||||
PolyBezier
|
||||
PolyBezierTo
|
||||
PolyDraw
|
||||
PolyPolygon
|
||||
PolyPolyline
|
||||
PolyTextOutA
|
||||
PolyTextOutW
|
||||
Polygon
|
||||
Polyline
|
||||
PolylineTo
|
||||
PtInRegion
|
||||
PtVisible
|
||||
RealizePalette
|
||||
RectInRegion
|
||||
RectVisible
|
||||
Rectangle
|
||||
RemoveFontResourceA
|
||||
RemoveFontResourceW
|
||||
ResetDCA
|
||||
ResetDCW
|
||||
ResizePalette
|
||||
RestoreDC
|
||||
RoundRect
|
||||
SaveDC
|
||||
ScaleViewportExtEx
|
||||
ScaleWindowExtEx
|
||||
SelectClipPath
|
||||
SelectClipRgn
|
||||
SelectObject
|
||||
SelectPalette
|
||||
SetAbortProc
|
||||
SetArcDirection
|
||||
SetBitmapBits
|
||||
SetBitmapDimensionEx
|
||||
SetBkColor
|
||||
SetBkMode
|
||||
SetBoundsRect
|
||||
SetBrushOrgEx
|
||||
SetColorAdjustment
|
||||
SetColorSpace
|
||||
SetDIBColorTable
|
||||
SetDIBits
|
||||
SetDIBitsToDevice
|
||||
SetDeviceGammaRamp
|
||||
SetEnhMetaFileBits
|
||||
SetFontEnumeration
|
||||
SetGraphicsMode
|
||||
SetICMMode
|
||||
SetICMProfileA
|
||||
SetICMProfileW
|
||||
SetLayout
|
||||
SetMagicColors
|
||||
SetMapMode
|
||||
SetMapperFlags
|
||||
SetMetaFileBitsEx
|
||||
SetMetaRgn
|
||||
SetMiterLimit
|
||||
SetObjectOwner
|
||||
SetPaletteEntries
|
||||
SetPixel
|
||||
SetPixelFormat
|
||||
SetPixelV
|
||||
SetPolyFillMode
|
||||
SetROP2
|
||||
SetRectRgn
|
||||
SetStretchBltMode
|
||||
SetSystemPaletteUse
|
||||
SetTextAlign
|
||||
SetTextCharacterExtra
|
||||
SetTextColor
|
||||
SetTextJustification
|
||||
SetViewportExtEx
|
||||
SetViewportOrgEx
|
||||
SetWinMetaFileBits
|
||||
SetWindowExtEx
|
||||
SetWindowOrgEx
|
||||
SetWorldTransform
|
||||
StartDocA
|
||||
StartDocW
|
||||
StartPage
|
||||
StretchBlt
|
||||
StretchDIBits
|
||||
StrokeAndFillPath
|
||||
StrokePath
|
||||
SwapBuffers
|
||||
TextOutA
|
||||
TextOutW
|
||||
TranslateCharsetInfo
|
||||
UnrealizeObject
|
||||
UpdateColors
|
||||
UpdateICMRegKeyA
|
||||
UpdateICMRegKeyW
|
||||
WidenPath
|
||||
gdiPlaySpoolStream
|
||||
pfnRealizePalette
|
||||
pfnSelectPalette
|
770
05/tcc-final-old/win32/lib/kernel32.def
Normal file
770
05/tcc-final-old/win32/lib/kernel32.def
Normal file
|
@ -0,0 +1,770 @@
|
|||
LIBRARY kernel32.dll
|
||||
|
||||
EXPORTS
|
||||
AddAtomA
|
||||
AddAtomW
|
||||
AllocConsole
|
||||
AllocLSCallback
|
||||
AllocSLCallback
|
||||
AreFileApisANSI
|
||||
BackupRead
|
||||
BackupSeek
|
||||
BackupWrite
|
||||
Beep
|
||||
BeginUpdateResourceA
|
||||
BeginUpdateResourceW
|
||||
BuildCommDCBA
|
||||
BuildCommDCBAndTimeoutsA
|
||||
BuildCommDCBAndTimeoutsW
|
||||
BuildCommDCBW
|
||||
CallNamedPipeA
|
||||
CallNamedPipeW
|
||||
Callback12
|
||||
Callback16
|
||||
Callback20
|
||||
Callback24
|
||||
Callback28
|
||||
Callback32
|
||||
Callback36
|
||||
Callback4
|
||||
Callback40
|
||||
Callback44
|
||||
Callback48
|
||||
Callback52
|
||||
Callback56
|
||||
Callback60
|
||||
Callback64
|
||||
Callback8
|
||||
CancelDeviceWakeupRequest
|
||||
CancelIo
|
||||
CancelWaitableTimer
|
||||
ClearCommBreak
|
||||
ClearCommError
|
||||
CloseHandle
|
||||
CloseProfileUserMapping
|
||||
CloseSystemHandle
|
||||
CommConfigDialogA
|
||||
CommConfigDialogW
|
||||
CompareFileTime
|
||||
CompareStringA
|
||||
CompareStringW
|
||||
ConnectNamedPipe
|
||||
ContinueDebugEvent
|
||||
ConvertDefaultLocale
|
||||
ConvertThreadToFiber
|
||||
ConvertToGlobalHandle
|
||||
CopyFileA
|
||||
CopyFileExA
|
||||
CopyFileExW
|
||||
CopyFileW
|
||||
CreateConsoleScreenBuffer
|
||||
CreateDirectoryA
|
||||
CreateDirectoryExA
|
||||
CreateDirectoryExW
|
||||
CreateDirectoryW
|
||||
CreateEventA
|
||||
CreateEventW
|
||||
CreateFiber
|
||||
CreateFileA
|
||||
CreateFileMappingA
|
||||
CreateFileMappingW
|
||||
CreateFileW
|
||||
CreateIoCompletionPort
|
||||
CreateKernelThread
|
||||
CreateMailslotA
|
||||
CreateMailslotW
|
||||
CreateMutexA
|
||||
CreateMutexW
|
||||
CreateNamedPipeA
|
||||
CreateNamedPipeW
|
||||
CreatePipe
|
||||
CreateProcessA
|
||||
CreateProcessW
|
||||
CreateRemoteThread
|
||||
CreateSemaphoreA
|
||||
CreateSemaphoreW
|
||||
CreateSocketHandle
|
||||
CreateTapePartition
|
||||
CreateThread
|
||||
CreateToolhelp32Snapshot
|
||||
CreateWaitableTimerA
|
||||
CreateWaitableTimerW
|
||||
DebugActiveProcess
|
||||
DebugBreak
|
||||
DefineDosDeviceA
|
||||
DefineDosDeviceW
|
||||
DeleteAtom
|
||||
DeleteCriticalSection
|
||||
DeleteFiber
|
||||
DeleteFileA
|
||||
DeleteFileW
|
||||
DeviceIoControl
|
||||
DisableThreadLibraryCalls
|
||||
DisconnectNamedPipe
|
||||
DosDateTimeToFileTime
|
||||
DuplicateHandle
|
||||
EndUpdateResourceA
|
||||
EndUpdateResourceW
|
||||
EnterCriticalSection
|
||||
EnumCalendarInfoA
|
||||
EnumCalendarInfoExA
|
||||
EnumCalendarInfoExW
|
||||
EnumCalendarInfoW
|
||||
EnumDateFormatsA
|
||||
EnumDateFormatsExA
|
||||
EnumDateFormatsExW
|
||||
EnumDateFormatsW
|
||||
EnumLanguageGroupLocalesA
|
||||
EnumLanguageGroupLocalesW
|
||||
EnumResourceLanguagesA
|
||||
EnumResourceLanguagesW
|
||||
EnumResourceNamesA
|
||||
EnumResourceNamesW
|
||||
EnumResourceTypesA
|
||||
EnumResourceTypesW
|
||||
EnumSystemCodePagesA
|
||||
EnumSystemCodePagesW
|
||||
EnumSystemGeoID
|
||||
EnumSystemLanguageGroupsA
|
||||
EnumSystemLanguageGroupsW
|
||||
EnumSystemLocalesA
|
||||
EnumSystemLocalesW
|
||||
EnumTimeFormatsA
|
||||
EnumTimeFormatsW
|
||||
EnumUILanguagesA
|
||||
EnumUILanguagesW
|
||||
EraseTape
|
||||
EscapeCommFunction
|
||||
ExitProcess
|
||||
ExitThread
|
||||
ExpandEnvironmentStringsA
|
||||
ExpandEnvironmentStringsW
|
||||
FT_Exit0
|
||||
FT_Exit12
|
||||
FT_Exit16
|
||||
FT_Exit20
|
||||
FT_Exit24
|
||||
FT_Exit28
|
||||
FT_Exit32
|
||||
FT_Exit36
|
||||
FT_Exit4
|
||||
FT_Exit40
|
||||
FT_Exit44
|
||||
FT_Exit48
|
||||
FT_Exit52
|
||||
FT_Exit56
|
||||
FT_Exit8
|
||||
FT_Prolog
|
||||
FT_Thunk
|
||||
FatalAppExitA
|
||||
FatalAppExitW
|
||||
FatalExit
|
||||
FileTimeToDosDateTime
|
||||
FileTimeToLocalFileTime
|
||||
FileTimeToSystemTime
|
||||
FillConsoleOutputAttribute
|
||||
FillConsoleOutputCharacterA
|
||||
FillConsoleOutputCharacterW
|
||||
FindAtomA
|
||||
FindAtomW
|
||||
FindClose
|
||||
FindCloseChangeNotification
|
||||
FindFirstChangeNotificationA
|
||||
FindFirstChangeNotificationW
|
||||
FindFirstFileA
|
||||
FindFirstFileExA
|
||||
FindFirstFileExW
|
||||
FindFirstFileW
|
||||
FindNextChangeNotification
|
||||
FindNextFileA
|
||||
FindNextFileW
|
||||
FindResourceA
|
||||
FindResourceExA
|
||||
FindResourceExW
|
||||
FindResourceW
|
||||
FlushConsoleInputBuffer
|
||||
FlushFileBuffers
|
||||
FlushInstructionCache
|
||||
FlushViewOfFile
|
||||
FoldStringA
|
||||
FoldStringW
|
||||
FormatMessageA
|
||||
FormatMessageW
|
||||
FreeConsole
|
||||
FreeEnvironmentStringsA
|
||||
FreeEnvironmentStringsW
|
||||
FreeLSCallback
|
||||
FreeLibrary
|
||||
FreeLibraryAndExitThread
|
||||
FreeResource
|
||||
FreeSLCallback
|
||||
GenerateConsoleCtrlEvent
|
||||
GetACP
|
||||
GetAtomNameA
|
||||
GetAtomNameW
|
||||
GetBinaryType
|
||||
GetBinaryTypeA
|
||||
GetBinaryTypeW
|
||||
GetCPInfo
|
||||
GetCPInfoExA
|
||||
GetCPInfoExW
|
||||
GetCalendarInfoA
|
||||
GetCalendarInfoW
|
||||
GetCommConfig
|
||||
GetCommMask
|
||||
GetCommModemStatus
|
||||
GetCommProperties
|
||||
GetCommState
|
||||
GetCommTimeouts
|
||||
GetCommandLineA
|
||||
GetCommandLineW
|
||||
GetCompressedFileSizeA
|
||||
GetCompressedFileSizeW
|
||||
GetComputerNameA
|
||||
GetComputerNameW
|
||||
GetConsoleCP
|
||||
GetConsoleCursorInfo
|
||||
GetConsoleMode
|
||||
GetConsoleOutputCP
|
||||
GetConsoleScreenBufferInfo
|
||||
GetConsoleTitleA
|
||||
GetConsoleTitleW
|
||||
GetCurrencyFormatA
|
||||
GetCurrencyFormatW
|
||||
GetCurrentDirectoryA
|
||||
GetCurrentDirectoryW
|
||||
GetCurrentProcess
|
||||
GetCurrentProcessId
|
||||
GetCurrentThread
|
||||
GetCurrentThreadId
|
||||
GetDateFormatA
|
||||
GetDateFormatW
|
||||
GetDaylightFlag
|
||||
GetDefaultCommConfigA
|
||||
GetDefaultCommConfigW
|
||||
GetDevicePowerState
|
||||
GetDiskFreeSpaceA
|
||||
GetDiskFreeSpaceExA
|
||||
GetDiskFreeSpaceExW
|
||||
GetDiskFreeSpaceW
|
||||
GetDriveTypeA
|
||||
GetDriveTypeW
|
||||
GetEnvironmentStrings
|
||||
GetEnvironmentStringsA
|
||||
GetEnvironmentStringsW
|
||||
GetEnvironmentVariableA
|
||||
GetEnvironmentVariableW
|
||||
GetErrorMode
|
||||
GetExitCodeProcess
|
||||
GetExitCodeThread
|
||||
GetFileAttributesA
|
||||
GetFileAttributesExA
|
||||
GetFileAttributesExW
|
||||
GetFileAttributesW
|
||||
GetFileInformationByHandle
|
||||
GetFileSize
|
||||
GetFileTime
|
||||
GetFileType
|
||||
GetFullPathNameA
|
||||
GetFullPathNameW
|
||||
GetGeoInfoA
|
||||
GetGeoInfoW
|
||||
GetHandleContext
|
||||
GetHandleInformation
|
||||
GetLSCallbackTarget
|
||||
GetLSCallbackTemplate
|
||||
GetLargestConsoleWindowSize
|
||||
GetLastError
|
||||
GetLocalTime
|
||||
GetLocaleInfoA
|
||||
GetLocaleInfoW
|
||||
GetLogicalDriveStringsA
|
||||
GetLogicalDriveStringsW
|
||||
GetLogicalDrives
|
||||
GetLongPathNameA
|
||||
GetLongPathNameW
|
||||
GetMailslotInfo
|
||||
GetModuleFileNameA
|
||||
GetModuleFileNameW
|
||||
GetModuleHandleA
|
||||
GetModuleHandleW
|
||||
GetModuleHandleExA
|
||||
GetModuleHandleExW
|
||||
GetNamedPipeHandleStateA
|
||||
GetNamedPipeHandleStateW
|
||||
GetNamedPipeInfo
|
||||
GetNumberFormatA
|
||||
GetNumberFormatW
|
||||
GetNumberOfConsoleInputEvents
|
||||
GetNumberOfConsoleMouseButtons
|
||||
GetOEMCP
|
||||
GetOverlappedResult
|
||||
GetPriorityClass
|
||||
GetPrivateProfileIntA
|
||||
GetPrivateProfileIntW
|
||||
GetPrivateProfileSectionA
|
||||
GetPrivateProfileSectionNamesA
|
||||
GetPrivateProfileSectionNamesW
|
||||
GetPrivateProfileSectionW
|
||||
GetPrivateProfileStringA
|
||||
GetPrivateProfileStringW
|
||||
GetPrivateProfileStructA
|
||||
GetPrivateProfileStructW
|
||||
GetProcAddress
|
||||
GetProcessAffinityMask
|
||||
GetProcessFlags
|
||||
GetProcessHeap
|
||||
GetProcessHeaps
|
||||
GetProcessPriorityBoost
|
||||
GetProcessShutdownParameters
|
||||
GetProcessTimes
|
||||
GetProcessVersion
|
||||
GetProcessWorkingSetSize
|
||||
GetProductName
|
||||
GetProfileIntA
|
||||
GetProfileIntW
|
||||
GetProfileSectionA
|
||||
GetProfileSectionW
|
||||
GetProfileStringA
|
||||
GetProfileStringW
|
||||
GetQueuedCompletionStatus
|
||||
GetSLCallbackTarget
|
||||
GetSLCallbackTemplate
|
||||
GetShortPathNameA
|
||||
GetShortPathNameW
|
||||
GetStartupInfoA
|
||||
GetStartupInfoW
|
||||
GetStdHandle
|
||||
GetStringTypeA
|
||||
GetStringTypeExA
|
||||
GetStringTypeExW
|
||||
GetStringTypeW
|
||||
GetSystemDefaultLCID
|
||||
GetSystemDefaultLangID
|
||||
GetSystemDefaultUILanguage
|
||||
GetSystemDirectoryA
|
||||
GetSystemDirectoryW
|
||||
GetSystemInfo
|
||||
GetSystemPowerStatus
|
||||
GetSystemTime
|
||||
GetSystemTimeAdjustment
|
||||
GetSystemTimeAsFileTime
|
||||
GetTapeParameters
|
||||
GetTapePosition
|
||||
GetTapeStatus
|
||||
GetTempFileNameA
|
||||
GetTempFileNameW
|
||||
GetTempPathA
|
||||
GetTempPathW
|
||||
GetThreadContext
|
||||
GetThreadLocale
|
||||
GetThreadPriority
|
||||
GetThreadPriorityBoost
|
||||
GetThreadSelectorEntry
|
||||
GetThreadTimes
|
||||
GetTickCount
|
||||
GetTimeFormatA
|
||||
GetTimeFormatW
|
||||
GetTimeZoneInformation
|
||||
GetUserDefaultLCID
|
||||
GetUserDefaultLangID
|
||||
GetUserDefaultUILanguage
|
||||
GetUserGeoID
|
||||
GetVersion
|
||||
GetVersionExA
|
||||
GetVersionExW
|
||||
GetVolumeInformationA
|
||||
GetVolumeInformationW
|
||||
GetWindowsDirectoryA
|
||||
GetWindowsDirectoryW
|
||||
GetWriteWatch
|
||||
GlobalAddAtomA
|
||||
GlobalAddAtomW
|
||||
GlobalAlloc
|
||||
GlobalCompact
|
||||
GlobalDeleteAtom
|
||||
GlobalFindAtomA
|
||||
GlobalFindAtomW
|
||||
GlobalFix
|
||||
GlobalFlags
|
||||
GlobalFree
|
||||
GlobalGetAtomNameA
|
||||
GlobalGetAtomNameW
|
||||
GlobalHandle
|
||||
GlobalLock
|
||||
GlobalMemoryStatus
|
||||
GlobalReAlloc
|
||||
GlobalSize
|
||||
GlobalUnWire
|
||||
GlobalUnfix
|
||||
GlobalUnlock
|
||||
GlobalWire
|
||||
Heap32First
|
||||
Heap32ListFirst
|
||||
Heap32ListNext
|
||||
Heap32Next
|
||||
HeapAlloc
|
||||
HeapCompact
|
||||
HeapCreate
|
||||
HeapDestroy
|
||||
HeapFree
|
||||
HeapLock
|
||||
HeapReAlloc
|
||||
HeapSetFlags
|
||||
HeapSize
|
||||
HeapUnlock
|
||||
HeapValidate
|
||||
HeapWalk
|
||||
InitAtomTable
|
||||
InitializeCriticalSection
|
||||
InitializeCriticalSectionAndSpinCount
|
||||
InterlockedCompareExchange
|
||||
InterlockedDecrement
|
||||
InterlockedExchange
|
||||
InterlockedExchangeAdd
|
||||
InterlockedIncrement
|
||||
InvalidateNLSCache
|
||||
IsBadCodePtr
|
||||
IsBadHugeReadPtr
|
||||
IsBadHugeWritePtr
|
||||
IsBadReadPtr
|
||||
IsBadStringPtrA
|
||||
IsBadStringPtrW
|
||||
IsBadWritePtr
|
||||
IsDBCSLeadByte
|
||||
IsDBCSLeadByteEx
|
||||
IsDebuggerPresent
|
||||
IsLSCallback
|
||||
IsProcessorFeaturePresent
|
||||
IsSLCallback
|
||||
IsSystemResumeAutomatic
|
||||
IsValidCodePage
|
||||
IsValidLanguageGroup
|
||||
IsValidLocale
|
||||
K32Thk1632Epilog
|
||||
K32Thk1632Prolog
|
||||
K32_NtCreateFile
|
||||
K32_RtlNtStatusToDosError
|
||||
LCMapStringA
|
||||
LCMapStringW
|
||||
LeaveCriticalSection
|
||||
LoadLibraryA
|
||||
LoadLibraryExA
|
||||
LoadLibraryExW
|
||||
LoadLibraryW
|
||||
LoadModule
|
||||
LoadResource
|
||||
LocalAlloc
|
||||
LocalCompact
|
||||
LocalFileTimeToFileTime
|
||||
LocalFlags
|
||||
LocalFree
|
||||
LocalHandle
|
||||
LocalLock
|
||||
LocalReAlloc
|
||||
LocalShrink
|
||||
LocalSize
|
||||
LocalUnlock
|
||||
LockFile
|
||||
LockFileEx
|
||||
LockResource
|
||||
MakeCriticalSectionGlobal
|
||||
MapHInstLS
|
||||
MapHInstLS_PN
|
||||
MapHInstSL
|
||||
MapHInstSL_PN
|
||||
MapHModuleLS
|
||||
MapHModuleSL
|
||||
MapLS
|
||||
MapSL
|
||||
MapSLFix
|
||||
MapViewOfFile
|
||||
MapViewOfFileEx
|
||||
Module32First
|
||||
Module32Next
|
||||
MoveFileA
|
||||
MoveFileExA
|
||||
MoveFileExW
|
||||
MoveFileW
|
||||
MulDiv
|
||||
MultiByteToWideChar
|
||||
NotifyNLSUserCache
|
||||
OpenEventA
|
||||
OpenEventW
|
||||
OpenFile
|
||||
OpenFileMappingA
|
||||
OpenFileMappingW
|
||||
OpenMutexA
|
||||
OpenMutexW
|
||||
OpenProcess
|
||||
OpenProfileUserMapping
|
||||
OpenSemaphoreA
|
||||
OpenSemaphoreW
|
||||
OpenThread
|
||||
OpenVxDHandle
|
||||
OpenWaitableTimerA
|
||||
OpenWaitableTimerW
|
||||
OutputDebugStringA
|
||||
OutputDebugStringW
|
||||
PeekConsoleInputA
|
||||
PeekConsoleInputW
|
||||
PeekNamedPipe
|
||||
PostQueuedCompletionStatus
|
||||
PrepareTape
|
||||
Process32First
|
||||
Process32Next
|
||||
PulseEvent
|
||||
PurgeComm
|
||||
QT_Thunk
|
||||
QueryDosDeviceA
|
||||
QueryDosDeviceW
|
||||
QueryNumberOfEventLogRecords
|
||||
QueryOldestEventLogRecord
|
||||
QueryPerformanceCounter
|
||||
QueryPerformanceFrequency
|
||||
QueueUserAPC
|
||||
RaiseException
|
||||
ReadConsoleA
|
||||
ReadConsoleInputA
|
||||
ReadConsoleInputW
|
||||
ReadConsoleOutputA
|
||||
ReadConsoleOutputAttribute
|
||||
ReadConsoleOutputCharacterA
|
||||
ReadConsoleOutputCharacterW
|
||||
ReadConsoleOutputW
|
||||
ReadConsoleW
|
||||
ReadDirectoryChangesW
|
||||
ReadFile
|
||||
ReadFileEx
|
||||
ReadFileScatter
|
||||
ReadProcessMemory
|
||||
RegisterServiceProcess
|
||||
RegisterSysMsgHandler
|
||||
ReinitializeCriticalSection
|
||||
ReleaseMutex
|
||||
ReleaseSemaphore
|
||||
RemoveDirectoryA
|
||||
RemoveDirectoryW
|
||||
RequestDeviceWakeup
|
||||
RequestWakeupLatency
|
||||
ResetEvent
|
||||
ResetNLSUserInfoCache
|
||||
ResetWriteWatch
|
||||
ResumeThread
|
||||
RtlAddFunctionTable
|
||||
RtlDeleteFunctionTable
|
||||
RtlFillMemory
|
||||
RtlInstallFunctionTableCallback
|
||||
RtlMoveMemory
|
||||
RtlUnwind
|
||||
RtlUnwindEx
|
||||
RtlZeroMemory
|
||||
SMapLS
|
||||
SMapLS_IP_EBP_12
|
||||
SMapLS_IP_EBP_16
|
||||
SMapLS_IP_EBP_20
|
||||
SMapLS_IP_EBP_24
|
||||
SMapLS_IP_EBP_28
|
||||
SMapLS_IP_EBP_32
|
||||
SMapLS_IP_EBP_36
|
||||
SMapLS_IP_EBP_40
|
||||
SMapLS_IP_EBP_8
|
||||
SUnMapLS
|
||||
SUnMapLS_IP_EBP_12
|
||||
SUnMapLS_IP_EBP_16
|
||||
SUnMapLS_IP_EBP_20
|
||||
SUnMapLS_IP_EBP_24
|
||||
SUnMapLS_IP_EBP_28
|
||||
SUnMapLS_IP_EBP_32
|
||||
SUnMapLS_IP_EBP_36
|
||||
SUnMapLS_IP_EBP_40
|
||||
SUnMapLS_IP_EBP_8
|
||||
ScrollConsoleScreenBufferA
|
||||
ScrollConsoleScreenBufferW
|
||||
SearchPathA
|
||||
SearchPathW
|
||||
SetCalendarInfoA
|
||||
SetCalendarInfoW
|
||||
SetCommBreak
|
||||
SetCommConfig
|
||||
SetCommMask
|
||||
SetCommState
|
||||
SetCommTimeouts
|
||||
SetComputerNameA
|
||||
SetComputerNameW
|
||||
SetConsoleActiveScreenBuffer
|
||||
SetConsoleCP
|
||||
SetConsoleCtrlHandler
|
||||
SetConsoleCursorInfo
|
||||
SetConsoleCursorPosition
|
||||
SetConsoleMode
|
||||
SetConsoleOutputCP
|
||||
SetConsoleScreenBufferSize
|
||||
SetConsoleTextAttribute
|
||||
SetConsoleTitleA
|
||||
SetConsoleTitleW
|
||||
SetConsoleWindowInfo
|
||||
SetCriticalSectionSpinCount
|
||||
SetCurrentDirectoryA
|
||||
SetCurrentDirectoryW
|
||||
SetDaylightFlag
|
||||
SetDefaultCommConfigA
|
||||
SetDefaultCommConfigW
|
||||
SetEndOfFile
|
||||
SetEnvironmentVariableA
|
||||
SetEnvironmentVariableW
|
||||
SetErrorMode
|
||||
SetEvent
|
||||
SetFileApisToANSI
|
||||
SetFileApisToOEM
|
||||
SetFileAttributesA
|
||||
SetFileAttributesW
|
||||
SetFilePointer
|
||||
SetFilePointerEx
|
||||
SetFileTime
|
||||
SetHandleContext
|
||||
SetHandleCount
|
||||
SetHandleInformation
|
||||
SetLastError
|
||||
SetLocalTime
|
||||
SetLocaleInfoA
|
||||
SetLocaleInfoW
|
||||
SetMailslotInfo
|
||||
SetMessageWaitingIndicator
|
||||
SetNamedPipeHandleState
|
||||
SetPriorityClass
|
||||
SetProcessAffinityMask
|
||||
SetProcessPriorityBoost
|
||||
SetProcessShutdownParameters
|
||||
SetProcessWorkingSetSize
|
||||
SetStdHandle
|
||||
SetSystemPowerState
|
||||
SetSystemTime
|
||||
SetSystemTimeAdjustment
|
||||
SetTapeParameters
|
||||
SetTapePosition
|
||||
SetThreadAffinityMask
|
||||
SetThreadContext
|
||||
SetThreadExecutionState
|
||||
SetThreadIdealProcessor
|
||||
SetThreadLocale
|
||||
SetThreadPriority
|
||||
SetThreadPriorityBoost
|
||||
SetTimeZoneInformation
|
||||
SetUnhandledExceptionFilter
|
||||
SetUserGeoID
|
||||
SetVolumeLabelA
|
||||
SetVolumeLabelW
|
||||
SetWaitableTimer
|
||||
SetupComm
|
||||
SignalObjectAndWait
|
||||
SignalSysMsgHandlers
|
||||
SizeofResource
|
||||
Sleep
|
||||
SleepEx
|
||||
SuspendThread
|
||||
SwitchToFiber
|
||||
SwitchToThread
|
||||
SystemTimeToFileTime
|
||||
SystemTimeToTzSpecificLocalTime
|
||||
TerminateProcess
|
||||
TerminateThread
|
||||
Thread32First
|
||||
Thread32Next
|
||||
ThunkConnect32
|
||||
TlsAlloc
|
||||
TlsAllocInternal
|
||||
TlsFree
|
||||
TlsFreeInternal
|
||||
TlsGetValue
|
||||
TlsSetValue
|
||||
Toolhelp32ReadProcessMemory
|
||||
TransactNamedPipe
|
||||
TransmitCommChar
|
||||
TryEnterCriticalSection
|
||||
UTRegister
|
||||
UTUnRegister
|
||||
UnMapLS
|
||||
UnMapSLFixArray
|
||||
UnhandledExceptionFilter
|
||||
UninitializeCriticalSection
|
||||
UnlockFile
|
||||
UnlockFileEx
|
||||
UnmapViewOfFile
|
||||
UpdateResourceA
|
||||
UpdateResourceW
|
||||
VerLanguageNameA
|
||||
VerLanguageNameW
|
||||
VirtualAlloc
|
||||
VirtualAllocEx
|
||||
VirtualFree
|
||||
VirtualFreeEx
|
||||
VirtualLock
|
||||
VirtualProtect
|
||||
VirtualProtectEx
|
||||
VirtualQuery
|
||||
VirtualQueryEx
|
||||
VirtualUnlock
|
||||
WaitCommEvent
|
||||
WaitForDebugEvent
|
||||
WaitForMultipleObjects
|
||||
WaitForMultipleObjectsEx
|
||||
WaitForSingleObject
|
||||
WaitForSingleObjectEx
|
||||
WaitNamedPipeA
|
||||
WaitNamedPipeW
|
||||
WideCharToMultiByte
|
||||
WinExec
|
||||
WriteConsoleA
|
||||
WriteConsoleInputA
|
||||
WriteConsoleInputW
|
||||
WriteConsoleOutputA
|
||||
WriteConsoleOutputAttribute
|
||||
WriteConsoleOutputCharacterA
|
||||
WriteConsoleOutputCharacterW
|
||||
WriteConsoleOutputW
|
||||
WriteConsoleW
|
||||
WriteFile
|
||||
WriteFileEx
|
||||
WriteFileGather
|
||||
WritePrivateProfileSectionA
|
||||
WritePrivateProfileSectionW
|
||||
WritePrivateProfileStringA
|
||||
WritePrivateProfileStringW
|
||||
WritePrivateProfileStructA
|
||||
WritePrivateProfileStructW
|
||||
WriteProcessMemory
|
||||
WriteProfileSectionA
|
||||
WriteProfileSectionW
|
||||
WriteProfileStringA
|
||||
WriteProfileStringW
|
||||
WriteTapemark
|
||||
_DebugOut
|
||||
_DebugPrintf
|
||||
_hread
|
||||
_hwrite
|
||||
_lclose
|
||||
_lcreat
|
||||
_llseek
|
||||
_lopen
|
||||
_lread
|
||||
_lwrite
|
||||
dprintf
|
||||
lstrcat
|
||||
lstrcatA
|
||||
lstrcatW
|
||||
lstrcmp
|
||||
lstrcmpA
|
||||
lstrcmpW
|
||||
lstrcmpi
|
||||
lstrcmpiA
|
||||
lstrcmpiW
|
||||
lstrcpy
|
||||
lstrcpyA
|
||||
lstrcpyW
|
||||
lstrcpyn
|
||||
lstrcpynA
|
||||
lstrcpynW
|
||||
lstrlen
|
||||
lstrlenA
|
||||
lstrlenW
|
1399
05/tcc-final-old/win32/lib/msvcrt.def
Normal file
1399
05/tcc-final-old/win32/lib/msvcrt.def
Normal file
File diff suppressed because it is too large
Load diff
658
05/tcc-final-old/win32/lib/user32.def
Normal file
658
05/tcc-final-old/win32/lib/user32.def
Normal file
|
@ -0,0 +1,658 @@
|
|||
LIBRARY user32.dll
|
||||
|
||||
EXPORTS
|
||||
ActivateKeyboardLayout
|
||||
AdjustWindowRect
|
||||
AdjustWindowRectEx
|
||||
AlignRects
|
||||
AllowSetForegroundWindow
|
||||
AnimateWindow
|
||||
AnyPopup
|
||||
AppendMenuA
|
||||
AppendMenuW
|
||||
ArrangeIconicWindows
|
||||
AttachThreadInput
|
||||
BeginDeferWindowPos
|
||||
BeginPaint
|
||||
BlockInput
|
||||
BringWindowToTop
|
||||
BroadcastSystemMessage
|
||||
BroadcastSystemMessageA
|
||||
BroadcastSystemMessageW
|
||||
CalcChildScroll
|
||||
CallMsgFilter
|
||||
CallMsgFilterA
|
||||
CallMsgFilterW
|
||||
CallNextHookEx
|
||||
CallWindowProcA
|
||||
CallWindowProcW
|
||||
CascadeChildWindows
|
||||
CascadeWindows
|
||||
ChangeClipboardChain
|
||||
ChangeDisplaySettingsA
|
||||
ChangeDisplaySettingsExA
|
||||
ChangeDisplaySettingsExW
|
||||
ChangeDisplaySettingsW
|
||||
ChangeMenuA
|
||||
ChangeMenuW
|
||||
CharLowerA
|
||||
CharLowerBuffA
|
||||
CharLowerBuffW
|
||||
CharLowerW
|
||||
CharNextA
|
||||
CharNextExA
|
||||
CharNextExW
|
||||
CharNextW
|
||||
CharPrevA
|
||||
CharPrevExA
|
||||
CharPrevExW
|
||||
CharPrevW
|
||||
CharToOemA
|
||||
CharToOemBuffA
|
||||
CharToOemBuffW
|
||||
CharToOemW
|
||||
CharUpperA
|
||||
CharUpperBuffA
|
||||
CharUpperBuffW
|
||||
CharUpperW
|
||||
CheckDlgButton
|
||||
CheckMenuItem
|
||||
CheckMenuRadioItem
|
||||
CheckRadioButton
|
||||
ChildWindowFromPoint
|
||||
ChildWindowFromPointEx
|
||||
ClientThreadConnect
|
||||
ClientToScreen
|
||||
ClipCursor
|
||||
CloseClipboard
|
||||
CloseDesktop
|
||||
CloseWindow
|
||||
CloseWindowStation
|
||||
CopyAcceleratorTableA
|
||||
CopyAcceleratorTableW
|
||||
CopyIcon
|
||||
CopyImage
|
||||
CopyRect
|
||||
CountClipboardFormats
|
||||
CreateAcceleratorTableA
|
||||
CreateAcceleratorTableW
|
||||
CreateCaret
|
||||
CreateCursor
|
||||
CreateDesktopA
|
||||
CreateDesktopW
|
||||
CreateDialogIndirectParamA
|
||||
CreateDialogIndirectParamW
|
||||
CreateDialogParamA
|
||||
CreateDialogParamW
|
||||
CreateIcon
|
||||
CreateIconFromResource
|
||||
CreateIconFromResourceEx
|
||||
CreateIconIndirect
|
||||
CreateMDIWindowA
|
||||
CreateMDIWindowW
|
||||
CreateMenu
|
||||
CreatePopupMenu
|
||||
CreateWindowExA
|
||||
CreateWindowExW
|
||||
CreateWindowStationA
|
||||
CreateWindowStationW
|
||||
DdeAbandonTransaction
|
||||
DdeAccessData
|
||||
DdeAddData
|
||||
DdeClientTransaction
|
||||
DdeCmpStringHandles
|
||||
DdeConnect
|
||||
DdeConnectList
|
||||
DdeCreateDataHandle
|
||||
DdeCreateStringHandleA
|
||||
DdeCreateStringHandleW
|
||||
DdeDisconnect
|
||||
DdeDisconnectList
|
||||
DdeEnableCallback
|
||||
DdeFreeDataHandle
|
||||
DdeFreeStringHandle
|
||||
DdeGetData
|
||||
DdeGetLastError
|
||||
DdeImpersonateClient
|
||||
DdeInitializeA
|
||||
DdeInitializeW
|
||||
DdeKeepStringHandle
|
||||
DdeNameService
|
||||
DdePostAdvise
|
||||
DdeQueryConvInfo
|
||||
DdeQueryNextServer
|
||||
DdeQueryStringA
|
||||
DdeQueryStringW
|
||||
DdeReconnect
|
||||
DdeSetQualityOfService
|
||||
DdeSetUserHandle
|
||||
DdeUnaccessData
|
||||
DdeUninitialize
|
||||
DefDlgProcA
|
||||
DefDlgProcW
|
||||
DefFrameProcA
|
||||
DefFrameProcW
|
||||
DefMDIChildProcA
|
||||
DefMDIChildProcW
|
||||
DefWindowProcA
|
||||
DefWindowProcW
|
||||
DeferWindowPos
|
||||
DeleteMenu
|
||||
DestroyAcceleratorTable
|
||||
DestroyCaret
|
||||
DestroyCursor
|
||||
DestroyIcon
|
||||
DestroyMenu
|
||||
DestroyWindow
|
||||
DialogBoxIndirectParamA
|
||||
DialogBoxIndirectParamW
|
||||
DialogBoxParamA
|
||||
DialogBoxParamW
|
||||
DispatchMessageA
|
||||
DispatchMessageW
|
||||
DlgDirListA
|
||||
DlgDirListComboBoxA
|
||||
DlgDirListComboBoxW
|
||||
DlgDirListW
|
||||
DlgDirSelectComboBoxExA
|
||||
DlgDirSelectComboBoxExW
|
||||
DlgDirSelectExA
|
||||
DlgDirSelectExW
|
||||
DragDetect
|
||||
DragObject
|
||||
DrawAnimatedRects
|
||||
DrawCaption
|
||||
DrawCaptionTempA
|
||||
DrawCaptionTempW
|
||||
DrawEdge
|
||||
DrawFocusRect
|
||||
DrawFrame
|
||||
DrawFrameControl
|
||||
DrawIcon
|
||||
DrawIconEx
|
||||
DrawMenuBar
|
||||
DrawMenuBarTemp
|
||||
DrawStateA
|
||||
DrawStateW
|
||||
DrawTextA
|
||||
DrawTextExA
|
||||
DrawTextExW
|
||||
DrawTextW
|
||||
EditWndProc
|
||||
EmptyClipboard
|
||||
EnableMenuItem
|
||||
EnableScrollBar
|
||||
EnableWindow
|
||||
EndDeferWindowPos
|
||||
EndDialog
|
||||
EndMenu
|
||||
EndPaint
|
||||
EndTask
|
||||
EnumChildWindows
|
||||
EnumClipboardFormats
|
||||
EnumDesktopWindows
|
||||
EnumDesktopsA
|
||||
EnumDesktopsW
|
||||
EnumDisplayDevicesA
|
||||
EnumDisplayDevicesW
|
||||
EnumDisplayMonitors
|
||||
EnumDisplaySettingsA
|
||||
EnumDisplaySettingsExA
|
||||
EnumDisplaySettingsExW
|
||||
EnumDisplaySettingsW
|
||||
EnumPropsA
|
||||
EnumPropsExA
|
||||
EnumPropsExW
|
||||
EnumPropsW
|
||||
EnumThreadWindows
|
||||
EnumWindowStationsA
|
||||
EnumWindowStationsW
|
||||
EnumWindows
|
||||
EqualRect
|
||||
ExcludeUpdateRgn
|
||||
ExitWindowsEx
|
||||
FillRect
|
||||
FindWindowA
|
||||
FindWindowExA
|
||||
FindWindowExW
|
||||
FindWindowW
|
||||
FlashWindow
|
||||
FlashWindowEx
|
||||
FrameRect
|
||||
FreeDDElParam
|
||||
GetActiveWindow
|
||||
GetAltTabInfo
|
||||
GetAncestor
|
||||
GetAsyncKeyState
|
||||
GetCapture
|
||||
GetCaretBlinkTime
|
||||
GetCaretPos
|
||||
GetClassInfoA
|
||||
GetClassInfoExA
|
||||
GetClassInfoExW
|
||||
GetClassInfoW
|
||||
GetClassLongA
|
||||
GetClassLongW
|
||||
GetClassNameA
|
||||
GetClassNameW
|
||||
GetClassWord
|
||||
GetClientRect
|
||||
GetClipCursor
|
||||
GetClipboardData
|
||||
GetClipboardFormatNameA
|
||||
GetClipboardFormatNameW
|
||||
GetClipboardOwner
|
||||
GetClipboardSequenceNumber
|
||||
GetClipboardViewer
|
||||
GetComboBoxInfo
|
||||
GetCursor
|
||||
GetCursorInfo
|
||||
GetCursorPos
|
||||
GetDC
|
||||
GetDCEx
|
||||
GetDesktopWindow
|
||||
GetDialogBaseUnits
|
||||
GetDlgCtrlID
|
||||
GetDlgItem
|
||||
GetDlgItemInt
|
||||
GetDlgItemTextA
|
||||
GetDlgItemTextW
|
||||
GetDoubleClickTime
|
||||
GetFocus
|
||||
GetForegroundWindow
|
||||
GetGUIThreadInfo
|
||||
GetGuiResources
|
||||
GetIconInfo
|
||||
GetInputDesktop
|
||||
GetInputState
|
||||
GetInternalWindowPos
|
||||
GetKBCodePage
|
||||
GetKeyNameTextA
|
||||
GetKeyNameTextW
|
||||
GetKeyState
|
||||
GetKeyboardLayout
|
||||
GetKeyboardLayoutList
|
||||
GetKeyboardLayoutNameA
|
||||
GetKeyboardLayoutNameW
|
||||
GetKeyboardState
|
||||
GetKeyboardType
|
||||
GetLastActivePopup
|
||||
GetListBoxInfo
|
||||
GetMenu
|
||||
GetMenuBarInfo
|
||||
GetMenuCheckMarkDimensions
|
||||
GetMenuContextHelpId
|
||||
GetMenuDefaultItem
|
||||
GetMenuInfo
|
||||
GetMenuItemCount
|
||||
GetMenuItemID
|
||||
GetMenuItemInfoA
|
||||
GetMenuItemInfoW
|
||||
GetMenuItemRect
|
||||
GetMenuState
|
||||
GetMenuStringA
|
||||
GetMenuStringW
|
||||
GetMessageA
|
||||
GetMessageExtraInfo
|
||||
GetMessagePos
|
||||
GetMessageTime
|
||||
GetMessageW
|
||||
GetMonitorInfoA
|
||||
GetMonitorInfoW
|
||||
GetMouseMovePoints
|
||||
GetMouseMovePointsEx
|
||||
GetNextDlgGroupItem
|
||||
GetNextDlgTabItem
|
||||
GetNextQueueWindow
|
||||
GetOpenClipboardWindow
|
||||
GetParent
|
||||
GetPriorityClipboardFormat
|
||||
GetProcessDefaultLayout
|
||||
GetProcessWindowStation
|
||||
GetPropA
|
||||
GetPropW
|
||||
GetQueueStatus
|
||||
GetScrollBarInfo
|
||||
GetScrollInfo
|
||||
GetScrollPos
|
||||
GetScrollRange
|
||||
GetShellWindow
|
||||
GetSubMenu
|
||||
GetSysColor
|
||||
GetSysColorBrush
|
||||
GetSystemMenu
|
||||
GetSystemMetrics
|
||||
GetTabbedTextExtentA
|
||||
GetTabbedTextExtentW
|
||||
GetThreadDesktop
|
||||
GetTitleBarInfo
|
||||
GetTopWindow
|
||||
GetUpdateRect
|
||||
GetUpdateRgn
|
||||
GetUserObjectInformationA
|
||||
GetUserObjectInformationW
|
||||
GetUserObjectSecurity
|
||||
GetWindow
|
||||
GetWindowContextHelpId
|
||||
GetWindowDC
|
||||
GetWindowInfo
|
||||
GetWindowLongPtrA
|
||||
GetWindowLongPtrW
|
||||
SetWindowLongPtrA
|
||||
SetWindowLongPtrW
|
||||
GetWindowLongA
|
||||
GetWindowLongW
|
||||
GetWindowModuleFileNameA
|
||||
GetWindowModuleFileNameW
|
||||
GetWindowPlacement
|
||||
GetWindowRect
|
||||
GetWindowRgn
|
||||
GetWindowTextA
|
||||
GetWindowTextLengthA
|
||||
GetWindowTextLengthW
|
||||
GetWindowTextW
|
||||
GetWindowThreadProcessId
|
||||
GetWindowWord
|
||||
GrayStringA
|
||||
GrayStringW
|
||||
HasSystemSleepStarted
|
||||
HideCaret
|
||||
HiliteMenuItem
|
||||
IMPGetIMEA
|
||||
IMPGetIMEW
|
||||
IMPQueryIMEA
|
||||
IMPQueryIMEW
|
||||
IMPSetIMEA
|
||||
IMPSetIMEW
|
||||
ImpersonateDdeClientWindow
|
||||
InSendMessage
|
||||
InSendMessageEx
|
||||
InflateRect
|
||||
InitSharedTable
|
||||
InitTask
|
||||
InsertMenuA
|
||||
InsertMenuItemA
|
||||
InsertMenuItemW
|
||||
InsertMenuW
|
||||
InternalGetWindowText
|
||||
IntersectRect
|
||||
InvalidateRect
|
||||
InvalidateRgn
|
||||
InvertRect
|
||||
IsCharAlphaA
|
||||
IsCharAlphaNumericA
|
||||
IsCharAlphaNumericW
|
||||
IsCharAlphaW
|
||||
IsCharLowerA
|
||||
IsCharLowerW
|
||||
IsCharUpperA
|
||||
IsCharUpperW
|
||||
IsChild
|
||||
IsClipboardFormatAvailable
|
||||
IsDialogMessage
|
||||
IsDialogMessageA
|
||||
IsDialogMessageW
|
||||
IsDlgButtonChecked
|
||||
IsHungThread
|
||||
IsIconic
|
||||
IsMenu
|
||||
IsRectEmpty
|
||||
IsWindow
|
||||
IsWindowEnabled
|
||||
IsWindowUnicode
|
||||
IsWindowVisible
|
||||
IsZoomed
|
||||
KillTimer
|
||||
LoadAcceleratorsA
|
||||
LoadAcceleratorsW
|
||||
LoadBitmapA
|
||||
LoadBitmapW
|
||||
LoadCursorA
|
||||
LoadCursorFromFileA
|
||||
LoadCursorFromFileW
|
||||
LoadCursorW
|
||||
LoadIconA
|
||||
LoadIconW
|
||||
LoadImageA
|
||||
LoadImageW
|
||||
LoadKeyboardLayoutA
|
||||
LoadKeyboardLayoutW
|
||||
LoadMenuA
|
||||
LoadMenuIndirectA
|
||||
LoadMenuIndirectW
|
||||
LoadMenuW
|
||||
LoadStringA
|
||||
LoadStringW
|
||||
LockSetForegroundWindow
|
||||
LockWindowStation
|
||||
LockWindowUpdate
|
||||
LookupIconIdFromDirectory
|
||||
LookupIconIdFromDirectoryEx
|
||||
MapDialogRect
|
||||
MapVirtualKeyA
|
||||
MapVirtualKeyExA
|
||||
MapVirtualKeyExW
|
||||
MapVirtualKeyW
|
||||
MapWindowPoints
|
||||
MenuItemFromPoint
|
||||
MessageBeep
|
||||
MessageBoxA
|
||||
MessageBoxExA
|
||||
MessageBoxExW
|
||||
MessageBoxIndirectA
|
||||
MessageBoxIndirectW
|
||||
MessageBoxW
|
||||
ModifyAccess
|
||||
ModifyMenuA
|
||||
ModifyMenuW
|
||||
MonitorFromPoint
|
||||
MonitorFromRect
|
||||
MonitorFromWindow
|
||||
MoveWindow
|
||||
MsgWaitForMultipleObjects
|
||||
MsgWaitForMultipleObjectsEx
|
||||
NotifyWinEvent
|
||||
OemKeyScan
|
||||
OemToCharA
|
||||
OemToCharBuffA
|
||||
OemToCharBuffW
|
||||
OemToCharW
|
||||
OffsetRect
|
||||
OpenClipboard
|
||||
OpenDesktopA
|
||||
OpenDesktopW
|
||||
OpenIcon
|
||||
OpenInputDesktop
|
||||
OpenWindowStationA
|
||||
OpenWindowStationW
|
||||
PackDDElParam
|
||||
PaintDesktop
|
||||
PeekMessageA
|
||||
PeekMessageW
|
||||
PlaySoundEvent
|
||||
PostMessageA
|
||||
PostMessageW
|
||||
PostQuitMessage
|
||||
PostThreadMessageA
|
||||
PostThreadMessageW
|
||||
PtInRect
|
||||
RealChildWindowFromPoint
|
||||
RealGetWindowClass
|
||||
RedrawWindow
|
||||
RegisterClassA
|
||||
RegisterClassExA
|
||||
RegisterClassExW
|
||||
RegisterClassW
|
||||
RegisterClipboardFormatA
|
||||
RegisterClipboardFormatW
|
||||
RegisterDeviceNotificationA
|
||||
RegisterDeviceNotificationW
|
||||
RegisterHotKey
|
||||
RegisterLogonProcess
|
||||
RegisterNetworkCapabilities
|
||||
RegisterSystemThread
|
||||
RegisterTasklist
|
||||
RegisterWindowMessageA
|
||||
RegisterWindowMessageW
|
||||
ReleaseCapture
|
||||
ReleaseDC
|
||||
RemoveMenu
|
||||
RemovePropA
|
||||
RemovePropW
|
||||
ReplyMessage
|
||||
ReuseDDElParam
|
||||
ScreenToClient
|
||||
ScrollDC
|
||||
ScrollWindow
|
||||
ScrollWindowEx
|
||||
SendDlgItemMessageA
|
||||
SendDlgItemMessageW
|
||||
SendIMEMessageExA
|
||||
SendIMEMessageExW
|
||||
SendInput
|
||||
SendMessageA
|
||||
SendMessageCallbackA
|
||||
SendMessageCallbackW
|
||||
SendMessageTimeoutA
|
||||
SendMessageTimeoutW
|
||||
SendMessageW
|
||||
SendNotifyMessageA
|
||||
SendNotifyMessageW
|
||||
SetActiveWindow
|
||||
SetCapture
|
||||
SetCaretBlinkTime
|
||||
SetCaretPos
|
||||
SetClassLongA
|
||||
SetClassLongW
|
||||
SetClassWord
|
||||
SetClipboardData
|
||||
SetClipboardViewer
|
||||
SetCursor
|
||||
SetCursorPos
|
||||
SetDebugErrorLevel
|
||||
SetDeskWallpaper
|
||||
SetDesktopBitmap
|
||||
SetDlgItemInt
|
||||
SetDlgItemTextA
|
||||
SetDlgItemTextW
|
||||
SetDoubleClickTime
|
||||
SetFocus
|
||||
SetForegroundWindow
|
||||
SetInternalWindowPos
|
||||
SetKeyboardState
|
||||
SetLastErrorEx
|
||||
SetLogonNotifyWindow
|
||||
SetMenu
|
||||
SetMenuContextHelpId
|
||||
SetMenuDefaultItem
|
||||
SetMenuInfo
|
||||
SetMenuItemBitmaps
|
||||
SetMenuItemInfoA
|
||||
SetMenuItemInfoW
|
||||
SetMessageExtraInfo
|
||||
SetMessageQueue
|
||||
SetParent
|
||||
SetProcessDefaultLayout
|
||||
SetProcessWindowStation
|
||||
SetPropA
|
||||
SetPropW
|
||||
SetRect
|
||||
SetRectEmpty
|
||||
SetScrollInfo
|
||||
SetScrollPos
|
||||
SetScrollRange
|
||||
SetShellWindow
|
||||
SetSysColors
|
||||
SetSysColorsTemp
|
||||
SetSystemCursor
|
||||
SetThreadDesktop
|
||||
SetTimer
|
||||
SetUserObjectInformationA
|
||||
SetUserObjectInformationW
|
||||
SetUserObjectSecurity
|
||||
SetWinEventHook
|
||||
SetWindowContextHelpId
|
||||
SetWindowFullScreenState
|
||||
SetWindowLongA
|
||||
SetWindowLongW
|
||||
SetWindowPlacement
|
||||
SetWindowPos
|
||||
SetWindowRgn
|
||||
SetWindowTextA
|
||||
SetWindowTextW
|
||||
SetWindowWord
|
||||
SetWindowsHookA
|
||||
SetWindowsHookExA
|
||||
SetWindowsHookExW
|
||||
SetWindowsHookW
|
||||
ShowCaret
|
||||
ShowCursor
|
||||
ShowOwnedPopups
|
||||
ShowScrollBar
|
||||
ShowWindow
|
||||
ShowWindowAsync
|
||||
SubtractRect
|
||||
SwapMouseButton
|
||||
SwitchDesktop
|
||||
SwitchToThisWindow
|
||||
SysErrorBox
|
||||
SystemParametersInfoA
|
||||
SystemParametersInfoW
|
||||
TabbedTextOutA
|
||||
TabbedTextOutW
|
||||
TileChildWindows
|
||||
TileWindows
|
||||
ToAscii
|
||||
ToAsciiEx
|
||||
ToUnicode
|
||||
ToUnicodeEx
|
||||
TrackMouseEvent
|
||||
TrackPopupMenu
|
||||
TrackPopupMenuEx
|
||||
TranslateAccelerator
|
||||
TranslateAcceleratorA
|
||||
TranslateAcceleratorW
|
||||
TranslateMDISysAccel
|
||||
TranslateMessage
|
||||
UnhookWinEvent
|
||||
UnhookWindowsHook
|
||||
UnhookWindowsHookEx
|
||||
UnionRect
|
||||
UnloadKeyboardLayout
|
||||
UnlockWindowStation
|
||||
UnpackDDElParam
|
||||
UnregisterClassA
|
||||
UnregisterClassW
|
||||
UnregisterDeviceNotification
|
||||
UnregisterHotKey
|
||||
UpdateWindow
|
||||
UserClientDllInitialize
|
||||
UserIsSystemResumeAutomatic
|
||||
UserSetDeviceHoldState
|
||||
UserSignalProc
|
||||
UserTickleTimer
|
||||
ValidateRect
|
||||
ValidateRgn
|
||||
VkKeyScanA
|
||||
VkKeyScanExA
|
||||
VkKeyScanExW
|
||||
VkKeyScanW
|
||||
WINNLSEnableIME
|
||||
WINNLSGetEnableStatus
|
||||
WINNLSGetIMEHotkey
|
||||
WNDPROC_CALLBACK
|
||||
WaitForInputIdle
|
||||
WaitMessage
|
||||
WinHelpA
|
||||
WinHelpW
|
||||
WinOldAppHackoMatic
|
||||
WindowFromDC
|
||||
WindowFromPoint
|
||||
YieldTask
|
||||
_SetProcessDefaultLayout
|
||||
keybd_event
|
||||
mouse_event
|
||||
wsprintfA
|
||||
wsprintfW
|
||||
wvsprintfA
|
||||
wvsprintfW
|
75
05/tcc-final-old/win32/lib/wincrt1.c
Normal file
75
05/tcc-final-old/win32/lib/wincrt1.c
Normal file
|
@ -0,0 +1,75 @@
|
|||
//+---------------------------------------------------------------------------
|
||||
|
||||
// _UNICODE for tchar.h, UNICODE for API
|
||||
#include <tchar.h>
|
||||
|
||||
#include <windows.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define __UNKNOWN_APP 0
|
||||
#define __CONSOLE_APP 1
|
||||
#define __GUI_APP 2
|
||||
void __set_app_type(int);
|
||||
void _controlfp(unsigned a, unsigned b);
|
||||
|
||||
#ifdef _UNICODE
|
||||
#define __tgetmainargs __wgetmainargs
|
||||
#define _twinstart _wwinstart
|
||||
#define _runtwinmain _runwwinmain
|
||||
int APIENTRY wWinMain(HINSTANCE, HINSTANCE, LPWSTR, int);
|
||||
#else
|
||||
#define __tgetmainargs __getmainargs
|
||||
#define _twinstart _winstart
|
||||
#define _runtwinmain _runwinmain
|
||||
#endif
|
||||
|
||||
typedef struct { int newmode; } _startupinfo;
|
||||
int __cdecl __tgetmainargs(int *pargc, _TCHAR ***pargv, _TCHAR ***penv, int globb, _startupinfo*);
|
||||
|
||||
static int go_winmain(TCHAR *arg1)
|
||||
{
|
||||
STARTUPINFO si;
|
||||
_TCHAR *szCmd, *p;
|
||||
int fShow;
|
||||
|
||||
GetStartupInfo(&si);
|
||||
if (si.dwFlags & STARTF_USESHOWWINDOW)
|
||||
fShow = si.wShowWindow;
|
||||
else
|
||||
fShow = SW_SHOWDEFAULT;
|
||||
|
||||
szCmd = NULL, p = GetCommandLine();
|
||||
if (arg1)
|
||||
szCmd = _tcsstr(p, arg1);
|
||||
if (NULL == szCmd)
|
||||
szCmd = _tcsdup(__T(""));
|
||||
else if (szCmd > p && szCmd[-1] == __T('"'))
|
||||
--szCmd;
|
||||
#if defined __i386__ || defined __x86_64__
|
||||
_controlfp(0x10000, 0x30000);
|
||||
#endif
|
||||
return _tWinMain(GetModuleHandle(NULL), NULL, szCmd, fShow);
|
||||
}
|
||||
|
||||
int _twinstart(void)
|
||||
{
|
||||
__TRY__
|
||||
_startupinfo start_info_con = {0};
|
||||
__set_app_type(__GUI_APP);
|
||||
__tgetmainargs(&__argc, &__targv, &_tenviron, 0, &start_info_con);
|
||||
exit(go_winmain(__argc > 1 ? __targv[1] : NULL));
|
||||
}
|
||||
|
||||
int _runtwinmain(int argc, /* as tcc passed in */ char **argv)
|
||||
{
|
||||
#ifdef UNICODE
|
||||
_startupinfo start_info = {0};
|
||||
__tgetmainargs(&__argc, &__targv, &_tenviron, 0, &start_info);
|
||||
/* may be wrong when tcc has received wildcards (*.c) */
|
||||
if (argc < __argc)
|
||||
__targv += __argc - argc, __argc = argc;
|
||||
#else
|
||||
__argc = argc, __targv = argv;
|
||||
#endif
|
||||
return go_winmain(__argc > 1 ? __targv[1] : NULL);
|
||||
}
|
3
05/tcc-final-old/win32/lib/wincrt1w.c
Normal file
3
05/tcc-final-old/win32/lib/wincrt1w.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
#define _UNICODE 1
|
||||
#define UNICODE 1
|
||||
#include "wincrt1.c"
|
Loading…
Add table
Add a link
Reference in a new issue