MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / Window

Method Window

src/Windows/Window.cpp:24–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22HINSTANCE Window::_hDefaultInst = NULL;
23
24Window::Window(HINSTANCE hInst, LPCTSTR classname) :
25 //m_hInstance(hInst),
26 m_hwnd(NULL),
27 m_hParent(NULL),
28 m_className(classname),
29 m_created(false),
30 m_exStyle(0),
31 m_style(0)
32{
33 if (hInst == 0)
34 m_hInstance = _hDefaultInst;
35 else
36 m_hInstance = hInst;
37}
38
39int Window::Create(HWND hParent) {
40 if (m_created)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected