STORAGE.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:0k
源码类别:

游戏

开发平台:

Visual C++

  1. #ifndef _STORAGE_
  2. #define _STORAGE_
  3. typedef struct
  4.         {
  5.         int count;
  6.         int size;
  7.         void *data;
  8.         } STORAGE;
  9. #endif