File: ab_c_os2.fte

package info (click to toggle)
fte 0.50.2b6-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,596 kB
  • ctags: 6,433
  • sloc: cpp: 47,985; ansic: 2,795; sh: 112; makefile: 105; perl: 29
file content (49 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# abbreviations for OS/2 api.
eventmap C {
    abbrev 'wswp' 'WinSetWindowPos';
    abbrev 'wcsw' 'WinCreateStdWindow';
    abbrev 'wrc'  'WinRegisterClass';
    abbrev 'wdwp' 'WinDefWindowProc';
    abbrev 'wdw'  'WinDestroyWindow';
    abbrev 'wir'  'WinInvalidateRect';
    abbrev 'wbp'  'WinBeginPaint';
    abbrev 'wdb'  'WinDrawBitmap';
    abbrev 'wdt'  'WinDrawText';
    abbrev 'wep'  'WinEndPaint';
    abbrev 'wi'   'WinInitialize';
    abbrev 'wt'   'WinTerminate';
    abbrev 'wsm'  'WinSendMsg';
    abbrev 'wpm'  'WinPostMsg';
    
    abbrev 'MR'   'MRESULT';
    abbrev 'MP'   'MPARAM';
    
    # MPFROMxxx
    abbrev 'MPV'  'MPVOID';
    abbrev 'MPP'  'MPFROMP';
    abbrev 'MPHW' 'MPFROMHWND';
    abbrev 'MPC'  'MPFROMCHAR';
    abbrev 'MPS'  'MPFROMSHORT';
    abbrev 'MPS2' 'MPFROMSHORT2';
    abbrev 'MPL'  'MPFROMLONG';
    
    # xxxFROMMP
    abbrev 'PMP'  'PVOIDFROMMP';
    abbrev 'HWMP' 'HWNDFROMMP';
    abbrev 'C1MP' 'CHAR1FROMMP';
    abbrev 'C2MP' 'CHAR2FROMMP';
    abbrev 'C3MP' 'CHAR3FROMMP';
    abbrev 'C4MP' 'CHAR4FROMMP';
    
    # MRFROMxxx
    abbrev 'MRP'  'MRFROMP';
    abbrev 'MRS'  'MRFROMSHORT';
    abbrev 'MR2S' 'MRFROM2SHORT';
    abbrev 'MRL'  'MRFROMLONG';
    
    # xxxFROMMR
    abbrev 'PMR'  'PVOIDFROMMR';
    abbrev 'S1MR' 'SHORT1FROMMR';
    abbrev 'S2MR' 'SHORT2FROMMR';
    abbrev 'LMR'  'LONGFROMMR';
}