| 12345678910111213141516 |
- #pragma once
- #include "Win32.h"
- int Err(HWND hwnd, LPCTSTR message);
- int Err(ATOM atom, LPCTSTR message);
- int Err(LPCTSTR title, LPCTSTR message);
- void StartBDS();
- void StopBDS();
- void ForceStopBDS();
- bool SendCommand(LPWSTR command);
- HWND CreateChildWindow(HWND hFather, HWND hChild, LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstance);
- LRESULT CALLBACK WeatherProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|