Version information added.
authorEmanuele Aliberti <ea@iol.it>
Sun, 5 Sep 2004 12:27:36 +0000 (12:27 +0000)
committerEmanuele Aliberti <ea@iol.it>
Sun, 5 Sep 2004 12:27:36 +0000 (12:27 +0000)
.cvsignore updated.

svn path=/trunk/; revision=10786

reactos/subsys/system/explorer/notifyhook/.cvsignore
reactos/subsys/system/explorer/notifyhook/Makefile
reactos/subsys/system/explorer/notifyhook/notifyhook.rc [new file with mode: 0644]

index bb848d5..6cb0bb2 100644 (file)
@@ -5,3 +5,6 @@ Release
 *.dll
 *.gch
 *.h.pch
 *.dll
 *.gch
 *.h.pch
+notifyhook.map
+notifyhook.sym
+notifyhook.coff
\ No newline at end of file
index 769f939..297bc09 100644 (file)
@@ -2,7 +2,7 @@ PATH_TO_TOP := ../../../..
 TARGET_TYPE := dynlink
 TARGET_NAME := notifyhook
 TARGET_CFLAGS := -D__USE_W32API -D_WIN32_IE=0x0600 -Wall -D_NOTIFYHOOK_IMPL
 TARGET_TYPE := dynlink
 TARGET_NAME := notifyhook
 TARGET_CFLAGS := -D__USE_W32API -D_WIN32_IE=0x0600 -Wall -D_NOTIFYHOOK_IMPL
-TARGET_NORC := yes
+#TARGET_NORC := yes
 TARGET_DEFONLY := yes
 TARGET_OBJECTS := notifyhook.o
 TARGET_LFLAGS := -nostartfiles
 TARGET_DEFONLY := yes
 TARGET_OBJECTS := notifyhook.o
 TARGET_LFLAGS := -nostartfiles
diff --git a/reactos/subsys/system/explorer/notifyhook/notifyhook.rc b/reactos/subsys/system/explorer/notifyhook/notifyhook.rc
new file mode 100644 (file)
index 0000000..9475e44
--- /dev/null
@@ -0,0 +1,39 @@
+#include <defines.h>
+#include <reactos/resource.h>
+
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+
+VS_VERSION_INFO VERSIONINFO
+    FILEVERSION RES_UINT_FV_MAJOR,RES_UINT_FV_MINOR,RES_UINT_FV_REVISION,RES_UINT_FV_BUILD
+    PRODUCTVERSION  RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD  
+    FILEFLAGSMASK   0x3fL
+#ifdef _DEBUG
+    FILEFLAGS   0x1L
+#else
+    FILEFLAGS   0x0L
+#endif
+    FILEOS      0x40004L
+    FILETYPE    0x2L
+    FILESUBTYPE 0x0L
+BEGIN
+    BLOCK "StringFileInfo"
+    BEGIN
+        BLOCK "040904b0"
+        BEGIN
+            VALUE "CompanyName",    RES_STR_COMPANY_NAME
+            VALUE "FileDescription",    "NotifyHook DLL for ROS Explorer\0"
+            VALUE "FileVersion",    RES_STR_FILE_VERSION
+            VALUE "InternalName",   "notifyhook\0"
+            VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
+            VALUE "OriginalFilename",   "notifyhook.dll\0"
+            VALUE "ProductName",    RES_STR_PRODUCT_NAME
+            VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
+        END
+    END
+    BLOCK "VarFileInfo"
+    BEGIN
+        VALUE "Translation", 0x409, 1200
+    END
+END
+
+/* EOF */