mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
We can now link even smaller Python binaries. For example, the hello.com program in the Python build directory is a compiled linked executable of hello.py which just prints hello world. Using decentralized sections, we can make that binary 1.9mb in size (noting that python.com is 6.3 megs!) This works for nontrivial programs too. For example, say we want an APE binary that's equivalent to python.com -m http.server. Our makefile now builds such a binary using the new launcher and it's only 3.2mb in size since Python sources get turned into ELF objects, which tell our linker that we need things like native hashing algorithm code.
67 lines
5 KiB
C
67 lines
5 KiB
C
#ifndef COSMOPOLITAN_LIBC_NT_EVENTS_H_
|
|
#define COSMOPOLITAN_LIBC_NT_EVENTS_H_
|
|
#include "libc/nt/struct/msg.h"
|
|
#include "libc/nt/struct/point.h"
|
|
#include "libc/nt/struct/securityattributes.h"
|
|
/* ░░░░
|
|
▒▒▒░░░▒▒▒▒▒▒▒▓▓▓░
|
|
▒▒▒▒░░░▒▒▒▒▒▒▓▓▓▓▓▓░
|
|
▒▒▒▒░░░▒▒▒▒▒▒▒▓▓▓▓▓▓ ▒▓░
|
|
▒▒▒░░░░▒▒▒▒▒▒▓▓▓▓▓▓ ▓▓▓▓▓▓▒ ▒▒▒▓▓█
|
|
▒▒▒▒░░░▒▒▒▒▒▒▒▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓▓
|
|
░▒▒▒░░░░▒▒▒▒▒▒▓▓▓▓▓▓ █▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓█
|
|
▒▒▒▒░░░▒▒▒▒▒▒▒▓▓▓▓▓░ ▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓▓
|
|
▒▒▒▒░░░▒▒▒▒▒▒▒▓▓▓▓▓▓ ▒▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓▒
|
|
▒▒▒▒▓▓ ▓▒▒▓▓▓▓ ▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓█
|
|
▒▓ ▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓
|
|
░░░░░░░░░░░▒▒▒▒ ▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓█
|
|
▒▒░░░░░░░░░░▒▒▒▒▒▓▓▓ ▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▓▓▓
|
|
░▒░░░░░░░░░░░▒▒▒▒▒▓▓ ▓░ ░▓███▓
|
|
▒▒░░░░░░░░░░▒▒▒▒▒▓▓░ ▒▓▓▓▒▒▒ ░▒▒▒▓ ████████████
|
|
▒▒░░░░░░░░░░░▒▒▒▒▒▓▓ ▒▓▓▓▓▒▒▒▒▒▒▒▒░░░▒▒▒▒▒░ ░███
|
|
▒░░░░░░░░░░░▒▒▒▒▒▓▓ ▓▓▓▓▒▒▒▒▒▒▒▒░░░░▒▒▒▒▓ ███
|
|
▒▒░░░░░░░░░░▒▒▒▒▒▒▓▓ ▒▓▓▓▒▒▒▒▒▒▒▒░░░░▒▒▒▒▒ ▓██
|
|
▒░░░░░░░░░░░▒▒▒▒▒▓▓ ▓▓▓▓▒▒▒▒▒▒▒▒░░░▒▒▒▒▒▓ ▓██
|
|
▒▒░░░▒▒▒░░░▒▒░▒▒▒▓▓▒ ▒▓▓▓▒▒▒▒▒▒▒▒░░░░▒▒▒▒▒ ███
|
|
░▒▓ ░▓▓▓▓▒▒▒▒▒▒▒▒░░░░▒▒▒▒▓ ▓██
|
|
╔────────────────────────────────────────────────────────────────▀▀▀─────────│─╗
|
|
│ cosmopolitan § new technology » events ─╬─│┼
|
|
╚────────────────────────────────────────────────────────────────────────────│*/
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
int32_t GetMessage(struct NtMsg *lpMsg, int64_t hWnd, uint32_t wMsgFilterMin,
|
|
uint32_t wMsgFilterMax);
|
|
int32_t TranslateMessage(const struct NtMsg *lpMsg);
|
|
intptr_t DispatchMessage(const struct NtMsg *lpMsg);
|
|
void PostQuitMessage(int nExitCode);
|
|
bool32 GetCursorPos(struct NtPoint *lpPoint);
|
|
int64_t SendMessage(int64_t hWnd, uint32_t Msg, uint64_t wParam,
|
|
int64_t lParam);
|
|
|
|
#define EVENTLOG_SUCCESS 0x00000000
|
|
#define EVENTLOG_ERROR_TYPE 0x00000001
|
|
#define EVENTLOG_WARNING_TYPE 0x00000002
|
|
#define EVENTLOG_INFORMATION_TYPE 0x00000004
|
|
#define EVENTLOG_AUDIT_SUCCESS 0x00000008
|
|
#define EVENTLOG_AUDIT_FAILURE 0x00000010
|
|
|
|
int32_t ReportEventA(int64_t handle, uint16_t wType, uint16_t wCategory,
|
|
uint32_t dwEventID, const char *lpUserId,
|
|
uint16_t wNumStrings, uint32_t dwDataSize,
|
|
const char **lpStrings, void **lpRawData);
|
|
int64_t RegisterEventSourceA(const char *lpUNCServerName,
|
|
const char *lpSourceName);
|
|
int32_t DeregisterEventSource(uint64_t handle);
|
|
|
|
int64_t CreateEvent(struct NtSecurityAttributes *lpEventAttributes,
|
|
bool32 bManualReset, bool32 bInitialState,
|
|
const char16_t *lpName);
|
|
int64_t CreateEventEx(struct NtSecurityAttributes *lpEventAttributes,
|
|
const char16_t *lpName, uint32_t dwFlags,
|
|
uint32_t dwDesiredAccess);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_NT_EVENTS_H_ */
|