/* tiedleik.h */ #ifndef TIEDLEIK_H #define TIEDLEIK_H #ifdef __cplusplus extern "C" { #endif int clipboard_to_data(HWND hWnd,int id); int data_to_clipboard(HWND hWnd,int id); int read_clp_options(const char *); extern FileType File; #define DADCLP "Clipboard" #define MAX_CLP_DEL 10 #define MAX_CLP_CHG 10 typedef struct { char from[50]; char to[70]; } tClpChg; typedef struct { char IniEditor[70]; int small; int delbegin; int delblanks; int dublicate; char sep[30]; char comments[30]; int chgn; tClpChg chg[MAX_CLP_CHG]; int deln; char del[MAX_CLP_DEL][20]; } tDaDClpOptions; extern tDaDClpOptions DaDOpt; #ifdef __cplusplus } #endif #endif /* TIEDLEIK_H */