repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Disable single-column listviews when double-clicked, and provide a
[AROS.git]
/
workbench
/
libs
/
popupmenu
/
pmversion.c
blob
a7e0880389155de362a4dc0732905fd822c41e68
1
//
2
// pmversion.c
3
//
4
// PopupMenu Library - Version information
5
//
6
// Copyright (C)1996-2001 Henrik Isaksson <henrik@boing.nu>
7
// All Rights Reserved.
8
//
9
10
#ifdef _M68020
11
#ifdef _M68030
12
#ifdef _M68040
13
#ifdef _M68060
14
#define __CPU__
"060"
15
#else
16
#define __CPU__
"040"
17
#endif
18
#else
19
#define __CPU__
"030"
20
#endif
21
#else
22
#define __CPU__
"020"
23
#endif
24
#else
25
#define __CPU__
"000"
26
#endif
27
28
char
_LibID
[] =
"$VER: popupmenu.library-"
__CPU__
" 10.10.180 (24.04.03) ©1996-2001 Henrik Isaksson"
;