dragdrop.h

来自「Skin, zip, unzip, md5, crc32, drag and d」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef _drag
#define _drag

/*
char *WhoAmI(struct FileList *ptr);
void WMDropFiles( WPARAM WParam, HWND hWnd);




struct FileList {
   char *lpFileName; // Name of dragged file
   int x, y;         // Position in client area dropped
   BOOL inClient;    // Dropped in client Flag
   struct FileList *Next;  // Points to next file in group dragged
};
struct List {
   struct List *Next;      // Points to next node in List
   struct FileList *FLptr; // Points to Filelist(s)
};

// Global variables

struct List *liAllFiles;   // Pointer to main list of files



*/

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?