Python code coverage for PC/WinMain.c
# | count | content |
---|---|---|
1 | n/a | /* Minimal main program -- everything is loaded from the library. */ |
2 | n/a | |
3 | n/a | #include "Python.h" |
4 | n/a | |
5 | n/a | #define WIN32_LEAN_AND_MEAN |
6 | n/a | #include <windows.h> |
7 | n/a | |
8 | n/a | int WINAPI wWinMain( |
9 | n/a | HINSTANCE hInstance, /* handle to current instance */ |
10 | n/a | HINSTANCE hPrevInstance, /* handle to previous instance */ |
11 | n/a | LPWSTR lpCmdLine, /* pointer to command line */ |
12 | n/a | int nCmdShow /* show state of window */ |
13 | n/a | ) |
14 | n/a | { |
15 | n/a | return Py_Main(__argc, __wargv); |
16 | n/a | } |