projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
show the function in which the assert failure occured if the compiler supports it
[wxWidgets.git]
/
include
/
wx
/
msw
/
wince
/
wince.rc
1
#include <commctrl.h>
2
3
#ifdef WIN32_PLATFORM_WFSP
4
#include "wx/msw/wince/smartphone.rc"
5
#else
6
7
// Dummy menubar/toolbar for WinCE
8
9
5000 RCDATA DISCARDABLE
10
BEGIN
11
// Popup menu name
12
5000,
13
// Count of items to put on the menu
14
0
15
END
16
17
5000 MENU DISCARDABLE
18
BEGIN
19
POPUP "Dummy"
20
BEGIN
21
MENUITEM "Dummy" 99
22
END
23
END
24
25
#endif
26