mirror of https://github.com/lianthony/NT4.0
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.
20 lines
606 B
20 lines
606 B
#ifndef _WINCOMON_H_
|
|
#define _WINCOMON_H_
|
|
|
|
extern HWND hMainWnd;
|
|
extern CHAR szFileName[];
|
|
extern CHAR szAppName[];
|
|
extern CHAR szCustFilterSpec[MAXCUSTFILTER];
|
|
extern CHAR szFileTitle[];
|
|
|
|
BOOL GetFileNameFromBrowse( HWND, PSTR, UINT, PSTR, PSTR, PSTR );
|
|
long APIENTRY StatusWndProc( HWND, UINT, UINT, LONG);
|
|
void cwCenter( HWND, int);
|
|
int LoadStrIntoAnsiBuf( HINSTANCE, UINT, LPSTR, int);
|
|
BOOL LoadNewFile(CHAR *);
|
|
void szFilterSpecFromSz1Sz2(char *sz,char *sz1,char *sz2);
|
|
void CatSzFilterSpecs(char *sz,char *sz1,char *sz2);
|
|
|
|
|
|
#endif // _WINCOMON_H_
|
|
|