mirror of
https://github.com/leozide/leocad
synced 2025-01-06 05:24:55 +01:00
15 lines
446 B
C
15 lines
446 B
C
|
///////////////////////////////////////
|
||
|
// Miscelaneous Helper Functions
|
||
|
|
||
|
#ifndef _TOOLS_H_
|
||
|
#define _TOOLS_H_
|
||
|
|
||
|
BOOL CreateRGBPalette(HDC hdc, CPalette **ppCPalette);
|
||
|
BOOL FolderBrowse(CString *strFolder, LPCSTR lpszTitle, HWND hWndOwner);
|
||
|
HANDLE MakeDib(HBITMAP hbitmap, UINT bits);
|
||
|
HBITMAP CreateColorBitmap (UINT cx, UINT cy, COLORREF cr);
|
||
|
|
||
|
UINT APIENTRY PrintHookProc(HWND hdlg, UINT uiMsg, WPARAM wParam, LPARAM lParam);
|
||
|
|
||
|
#endif // _TOOLS_H_
|