📄 p_c_dll.h
字号:
#ifndef _P_C_DLL_H_
#define _P_C_DLL_H_
#include "constant.h"
#include <windows.h>
typedef enum ContainerType{
C_LOOP_QUEUE = 0, C_STACK
}ContainerType;
void __declspec(dllexport) Initialize(ContainerType, UINT, UINT);
void __declspec(dllexport) ProducerStart();
void __declspec(dllexport) ConsumerStart();
void __declspec(dllexport) SuspendAll();
void __declspec(dllexport) ResumeAll();
void __declspec(dllexport) StopAll();
void __declspec(dllexport) SetProducerTimer(UINT);
void __declspec(dllexport) SetConsumerTimer(UINT);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -