Changeset 1221


Ignore:
Timestamp:
Sep 14, 2008, 1:10:12 AM (17 years ago)
Author:
John Small
Message:

Ticket 187: Moved typedef's and some #define's from fm3dll.h

Location:
trunk/dll
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/chklist.c

    r1204 r1221  
    2525
    2626#include "fm3dll.h"
     27#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    2728#include "notebook.h"                   // Data declaration(s)
    2829#include "mainwnd.h"                    // Data declaration(s)
  • trunk/dll/chklist.h

    r1194 r1221  
    1717#define CHKLIST_H
    1818
     19#define CHECK_FILES 1
     20
     21typedef struct
     22{
     23  USHORT size;
     24  ULONG flags;
     25  ULONG cmd;
     26  USHORT dummy;
     27  CHAR *prompt;
     28  CHAR **list;
     29}
     30CHECKLIST;
     31
    1932VOID CenterOverWindow(HWND hwnd);
    2033MRESULT EXPENTRY CheckListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
  • trunk/dll/cmdline.c

    r1204 r1221  
    3333
    3434#include "fm3dll.h"
     35#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    3536#include "arccnrs.h"                    // Data declaration(s)
    3637#include "fm2cmd.h"                     // Data declaration(s)
  • trunk/dll/codepage.c

    r1205 r1221  
    2222
    2323#include "fm3dll.h"
     24#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    2425#include "notebook.h"                   // Data declaration(s)
    2526#include "mainwnd.h"                    // Data declaration(s)
  • trunk/dll/collect.c

    r1205 r1221  
    7171
    7272#include "fm3dll.h"
     73#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    7374#include "dircnrs.h"                    // Data declaration(s)
    7475#include "info.h"                       // Data declaration(s)
  • trunk/dll/colors.c

    r1180 r1221  
    2323
    2424#include "fm3dll.h"
     25#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    2526#include "fm3dlg.h"
    2627#include "strutil.h"                    // GetPString
  • trunk/dll/colors.h

    r1195 r1221  
    1717#define COLORS_H
    1818
     19typedef struct
     20{
     21  USHORT size;
     22  USHORT numcolors;
     23  USHORT flags;
     24  USHORT currentcolor;
     25  ULONG prompt;
     26  long *colors;
     27  ULONG descriptions;
     28  long *origs;
     29}
     30COLORS;
     31
     32// PMBITMAP_INCLUDED - IBM Toolkit
     33// INCL_GPIBITMAPS - OpenWatcom Toolkit
     34#if !defined(PMBITMAP_INCLUDED) && !defined(INCL_GPIBITMAPS)
     35typedef struct _RGB2           /* rgb2 */
     36{
     37  BYTE bBlue;                  /* Blue component of the color definition */
     38  BYTE bGreen;                 /* Green component of the color definition */
     39  BYTE bRed;                   /* Red component of the color definition  */
     40  BYTE fcOptions;              /* Reserved, must be zero                 */
     41}
     42RGB2;
     43typedef RGB2 *PRGB2;
     44#endif
     45
    1946MRESULT EXPENTRY ColorDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    2047
  • trunk/dll/command.c

    r1205 r1221  
    3939
    4040#include "fm3dll.h"
     41#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    4142#include "notebook.h"                   // Data declaration(s)
    4243#include "init.h"                       // Data declaration(s)
  • trunk/dll/common.c

    r1205 r1221  
    3636
    3737#include "fm3dll.h"
     38#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    3839#include "mainwnd2.h"                   // Data declaration(s)
    3940#include "killproc.h"                   // Data declaration(s)
  • trunk/dll/comp.c

    r1205 r1221  
    7373
    7474#include "fm3dll.h"
     75#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    7576#include "mainwnd2.h"                   // Data declaration(s)
    7677#include "inis.h"                       // Data declaration(s)
Note: See TracChangeset for help on using the changeset viewer.