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.
26 lines
916 B
26 lines
916 B
/****************************** Module Header ******************************\
|
|
* Module Name: wndstuff.h
|
|
*
|
|
* Kent's Window Test. To be used as a program template.
|
|
*
|
|
* Created: 09-May-91
|
|
* Author: KentD
|
|
*
|
|
* Copyright (c) 1991 Microsoft Corporation
|
|
\***************************************************************************/
|
|
|
|
#include "resource.h"
|
|
|
|
#define CONVERTTOUINT16 0
|
|
#define CONVERTTOINT 1
|
|
#define CONVERTTOFLOAT 2
|
|
|
|
void Test(HWND hwnd);
|
|
INT_PTR ShowDialogBox(DLGPROC, int);
|
|
|
|
INT_PTR CALLBACK CreateFontDlgProc(HWND, UINT, WPARAM, LPARAM);
|
|
INT_PTR CALLBACK DrawGlyphsDlgProc(HWND, UINT, WPARAM, LPARAM);
|
|
INT_PTR CALLBACK PathGlyphsDlgProc(HWND, UINT, WPARAM, LPARAM);
|
|
INT_PTR CALLBACK GetGlyphMetricsDlgProc(HWND, UINT, WPARAM, LPARAM);
|
|
INT_PTR CALLBACK AddFontFileDlgProc(HWND, UINT, WPARAM, LPARAM);
|
|
INT_PTR CALLBACK RemoveFontDlgProc(HWND, UINT, WPARAM, LPARAM);
|