Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~863 People Reached
Favorite Tags
Member Avatar for markfisher

Hi I'm trying to create application using C and GDI. I want my EXE file to have an ICON, so I created .bmp file (64x64) and added to resource file. Then I created HICON hIcon using that bitmap image (CreateIconIndirect(...)) Now my problem is, .EXE file still has the default …

Member Avatar for venomxxl
0
214
Member Avatar for markfisher

Hi all. Is there a way that I can change the font color of the boot up messages? if so how? (I checked the vidcontrol man page and that only changes the font color after FreeBSD done with boot up) Thanks Mark

Member Avatar for markfisher
0
70
Member Avatar for markfisher

Hi I'm really sorry if my questions are stupid. Can someone please explain why we create wrapper function for standard library function? (Example: glib made wrapper function for malloc()) Why do we hook our program to standard library? (malloc, free, ...) Thanks Mark

Member Avatar for WaltP
0
72
Member Avatar for markfisher

Hello everyone I have been working on generic C data structure (Doubly Linked List) and I have a question: ------ List.c ----- [code] struct node { void *data; struct node *next; struct node *prev; }; struct list { unsigned int length; struct node *head; struct node *tail; }; typedef struct …

Member Avatar for markfisher
0
160
Member Avatar for markfisher

Dear Programmers, Hi I wrote a simple asm program to output a char on STDOUT in windows (MS-DOS) Here is my code: ------------------------------------ .386 .MODEL FLAT .STACK 256 ;Reserve 256-Bytes .DATA char BYTE "a" .CODE _main: MOV AH, 02h ;Sub-function 02h -> Output STDOUT MOV DL, char ;Char to output …

Member Avatar for wildgoose
0
154
Member Avatar for markfisher

Dear all Network and System Administrators I have a Asus Motherboard with Marvell Yukon NIC adapter. I installed the driver for NIC adapter by downloading it from Marvell website. Now my internet is working since I can ping google.com and others. The way I installed FreeBSD is from DVD and …

Member Avatar for markfisher
0
76
Member Avatar for markfisher

void x_bzero(s, n) void *s; unsigned int n; { long long *ptr = (long long *) s; unsigned int d; n /= sizeof(long long); d %= sizeof(long long); while (n--) *ptr++ = 0; } Dear programmers, hi I have a question about the function above. I'm calling that function from …

Member Avatar for markfisher
0
117