summaryrefslogtreecommitdiffstats
path: root/PC/python3dll.c
blob: ef2907112564fe4506d9733ba1407a1aec6095aa (plain)
1
2
3
4
5
6
7
8
9
#include <windows.h>

BOOL WINAPI
DllMain(HINSTANCE hInstDLL,
        DWORD fdwReason,
        LPVOID lpReserved)
{
    return TRUE;
}
erating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-9/+21 * Issue #17619: Make input() check for Ctrl-C correctly on Windows.Richard Oudkerk2013-04-031-0/+1 * Issue #17357: Add missing verbosity messages when running underBrett Cannon2013-04-011-4268/+4281 * Fixes issue4653 - Correctly specify the buffer size to FormatMessageW andGregory P. Smith2013-03-231-1/+1 * Issue #15038 : Fixing the condition broadcast and docs.Kristján Valur Jónsson2013-03-20