Changeset 48944 in vbox for trunk/src/VBox/Additions/WINNT/VBoxMMR
- Timestamp:
- Oct 7, 2013 9:32:37 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89641
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxMMR
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxMMR/dllmain.cpp
r46593 r48944 42 42 const PCHAR pc = strrchr(buffer, '\\'); 43 43 isWMP = (0 == strcmp(pc + 1, "wmplayer.exe")); 44 44 45 45 if (isWMP) 46 46 { -
trunk/src/VBox/Additions/WINNT/VBoxMMR/tsmfhook.h
r44864 r48944 18 18 #pragma once 19 19 20 // The following ifdef block is the standard way of creating macros which make exporting 20 // The following ifdef block is the standard way of creating macros which make exporting 21 21 // from a DLL simpler. All files within this DLL are compiled with the TSMFHOOK_EXPORTS 22 22 // symbol defined on the command line. This symbol should not be defined on any project 23 // that uses this DLL. This way any other project whose source files include this file see 23 // that uses this DLL. This way any other project whose source files include this file see 24 24 // TSMFHOOK_API functions as being imported from a DLL, whereas this DLL sees symbols 25 25 // defined with this macro as being exported. … … 35 35 36 36 // {56E95534-F42E-4C79-8EED-B121B4823163} 37 static const GUID ProviderId = 37 static const GUID ProviderId = 38 38 { 0x56e95534, 0xf42e, 0x4c79, { 0x8e, 0xed, 0xb1, 0x21, 0xb4, 0x82, 0x31, 0x63 } }; 39 39 40 40 // {06797744-5A74-4782-B2AB-B86D9F6C7B4A} 41 static const GUID ChannelOpenCategoryId = 41 static const GUID ChannelOpenCategoryId = 42 42 { 0x6797744, 0x5a74, 0x4782, { 0xb2, 0xab, 0xb8, 0x6d, 0x9f, 0x6c, 0x7b, 0x4a } }; 43 43 44 44 // {BF94ED39-9585-4822-B69E-DF19549A664C} 45 static const GUID ChannelWriteCategoryId = 45 static const GUID ChannelWriteCategoryId = 46 46 { 0xbf94ed39, 0x9585, 0x4822, { 0xb6, 0x9e, 0xdf, 0x19, 0x54, 0x9a, 0x66, 0x4c } }; 47 47 48 48 // {95375270-AE5F-423E-A4EB-5AE7FC649CF6} 49 static const GUID ChannelReadCategoryId = 49 static const GUID ChannelReadCategoryId = 50 50 { 0x95375270, 0xae5f, 0x423e, { 0xa4, 0xeb, 0x5a, 0xe7, 0xfc, 0x64, 0x9c, 0xf6 } }; 51 51 52 52 // {01F2A23A-4144-45E6-9933-4668915A1758} 53 static const GUID ChannelCloseCategoryId = 53 static const GUID ChannelCloseCategoryId = 54 54 { 0x1f2a23a, 0x4144, 0x45e6, { 0x99, 0x33, 0x46, 0x68, 0x91, 0x5a, 0x17, 0x58 } }; 55 55
Note:
See TracChangeset
for help on using the changeset viewer.