you can undecorate parameters of C++ functions using dependency walker but unfortunately it does not work with C functions
skaanji
Posts
-
Function Parameters -
LNK2005jimNLX wrote: These are local to their files but linker puts these files together
-
.net and speedYou mean, you can never know whether it works on a user system although it works fine on your.Man,well :sigh: i'll await and see what happens
-
.net and speedThanks for hints. I think flaw i did was making complicated UI using form designer. I see also it is easy to write UI with net without form designer. alright.
-
.net and speedwell I said i'm not sure because dont know much about .net i prever to write apps in C++ using W32API.I was confused seeing net's speed. So if you mean it is great stuff i'll belive you:)
-
.net and speedstarded programming with .net i see it is fast way to develop user interface also it offers heap of classes, i'm not sure but it seems to be stuff coded with .net runs wery slow just like VB6 app running trought it's VM:omg:.Maybe it's something wrong on my HD or is it really so slow i don't know. what do you think about it?
-
PopUp menu of unknown sizeUsing: AppendMenu(HMENU hMenu,UINT uFlags,UINT_PTRuIDNewItem,LPCTSTR lpNewItem);
-
Unlimited or arbitrary string lengths?I'll suggest you to use RichEdit messages, EM_GETTEXTLENGTHEX to get length of text and create bufer. and EM_GETTEXTEX to get text and fill buffer
-
DirectX pixel drawingThanks for this link. You're right it seems to be time waste to do that, i think i better use bitmaps to realize my ideas :)
-
DirectX pixel drawingHi, so far i newer have coded using DirectX i've found some tutorials to draw bitmaps on screen. Is there no function to draw colored 2d pixels? or some way like we did in dos you know poke(0xA000,(y*320)+x,clr):laugh: So i just want to draw 2d graphics with DirectX.
-
Reading/Writing XP registry filesThanks
-
Reading/Writing XP registry filesIt is linux. so i need some code to do id without windows API
-
Reading/Writing XP registry filesXP saves all settings in binary files located in windows\\system32\\config right? i looking for some way to read these files? i want to access registry from another os
-
own windows shell ?1. we dont like to say "i dont know how" 2. we dont like microsoft:laugh:
-
own windows shell ?ahaaa interesting!
-
own windows shell ?Would be nice to do that.But there is a problem windows crashes every time if i try to change something. it seems to be microsoft will prevent programmers to do it this way:mad::confused::((.
-
own windows shell ?Maybe it's a stupidly idea but is it possible to write own shell for XP? but not explorer replacement rather some like KDE which replaces complete windows graphical interface.
-
Non-MFC Colored Listbox itemsSee MSDN Creating owner-drawn listbox[^]
-
Creating a button without using CButtonIf i right understand your question it can be done creating button using CreateWindow(WC_BUTTON ...) and then setting its WndProc to your own defined using
LONG DefWndProc=SetWindowLong(hWndButton,GWL_WNDPROC,lpfnYourOwnWndProc);
you should also call default button process using pointer returned by SetWindowLong() at return of your own WndProc. -
Drawing icons with alpha channelI use icons from system dlls in my app TreeView draws thick black edge instead of transparent shadow. What is the best way to solve this problem? Thanks in advance.