dyndata.h
来自「GNU FreeDOS兼容MS DOS很好的东东.」· C头文件 代码 · 共 20 行
H
20 行
/* DynData.h declarations for dynamic NEAR data allocations the DynBuffer must initially be large enough to hold the PreConfig data. after the disksystem has been initialized, the kernel is moveable and Dyn.Buffer resizable, but not before */void far *DynAlloc(char *what, unsigned num, unsigned size);void far *DynLast(void);void DynFree(void *ptr);struct DynS { unsigned Allocated; char Buffer[1];};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?