Click here to Skip to main content
15,898,036 members
Home / Discussions / C#
   

C#

 
GeneralRe: Resize Control at Design Time Pin
Heath Stewart25-Mar-04 13:50
protectorHeath Stewart25-Mar-04 13:50 
GeneralRe: Resize Control at Design Time Pin
Jeremy Kimball25-Mar-04 14:06
Jeremy Kimball25-Mar-04 14:06 
GeneralQuestion about WebBrowser editing Pin
profoundwhispers25-Mar-04 6:54
profoundwhispers25-Mar-04 6:54 
GeneralRe: Question about WebBrowser editing Pin
Heath Stewart25-Mar-04 8:15
protectorHeath Stewart25-Mar-04 8:15 
GeneralUsing a #define from an unmanaged dll Pin
schnee2k325-Mar-04 6:42
schnee2k325-Mar-04 6:42 
GeneralRe: Using a #define from an unmanaged dll Pin
Dave Kreskowiak25-Mar-04 7:48
mveDave Kreskowiak25-Mar-04 7:48 
GeneralRe: Using a #define from an unmanaged dll Pin
schnee2k325-Mar-04 8:24
schnee2k325-Mar-04 8:24 
GeneralRe: Using a #define from an unmanaged dll Pin
Dave Kreskowiak25-Mar-04 8:31
mveDave Kreskowiak25-Mar-04 8:31 
Bottom line is you can't. Their not in the .DLL!
The PEER_E_INVALID_RECORD identifier is replaced with the actual value when the code in compiled. The method in which the value is stored depends heavily on the context that it's used. Most will end up being an operand in an assembly intruction, so they don't show up in the DATA segment in the file .DLL.

Since you have the source, what you could do is write a C++ console app that #include's that header file and just writes out the resulting values of the #define's:
printf("PEER_E_INVALID_RECORD: %x\n", PEER_E_INVLID_RECORD);



RageInTheMachine9532
GeneralRe: Using a #define from an unmanaged dll Pin
schnee2k325-Mar-04 8:36
schnee2k325-Mar-04 8:36 
GeneralRe: Using a #define from an unmanaged dll Pin
Jeremy Kimball25-Mar-04 7:49
Jeremy Kimball25-Mar-04 7:49 
GeneralRe: Using a #define from an unmanaged dll Pin
Andy Brummer25-Mar-04 9:28
sitebuilderAndy Brummer25-Mar-04 9:28 
GeneralStrongly typed hash-table Pin
peter271325-Mar-04 5:58
peter271325-Mar-04 5:58 
GeneralRe: Strongly typed hash-table Pin
Heath Stewart25-Mar-04 6:03
protectorHeath Stewart25-Mar-04 6:03 
GeneralRe: Strongly typed hash-table Pin
Andy Brummer25-Mar-04 9:31
sitebuilderAndy Brummer25-Mar-04 9:31 
GeneralCaption bar modifications Pin
Alex Korchemniy25-Mar-04 5:03
Alex Korchemniy25-Mar-04 5:03 
GeneralRe: Caption bar modifications Pin
Heath Stewart25-Mar-04 5:59
protectorHeath Stewart25-Mar-04 5:59 
GeneralRe: Caption bar modifications Pin
Dave Kreskowiak25-Mar-04 12:32
mveDave Kreskowiak25-Mar-04 12:32 
GeneralListbox in C# with XML Pin
bertcox25-Mar-04 2:32
bertcox25-Mar-04 2:32 
GeneralRe: Listbox in C# with XML Pin
Heath Stewart25-Mar-04 4:49
protectorHeath Stewart25-Mar-04 4:49 
GeneralProcess.GetProcesses(string computerName) Pin
nilhz25-Mar-04 2:16
nilhz25-Mar-04 2:16 
GeneralRe: Process.GetProcesses(string computerName) Pin
Heath Stewart25-Mar-04 4:43
protectorHeath Stewart25-Mar-04 4:43 
GeneralError message that doesn't go away Pin
profoundwhispers24-Mar-04 23:38
profoundwhispers24-Mar-04 23:38 
GeneralRe: Error message that doesn't go away Pin
Dave Kreskowiak25-Mar-04 1:15
mveDave Kreskowiak25-Mar-04 1:15 
GeneralRe: Error message that doesn't go away Pin
Heath Stewart25-Mar-04 4:38
protectorHeath Stewart25-Mar-04 4:38 
GeneralUrgent :remoting callbacks Pin
rana7424-Mar-04 22:06
rana7424-Mar-04 22:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.