Thread: export table

  1. #1
    Registered User
    Join Date
    Oct 2009
    Posts
    8

    export table

    hey i m confused little bit abt export table's in dll's like what i don't get i read that everything relys on kernel32.dll every dll so that means that every dll doesn't got export's only kernel32.dll got exports? for exampe i m calling printf which is in msvrt.dll i noticed that my import there are also calling to kernel32.dll but why would my function also call msvrt.dll if only kernel32.dll has export table ?

  2. #2
    Registered User
    Join Date
    Dec 2007
    Posts
    214
    You mis-read what ever you read. dll's will have both export and import tables. kernel32.dll (the operating system) will only have an export table.

  3. #3
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Quote Originally Posted by DaveH View Post
    You mis-read what ever you read. dll's will have both export and import tables. kernel32.dll (the operating system) will only have an export table.
    Actually, the OS is mostly in ntdll.dll. kernel32.dll is wrapper around that.
    Code:
    //try
    //{
    	if (a) do { f( b); } while(1);
    	else   do { f(!b); } while(1);
    //}

  4. #4
    Registered User
    Join Date
    Oct 2009
    Posts
    8
    so basically all dll's exports and import's so it relys on other function's on other dlls but only dtdll and kernel32.dll got only export no internal function's ?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. help with structs and malloc!
    By coni in forum C Programming
    Replies: 20
    Last Post: 09-14-2009, 05:38 PM
  2. Dll Export table
    By P4R4N01D in forum Windows Programming
    Replies: 7
    Last Post: 04-08-2008, 09:41 PM
  3. run windows exe
    By munna_dude in forum Linux Programming
    Replies: 3
    Last Post: 10-10-2007, 01:12 AM
  4. Writing array, to file
    By zootreeves in forum C Programming
    Replies: 9
    Last Post: 09-08-2007, 05:06 PM
  5. inputting words from a file
    By kashifk in forum C++ Programming
    Replies: 5
    Last Post: 10-24-2003, 07:18 AM