Changeset 1228 for trunk/dll


Ignore:
Timestamp:
Sep 14, 2008, 1:13:40 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/update.c

    r1214 r1228  
    3131
    3232#include "fm3dll.h"
     33#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
     34#include "update.h"
    3335#include "init.h"                       // Data declaration(s)
    3436#include "notebook.h"                   // Data declaration(s)
     
    4042#include "dircnrs.h"
    4143#include "flesh.h"                      // Flesh, Stubby
    42 #include "update.h"
    4344#include "findrec.h"                    // FindCnrRecord
    4445#include "valid.h"                      // IsFullName
  • trunk/dll/update.h

    r1201 r1228  
    1616#define UPDATE_H
    1717
     18#include "dircnrs.h"                    // typedef's for DIRCNRDATA, etc.
     19
    1820HPOINTER SelectDriveIcon(PCNRITEM pci);
    1921BOOL UpdateCnrList(HWND hwndCnr, CHAR ** filename, INT howmany, BOOL partial,
  • trunk/dll/uudecode.c

    r1214 r1228  
    2828
    2929#include "fm3dll.h"
     30#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
     31#include "worker.h"                     // typedef WORKER
    3032#include "notebook.h"                   // Data declaration(s)
    3133#include "fm3dlg.h"
  • trunk/dll/viewer.c

    r1214 r1228  
    2929
    3030#include "fm3dll.h"
     31#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
     32#include "viewer.h"
    3133#include "mainwnd2.h"                   // Data declaration(s)
    3234#include "collect.h"                    // Data declaration(s)
     
    4244#include "colors.h"                     // ColorDlgProc
    4345#include "mainwnd.h"                    // FillClient
    44 #include "viewer.h"
    4546#include "codepage.h"                   // PickCodepage
    4647#include "dirs.h"                       // switch_to
  • trunk/dll/viewinf.c

    r1214 r1228  
    3030
    3131#include "fm3dll.h"
     32#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    3233#include "notebook.h"                   // Data declaration(s)
    3334#include "init.h"                       // Data declaration(s)
  • trunk/dll/walkem.c

    r1214 r1228  
    4949
    5050#include "fm3dll.h"
     51#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    5152#include "arccnrs.h"                    // Data declaration(s)
    5253#include "info.h"                       // Data declaration(s)
  • trunk/dll/walkem.h

    r1214 r1228  
    1919#include <os2.h>
    2020#endif
     21
     22typedef struct
     23{
     24  USHORT size;
     25  USHORT dummy;
     26  CHAR szCurrentPath1[CCHMAXPATH];
     27  CHAR szCurrentPath2[CCHMAXPATH];
     28}
     29WALK2;
     30
     31typedef struct LINKDIRS
     32{
     33  CHAR *path;
     34  struct LINKDIRS *next;
     35}
     36LINKDIRS;
    2137
    2238VOID FillPathListBox(HWND hwnd, HWND hwnddrive, HWND hwnddir, PSZ path,
  • trunk/dll/winlist.c

    r1214 r1228  
    2222
    2323#include "fm3dll.h"
     24#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    2425#include "killproc.h"                   // Data declaration(s)
    2526#include "init.h"                       // Data declaration(s)
  • trunk/dll/worker.c

    r1215 r1228  
    3838#include <share.h>
    3939#include <process.h>                    // _beginthread
     40#include <time.h>
    4041
    4142#define INCL_DOS
     
    4950
    5051#include "fm3dll.h"
     52#include "fm3dll2.h"                    // #define's for UM_*, control id's, etc.
    5153#include "mainwnd2.h"                   // Data declaration(s)
    5254#include "arccnrs.h"                    // Data declaration(s)
  • trunk/dll/worker.h

    r1215 r1228  
    1717#define WORKER_H
    1818
     19#include "makelist.h"                   // typedef LISTINFO
     20
     21typedef struct {
     22
     23  CHAR *source;
     24  CHAR target[CCHMAXPATH];
     25  BOOL rename;
     26  BOOL skip;
     27  BOOL dontask;
     28  BOOL overold;
     29  BOOL overnew;
     30  BOOL overwrite;
     31}
     32MOVEIT;
     33
     34typedef struct
     35{
     36  USHORT size;
     37  USHORT dummy;
     38  CHAR directory[CCHMAXPATH];
     39  HWND hwndParent;
     40  HWND hwndFrame;
     41  HWND hwndClient;
     42  HWND hwndCnr;
     43  LISTINFO *li;
     44}
     45WORKER;
     46
    1947VOID Action(VOID * args);
    2048VOID MassAction(VOID * args);
Note: See TracChangeset for help on using the changeset viewer.