You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
547 B
12 lines
547 B
#pragma once |
|
|
|
namespace dvl { |
|
|
|
BOOL EndDialog(HWND hDlg, INT_PTR nResult); |
|
BOOL SetDlgItemText(HWND hDlg, int nIDDlgItem, LPCSTR lpString); |
|
BOOL SetWindowPos(HWND hWnd, HWND hWndInsertAfter, int X, int Y, int cx, int cy, UINT uFlags); |
|
DWORD FormatMessage(DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, char *lpBuffer, DWORD nSize, va_list *Arguments); |
|
int DialogBoxParam(HINSTANCE hInstance, LPCSTR msgId, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam); |
|
LPCSTR DVL_MAKEINTRESOURCE(int i); |
|
|
|
} // namespace dvl
|
|
|