代码搜索:GetKey
找到约 2,187 项符合「GetKey」的源代码
代码结果 2,187
www.eeworm.com/read/320801/6310814
c getkey.c
#ifndef _CHIPSOURCE_DEFINE
#include "CHIPSOURCE.c"
#endif
BYTE GetKey(void);
BYTE GetKey(void)
{
data BYTE key;
while(KeyCode==0) {KEY_ROW0=0;KEY_ROW1=0;}
key=KeyCode;
KeyCode=0;
www.eeworm.com/read/491607/6430990
c getkey.c
/*************************************************************/
/***********获取按键程序**************************************/
/*************************************************************/
void GETKEY
www.eeworm.com/read/491542/6437435
c getkey.c
/*串口1通信底层函数*/
#include // SFR declarations
char _getkey () {
char c;
while ((SCON1&0X1)!=0X1);
c = SBUF1;
SCON1&=~0X1;
return (c);
}
www.eeworm.com/read/410239/11296888
dpr getkey.dpr
library GetKey;
uses
windows,
messages,
sysutils,
UnitConst in 'UnitConst.pas',
UnitGetkeyDll in 'UnitGetkeyDll.pas';
{$R *.res}
exports RemoveGetkey,InstallGetkey;
begin
e
www.eeworm.com/read/410239/11296904
dof getkey.dof
[FileVersion]
Version=6.0
[Compiler]
A=8
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=1
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
U
www.eeworm.com/read/410239/11296918
res getkey.res
www.eeworm.com/read/410239/11296924
dll getkey.dll
www.eeworm.com/read/410239/11296949
cfg getkey.cfg
-$A8
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J+
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
www.eeworm.com/read/410239/11297381
dpr getkey.dpr
library Getkey;
uses
SysUtils,
Windows,
UnitHookDLL in 'UnitHookDLL.pas';
exports
OpenGetKeyHook,
CloseGetKeyHook;
begin
end.
www.eeworm.com/read/410239/11297385