projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[NOTEPAD] Let the user know when an opened file is modified. By Lee Schroeder. CORE...
[reactos.git]
/
reactos
/
base
/
applications
/
notepad
/
notepad.h
1
#ifndef _NOTEPAD_H
2
#define _NOTEPAD_H
3
4
#ifndef STRSAFE_NO_DEPRECATE
5
#define STRSAFE_NO_DEPRECATE
6
#endif
7
8
#include <stdarg.h>
9
10
#include <windef.h>
11
#include <winbase.h>
12
#include <winuser.h>
13
#include <winnls.h>
14
#include <wingdi.h>
15
#include <shellapi.h>
16
#include <commdlg.h>
17
#include <tchar.h>
18
#include <malloc.h>
19
20
#include
"main.h"
21
#include
"dialog.h"
22
23
void
UpdateWindowCaption
(
BOOL clearModifyAlert
);
24
25
#endif
/* _NOTEPAD_H */