隐藏
快速浏览
热点资源区
【 新手上路 | First Readme 】
【 PSP 资源交流下载区 】
【 NDS 资源交流下载区 】
【 NGC/WII 测试讨论区 】
【 C77 热点专区 】
文章分类
文章系统
模拟器专区
【 模拟新闻评论区 | Comments On Emulator News 】
【 模拟器疑难解答区 | Emulator FAQ 】
【 模拟器周边区 | Emulators Periphery 】
【 黑历史研究区 | History Behind the Darkness 】
游戏讨论区
【 DC 窝棚 | DreamCast Wikiup 】
【 家用机游戏讨论区 | Console Games Communion 】
【 掌机游戏交流区 | Handlet Games Communion 】
【 游戏 ROM 交流区 | Games ROM Communion 】
【 ISO 游戏交流区 | ISO Game Communion 】
【 PC 游戏讨论区 | PC Games 】
【 网络游戏讨论区 | Online Games 】
【 游戏攻略区 | Game Guide 】
专题站
【 Falcom 领域 | Falcom Kingdom 】
【 洛克人专区 | Rockman Fans 】
【合金弹头专题区 | METALSLUG 】
【 广州游戏小组 | GZ Games Team 】
特色专区
【 幽幽茶馆 | Tea bar 】
【 轻小说专题站 | Light Novel Store 】
【 美图沙龙 | Pictures Salon 】
【 动漫 Club-Zero | Comic Club-Zero 】
【 PSP 影音专区 | PSP Movies 】
【 LIKEC流行演唱讨论区 | LIKEC SINGING SUCCESS 】
【 电脑全方位 | Computer All Round 】
【 影视讨论区 | Movies 】
【 外国语学习交流 | Foreign Language Corner 】
资源预览区
【 ISO 游戏预览区 】
【 TV 游戏预览区 】
【 PC 游戏预览区 】
【 影视预览区 】
资源共享
【 BT 发布区 | BT Torrents Search 】
【 联盟贸易区 | ChinaEmu Shop 】
【 凤凰网关服务区 | PxNet Services 】
站务区
【 版主申请及意见区 | Support & Feedback 】
【 站务公开区 | Site Duty Opening 】
【 VIP 会员交流区 | VIP Members 】
登录
注册
×
登录
用户名
Email
密 码
认证码
找回密码
游客
帖子:
今日:
我的主题
我的回复
我的收藏
好友近况
登录IP: 18.227.190.231
首页
门户
我的空间
搜索
社区服务
帮助
中央银行
勋章中心
道具商城
邀请注册
任务中心
节日红包
基本信息
到访IP统计
管理团队
管理操作
在线会员
会员排行
版块排行
帖子排行
推荐排行
wind
【 浮游城 - Castle in the Sky | 开放邀请注册,PS|SS|WII|DC下载研究中心 】
»
【 电脑全方位 | Computer All Round 】
»
[古董]找到一些 Turbo C 的源程序
上一主题
下一主题
新 帖
主题 : [古董]找到一些 Turbo C 的源程序
使用道具 |
复制链接
|
浏览器收藏
|
打印
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
楼主
发表于: 2005-01-29 22:44
全看
|
小
中
大
[古董]找到一些 Turbo C 的源程序
第一个是,提取 DOS 版仙剑 MIDI 音乐的,原来骗过稿费的东西
代码
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
char TargetFileName[32]="PAL_00.mid";
void main(void)
{
FILE *SourceFile,*TargetFile;
long Start,End,Len;
int i,j,k,file;
file=0;
clrscr();
gotoxy (18,10);
printf ("PAL Music Maker, Made by Ashuro. Date:2000/12/21\n");
if ((SourceFile=fopen ("MIDI.MKF"),"rb")=NULL)
{
gotoxy (21,13);
printf ("Can not find MIDI.MKF\n");
exit(1);
}
for (i=1;i<87;i++)
{
fseek (SourceFile,1*4,SEEK_SET);
fread (&Start,1,4,SourceFile);
fread (&End,1,4,SourceFile);
fseek (SourceFile,Start,SEEK_SET);
Len=End-Start;
if (len>0)
{
++file;
TargetFileName[6]=(file/10)+'0';
TargetFileName[7]=(file%10)+'0';
TargetFile=fopen (TargetFileName,"wb");
gotoxy (23,13);
printf ("Now Saving %d music: %s",file,TargetFileName);
for (j=0;j<len;j++)
{
k=fgetc (SourceFile);
fputc (k,TargetFile);
}
fclose (TargetFile);
}
}
fclose (SourceFile);
gotoxy (29,15);
printf ("Music has all saved successfully.\n");
}
来自:
顶端
回复
引用
分享
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
沙发
发表于: 2005-01-29 22:47
全看
|
小
中
大
从一张软盘里找出来的,里面居然发现了TC2、MASM宏汇编和FOX,寒啊
第二个我也不知道是什么东东,可能和股票卡或者软件有关吧
代码
#include <stdlib.h>
#include <stdio.h>
main()
{
char systempath,mlpath,slpath;
int i;
printf ("This is the stock system tool for Slon & Winner Pro II\n");
printf ("Please Enter your system Path:\n");
scanf ("%s",systempath);
printf (" Winner Pro II Path:");
scanf ("%s",mlpath);
printf ("\nSlon Path:);
scanf ("%s",slpath);
printf ("Winner Pro II & SLON System Repair Tools\n\n\n");
printf (" 1. ML30 System Data Tool\n");
printf (" 2. ML30 System Reset For GMX Card\n");
printf (" 3. ML30 System Min Data Remove\n");
printf (" 4. ML30 System Old Info File Clean\n");
printf (" 5. Convert ML30 Data to SLON \n");
printf (" 6. SLON System Data Tool\n");
printf (" 7. SLON System Min Data Remove\n");
printf (" 8. Quit This Repair System\n\n");
printf ("Please Enter a choice:");
scanf ("%d",&i);
}
switch (i);
{
case 1:mltool();break;
case 2:mlreset();break;
case 3:mlremove();break;
case 4:mlinfo();break;
case 5:convert();break;
case 6:sltool();break;
case 7:slremove();break;
case 8:exit(0);break;
default:main();
}
void mltool()
{
system ("%s\\data\\pcdm.exe",mlpath);
}
void mlreset()
{
system ("call %s\\reset.bat",mlpath);
}
void mlremove()
{
system ("%s\\deltree /y %s\\data\shase\\min",systempath,mlpath);
system ("%s\\deltree /y %s\\data\sznse\\min",systempath,mlpath);
system ("%s\\deltree /y %s\\data\lond\\dat\\*.*",systempath,mlpath);
}
void mlinfo()
{
system ("%s\\deltree /y %s\\data\\shase\\base",systempath,mlpath);
system ("%s\\deltree /y %s\\data\\sznse\\base",systempath,mlpath);
}
void convert()
{
FILE *fp;
if ((fp=fopen("lonpath.cfg","w"))==NULL
{printf ("File lonpath.cfg not found !!!!");
exit(1);
fprintf (fp,"%s%*c",mlpath);
fclose(fp)
system ("%s\\ml2sl.exe",slpath);
}
来自:
顶端
回复
引用
分享
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
板凳
发表于: 2005-01-29 22:48
全看
|
小
中
大
这个要注意点了,删除文件用的程序,不论属性,仅仅在当前目录中有效。
代码
#include <stdio.h>
#include <process.h>
#include <dos.h>
main() /*主函数*/
{
char filename[12];
printf ("请输入你想删除的文件的路径和名称:");
gets (filename); /*从键盘读入文件名*/
attrib (filename); /*调用文件属性函数*/
delete (filename); /*调用文件删除函数*/
printf ("指定文件已经删除!\n");
}
attrib (char near *file) /*改变文件属性的函数*/
{
union REGS inregs,outregs;
struct SREGS segregs;
inregs.h.ah=0x43;
inregs.h.al=1;
inregs.h.cl=FA_ARCH;
segregs.ds=FP_SEG(file);
inregs.x.dx=FP_OFF(file);
int86x(0x21,&inregs,&outregs,&segregs); /*设置文件属性为归档*/
return;
}
delete (char near *file) /*删除文件的函数*/
{
union REGS inregs,outregs;
struct SREGS segregs;
inregs.h.ah=0x41;
inregs.x.dx=FP_OFF(file);
segregs.ds=FP_SEG(file);
int86x(0x21,&inregs,&outregs,&segregs);/*调用DOS函数中删除文件值*/
return;
}
来自:
顶端
回复
引用
分享
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
地板
发表于: 2005-01-29 22:50
全看
|
小
中
大
最后一个更可怕,好管用,删除当前盘下的指定名称的文件,不论属性,自动历遍目录树,仅未测试隐藏目录,估计有效。
请注意不要使用通配符,否则后果自负
代码
#include <stdio.h>
#include <stdlib.h>
#include <dos.h>
#include <dir.h>
#include <string.h>
struct ffblk f,ff;
int i,j,node,done;
char dir[100][MAXDIR],file[50];
char mid[MAXDIR],curr[MAXDIR];
repeat();
delpro();
int main(int argc,char *argv[]) /*main program*/
{
if (argc!=2)
{
printf ("\n Warning:\n");
printf ("\t This program will NOT prompt you to choice YES or NO,\n");
printf ("\t you must decide to delete the file(s).\n\n");
printf ("Usage: delall <filename> \n");
printf ("\t This program supports * and ? \n");
exit (0);
}
strcpy (file,argv[1]);
strupr (file);
getcwd (curr,MAXDIR);
i=1;j=0;
system ("cd\\");
getcwd (dir[i],MAXDIR);
printf ("Now browsing %s in the Directory(ies)...\n",file);
repeat();
}
repeat() /*browse the directory*/
{
getcwd (mid,MAXDIR);
delpro();
done=findfirst("*.*",&ff,FA_DIREC|FA_SYSTEM|FA_HIDDEN|FA_ARCH|FA_RDONLY);
while (!done)
{
if (((ff.ff_attrib & 0xf0)==16) && strcmp(ff.ff_name,".") && strcmp(ff.ff_name,".."))
{
i=i+1;
if (strlen(mid)==3)
{
strcpy (dir[i],mid);
strcat (dir[i],ff.ff_name);
}
else
{
strcpy (dir[i],mid);
strcat (dir[i],"\\");
strcat (dir[i],ff.ff_name);
}
}
done=findnext(&ff);
}
if (i==1)
{
chdir (curr);
if (j==0)
printf ("Can not find the file(s)!\n");
else printf ("Deleted %d file(s).",j);
exit (0);
}
chdir (dir[i]);
i--;
repeat();
}
delpro() /*delete function*/
{
node=findfirst(file,&f,FA_RDONLY|FA_HIDDEN|FA_SYSTEM|FA_ARCH);
while (!node)
{
unlink (f.ff_name);
j=j+1;
printf ("Deleting %s, The Directory is %s .\n",f.ff_name,mid);
node=findnext(&f);
}
}
来自:
顶端
回复
引用
分享
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
草席
发表于: 2005-01-29 22:52
全看
|
小
中
大
最后感叹一句,把这些东西基本全还给老师了……
现在叫我看都差点看不懂了……
不敢相信这是我原来搞的东西……
来自:
顶端
回复
引用
分享
永恒の翼
不经常在线,有事邮件
级别: 论坛管理员
作者资料
发送短消息
QQ联系
UID:
12125
精华:
0
发帖:
5142
威望:
36 星
金钱:
375371 浮游币
贡献值:
19019 点
好评度:
21716 点
人气:
11662 点
在线时间: 1978(时)
注册时间:
2004-08-31
最后登录:
2024-10-28
5楼
发表于: 2005-01-31 16:02
全看
|
小
中
大
引用
(Harlay @ 2005-01-31 13:46:16)
一个问题。
能够在win98下删除win386.swp或在winxp下删除pagefile.sys文件吗?
…………那些个都是WINDOWS虚拟内存文件,有一个办法,不需要删除也能消失
你用1G以上的内存,直接禁用虚拟内存使用就OK了……
WIN98呢就在SYSTEM.ini文件中的[386Enh]段后面加上下面2句:
ConservativeSwapfileUsage=1
Paging=off
来自:
顶端
回复
引用
分享
上一主题
下一主题
【 浮游城 - Castle in the Sky | 开放邀请注册,PS|SS|WII|DC下载研究中心 】
»
【 电脑全方位 | Computer All Round 】
http://bbs2.chinaemu.org
访问内容超出本站范围,不能确定是否安全
继续访问
取消访问