| 1234567891011121314 |
- #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, LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstance);
|