Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/shortcut.h')
-rw-r--r--winsup/cygwin/shortcut.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/winsup/cygwin/shortcut.h b/winsup/cygwin/shortcut.h
new file mode 100644
index 000000000..87e7ff156
--- /dev/null
+++ b/winsup/cygwin/shortcut.h
@@ -0,0 +1,28 @@
+/* shortcut.h: Hader file for shortcut.c
+
+ Copyright 2001 Red Hat, Inc.
+
+This file is part of Cygwin.
+
+This software is a copyrighted work licensed under the terms of the
+Cygwin license. Please consult the file "CYGWIN_LICENSE" for
+details. */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* The header written to a shortcut by Cygwin or U/WIN. */
+#define SHORTCUT_HDR_SIZE 76
+
+extern char shortcut_header[];
+extern BOOL shortcut_initalized;
+
+extern void create_shortcut_header ();
+
+int check_shortcut (const char *path, DWORD fileattr, HANDLE h,
+ char *contents, int *error, unsigned *pflags);
+
+#ifdef __cplusplus
+};
+#endif