home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / biff / bigg.h < prev   
C/C++ Source or Header  |  1989-03-16  |  1KB  |  65 lines

  1. #define   BIFFDLG   2
  2.  
  3. #define   IDROW     101
  4. #define   IDCOLUMN  102
  5. #define   IDTEXT    103
  6.  
  7. #define   IDBLANK   201
  8. #define   IDLABEL   202
  9. #define   IDBOOL    203
  10. #define   IDINT     204
  11. #define   IDNUMBER  205
  12. #define   IDFORMULA 206
  13.  
  14. struct  BIFFBOF {
  15.         WORD    wRecType;
  16.         WORD    wRecLength;
  17.         WORD    wVersion;
  18.       } ;
  19.  
  20. struct  BIFFEOF {
  21.         WORD    wRecType;
  22.         WORD    wRecLength;
  23.       } ;
  24.  
  25. struct  BIFFINTEGER {
  26.         WORD    wRecType;
  27.         WORD    wRecLength;
  28.         WORD    wRow;
  29.         WORD    wColumn;
  30.         char    cAttrib[3];
  31.         WORD    wInteger;
  32.       } ;
  33.  
  34. struct  BIFFNUMBER {
  35.         WORD    wRecType;
  36.         WORD    wRecLength;
  37.         WORD    wRow;
  38.         WORD    wColumn;
  39.         char    cAttrib[3];
  40.         double  dNumber;
  41.       } ;
  42.  
  43. struct  BIFFSTRING {
  44.         WORD    wRecType;
  45.         WORD    wRecLength;
  46.         WORD    wRow;
  47.         WORD    wColumn;
  48.         char    cAttrib[3];
  49.         BYTE    bTextLength;
  50.         char    cLabel[1];
  51.       } ;
  52.  
  53. struct  BIFFFORMULA {
  54.         WORD    wRecType;
  55.         WORD    wRecLength;
  56.         WORD    wRow;
  57.         WORD    wColumn;
  58.         char    cAttrib[3];
  59.         char    cCurValue[8];
  60.         BYTE    bRecalc;
  61.         BYTE    bTextLength;
  62.         char    cLabel[1];
  63.       } ;
  64.  
  65.