mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
23d333c090
This change includes many bug fixes, for the NT polyfills, strings, memory, boot, and math libraries which were discovered by adding more tools for recreational programming, such as PC emulation. Lemon has also been vendored because it works so well at parsing languages.
8 lines
363 B
C++
8 lines
363 B
C++
#define CopyFile(...) __imp_CopyFileW(__VA_ARGS__)
|
|
extern typeof(CopyFile) *const __imp_CopyFileW __msabi;
|
|
|
|
#define FlushFileBuffers(...) __imp_FlushFileBuffers(__VA_ARGS__)
|
|
extern typeof(FlushFileBuffers) *const __imp_FlushFileBuffers __msabi;
|
|
|
|
#define GetFileType(...) __imp_GetFileType(__VA_ARGS__)
|
|
extern typeof(GetFileType) *const __imp_GetFileType __msabi;
|