summaryrefslogtreecommitdiffstats
path: root/mDNSResponder/mDNSMacOS9/ShowInitIcon.h
diff options
context:
space:
mode:
Diffstat (limited to 'mDNSResponder/mDNSMacOS9/ShowInitIcon.h')
-rwxr-xr-xmDNSResponder/mDNSMacOS9/ShowInitIcon.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/mDNSResponder/mDNSMacOS9/ShowInitIcon.h b/mDNSResponder/mDNSMacOS9/ShowInitIcon.h
new file mode 100755
index 00000000..cbf680c0
--- /dev/null
+++ b/mDNSResponder/mDNSMacOS9/ShowInitIcon.h
@@ -0,0 +1,20 @@
+#ifndef __ShowInitIcon__
+#define __ShowInitIcon__
+
+#include <Types.h>
+
+// Usage: pass the ID of your icon family (ICN#/icl4/icl8) to have it drawn in the right spot.
+// If 'advance' is true, the next INIT icon will be drawn to the right of your icon. If it is false, the next INIT icon will overwrite
+// yours. You can use it to create animation effects by calling ShowInitIcon several times with 'advance' set to false.
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+pascal void ShowInitIcon (short iconFamilyID, Boolean advance);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __ShowInitIcon__ */