代码搜索:SCROLL

找到约 4,241 项符合「SCROLL」的源代码

代码结果 4,241
www.eeworm.com/read/367346/9755484

rc scroll1.rc

#include "windows.h" #include "Scroll1.h" MYAPP ICON DISCARDABLE "GENERIC.ICO" MYAPP MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "E&xit",
www.eeworm.com/read/367346/9755487

cpp scroll1.cpp

#include #include "Scroll1.h" #if defined (WIN32) #define IS_WIN32 TRUE #else #define IS_WIN32 FALSE #endif #define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x8000000
www.eeworm.com/read/367346/9755489

h scroll1.h

#define IDM_EXIT 100 #define IDM_DEMO 200 #define IDM_ABOUT 301 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About (HWND, UINT, WPARAM
www.eeworm.com/read/367346/9755490

exe scroll1.exe

www.eeworm.com/read/268544/11136120

txt item_scroll.txt

// 设定由老旧卷轴所得到的道具。 // nameid, item_name(dummy), rate // 道具的ID、道具的名字(dummy)、确率(可以做*10000的物品。500000为50%1000000就是100%。) // 道具的ID是0的场合确率道具选择中失败的时候就成功了(或得到某样东西)默认道具的ID可以识别。(有复数场合只有最後的物有效。) ,默认道具的ID是0的场合道 ...
www.eeworm.com/read/336165/12473684

dof scroll1.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/336165/12473687

res scroll1.res

www.eeworm.com/read/336165/12473691

cfg scroll1.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/336165/12473695

dpr scroll1.dpr

program Scroll1; uses Forms, ScrollF in 'ScrollF.pas' {Form1}, StatusF in 'StatusF.pas' {Status}; {$R *.RES} begin Application.CreateForm(TForm1, Form1); Application.CreateForm
www.eeworm.com/read/336165/12473769

dpr scroll2.dpr

program Scroll2; uses Forms, ScrollF in 'ScrollF.pas' {Form2}; {$R *.RES} begin Application.CreateForm(TForm2, Form2); Application.Run; end.