?? conv4watcom.pl
字號(hào):
#! perl## Copyright (C) 1996 Systemics Ltd (http://www.systemics.com/)# All rights reserved.### This file automates the creation of C stubs that# are understandable by Watcom C### For those of you without Perl, here is a description:## The first line of the .c file MUST be '#include "local.h"'# Each function declaration of the form# __declspec(dllexport) stack_item *FUNCTION_DECL# will be changed to # stack_item * __export FUNCTION_DECL#print "#include \"local.h\"\n";while (<>) { if( /^__declspec\(dllexport\) stack_item \*/ ) { s/^__declspec\(dllexport\) stack_item \*/stack_item \* __export /; } print;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -