• 大小: 29.47MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-24
  • 语言: 其他
  • 标签: 深圳大学  考研  

资源简介

考研必备,深圳大学计算机系上操作系统用的ppt,往年的题据说都会从上课讲义里面出的哦

资源截图

代码片段和文件信息

// parent.cpp : Defines the entry point for the application.
//

#include “stdafx.h“
#include “resource.h“
#include 

#define MAX_LOADSTRING 100

// Global Variables:
HINSTANCE hInst; // current instance
TCHAR sztitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text

// Foward declarations of functions included in this code module:
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE int);
LRESULT CALLBACK WndProc(HWND UINT WPARAM LPARAM);
LRESULT CALLBACK About(HWND UINT WPARAM LPARAM);

void WriteAndCalculate(void);
void WriteOrCalculate(void);
void StartTimeCount(HWND LPSTR);
void StopTimeCount(HWND LPSTR);
char szWriteFile[32] = “WriteFile.exe“;
char szCalculate[32] = “Calculate.exe“;


int APIENTRY WinMain(HINSTANCE hInstance
                     HINSTANCE hPrevInstance
                     LPSTR     lpCmdLine
                     int       nCmdShow)
{
  // TODO: Place code here.
MSG msg;
HACCEL hAccelTable;

// Initialize global strings
LoadString(hInstance IDS_APP_title sztitle MAX_LOADSTRING);
LoadString(hInstance IDC_PARENT szWindowClass MAX_LOADSTRING);
MyRegisterClass(hInstance);

// Perform application initialization:
if (!InitInstance (hInstance nCmdShow)) 
{
return FALSE;
}

hAccelTable = LoadAccelerators(hInstance (LPCTSTR)IDC_PARENT);

// Main message loop:
while (GetMessage(&msg NULL 0 0)) 
{
if (!TranslateAccelerator(msg.hwnd hAccelTable &msg)) 
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}

return msg.wParam;
}



//
//  FUNCTION: MyRegisterClass()
//
//  PURPOSE: Registers the window class.
//
//  COMMENTS:
//
//    This function and its usage is only necessary if you want this code
//    to be compatible with Win32 systems prior to the ‘RegisterClassEx‘
//    function that was added to Windows 95. It is important to call this function
//    so that the application will get ‘well formed‘ small icons associated
//    with it.
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEX wcex;

wcex.cbSize = sizeof(WNDCLASSEX); 

wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = (WNDPROC)WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance (LPCTSTR)IDI_PARENT);
wcex.hCursor = LoadCursor(NULL IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = (LPCSTR)IDC_PARENT;
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance (LPCTSTR)IDI_SMALL);

return RegisterClassEx(&wcex);
}

//
//   FUNCTION: InitInstance(HANDLE int)
//
//   PURPOSE: Saves instance handle and creates main window
//
//   COMMENTS:
//
//        In this function we save the instance handle in a global variable and
//        create and display the main program window.

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      31744  2011-11-30 00:55  操作系统\00.实验报告格式[参考]-.doc

     文件     317440  2011-10-07 23:12  操作系统\00.操作系统课程简介[01-07].ppt

     文件     877568  2011-09-17 14:56  操作系统\01.操作系统引论[01-22].ppt

     文件     404480  2011-09-21 20:54  操作系统\01.操作系统引论[23-32].ppt

     文件      30720  2011-09-21 21:09  操作系统\02.作业一.doc

     文件      35840  2011-10-26 21:53  操作系统\02.作业二.doc

     文件      50797  2011-09-30 19:27  操作系统\02.生产者--消费者问题例程.rar

     文件      51712  2011-10-26 21:52  操作系统\02.进程同步案例.doc

     文件     614400  2011-09-21 20:55  操作系统\02.进程管理[01-16].ppt

     文件    1105920  2011-10-26 21:53  操作系统\02.进程管理[102-134].ppt

     文件    1100288  2011-09-25 18:38  操作系统\02.进程管理[17-48].ppt

     文件    1129984  2011-09-30 19:27  操作系统\02.进程管理[49-81].ppt

     文件     718336  2011-10-26 21:52  操作系统\02.进程管理[82-101].ppt

     文件      34816  2011-10-26 21:54  操作系统\03.作业三.doc

     文件    1584128  2011-10-26 21:53  操作系统\03.处理机调度和死锁[01-40].ppt

     文件     837632  2011-11-21 12:54  操作系统\03.处理机调度和死锁[102-123].ppt

     文件    1105408  2011-10-26 21:54  操作系统\03.处理机调度和死锁[41-69].ppt

     文件    1134592  2011-11-21 12:53  操作系统\03.处理机调度和死锁[70-101].ppt

     文件      31744  2011-12-01 00:40  操作系统\04.作业五.doc

     文件      43520  2011-12-01 00:41  操作系统\04.作业四.doc

     文件    1040384  2011-11-21 12:54  操作系统\04.存储器管理[01-29].ppt

     文件    1509376  2011-12-01 00:41  操作系统\04.存储器管理[30-69].ppt

     文件     926720  2011-12-01 00:41  操作系统\04.存储器管理[70-94].ppt

     文件    1042944  2011-12-01 00:41  操作系统\04.存储器管理[95-122].ppt

     文件      30720  2011-11-30 22:45  操作系统\05.作业六.doc

     文件    1191424  2011-12-01 00:38  操作系统\05.设备管理[01-35].ppt

     文件    1125376  2011-11-30 22:45  操作系统\05.设备管理[36-67].ppt

     文件      40448  2011-12-22 13:04  操作系统\06.作业七.doc

     文件     868864  2011-12-22 13:05  操作系统\06.文件管理[01-27].ppt

     文件    1221632  2011-12-22 13:05  操作系统\06.文件管理[28-65].ppt

............此处省略63个文件信息

评论

共有 条评论