uz.h

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

H
28
字号
#pragma once

#include "resource.h"



#include <windows.h>

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

// Definition of structure types for Linked list of files
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)
};


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

*/

⌨️ 快捷键说明

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