代码搜索:electrical system
找到约 10,000 项符合「electrical system」的源代码
代码结果 10,000
www.eeworm.com/read/162234/10323829
cpp system.cpp
#include "system.h"
#include "video.h"
#include "interrupt.h"
struct_pyos_Gdtr class_pyos_System::m_gdtr ;
struct_pyos_Gdt class_pyos_System::m_gdt ;
/* 系统初始化 */
void class_pyos_System::Init()
www.eeworm.com/read/162188/10327541
dec system.dec
/*
** system.dec - Used by 32-bit version only.
** (C) Copyright 1988-1996 by Aptech Systems, Inc.
** All Rights Reserved.
**
** Modify this number to reflect the largest number of elements allow
www.eeworm.com/read/162188/10327655
ext system.ext
/*
** system.ext - Used by 32-bit version only.
** (C) Copyright 1988-1996 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This number reflects the largest number of elements allowed in any
www.eeworm.com/read/162188/10328266
src system.src
/*
** system.src - Miscellaneous functions - 32-bit version.
** (C) Copyright 1988-1998 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF A
www.eeworm.com/read/162128/10333976
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/162078/10337689
c system.c
#include
void main(void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/354491/10350298
txt system.txt
函数名: system
功 能: 发出一个DOS命令
用 法: int system(char *command);
程序例:
#include
#include
int main(void)
{
printf("About to spawn command.com and run a DOS command\n");
system("dir"); //这里
www.eeworm.com/read/280144/10353210