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.
14 lines
405 B
14 lines
405 B
/^\([ ]*#\)/s!!//-protect-\1!
|
|
/^\(.*\\\)$/s!!//-protect-\1!
|
|
1i\
|
|
#include "APPLY.H"
|
|
|
|
s/WORD[ ]*wParam/WPARAM wParam/
|
|
s/LONG[ ]*lParam/LPARAM lParam/
|
|
s/long[ ]*lParam/LPARAM lParam/
|
|
s/unsigned[ ]*message/UINT message/
|
|
s/\([ ]*\)_far\([ ]*\)/\1FAR\2/g
|
|
s/\([ ]*\)far\([ ]*\)/\1FAR\2/g
|
|
s/\([ ]*\)pascal\([ ]*\)/\1PASCAL\2/g
|
|
s/\([ ]*\)_pascal\([ ]*\)/\1PASCAL\2/g
|
|
s/FAR\([ ]*\)PASCAL/\1APIENTRY/g
|