User Profile

Collapse

Profile Sidebar

Collapse
darko
darko
Last Activity: Nov 13 '10, 09:10 PM
Joined: Sep 18 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • cannot use __try in functions that require object unwinding

    can anybody point me where is the unwiding object in this code

    Code:
    DWORD WINAPI MAC_out_Thread( LPVOID lpParam ) {
    
    
       int size_of_LLC_out_Queue= 0;
              
       mac_frame MAC_FRAME_TEMPLATE;
    
    
    
    
     DWORD  MAC_QU_WaitResult, LLC_QU_WaitResult, ARP_TABLE_WaitResult;
      
     LLC_QU_WaitResult =  WaitForSingleObject(LLC_out_Queue_Mutex,INFINITE); 
    string
    ...
    See more | Go to post

  • darko
    replied to data structure for ARP table
    in C
    any examples or tutorials i can follow?
    See more | Go to post

    Leave a comment:


  • darko
    started a topic data structure for ARP table
    in C

    data structure for ARP table

    hey, im trying to replicate the ARP table which maps every mac address to a specific ip, so i can later look up a certain mac address and get its ip or vice versa. Which data structure would u recommend and can u give me some examples that i can follow
    See more | Go to post

  • darko
    replied to How to count word instances in a string
    thanks alot dude, that did the trick!!
    See more | Go to post

    Leave a comment:


  • darko
    replied to How to count word instances in a string
    yeah, thought of that, but string.split will only split at the first occurrence so i'll end up with an array of 2 elements
    See more | Go to post

    Leave a comment:


  • darko
    started a topic How to count word instances in a string

    How to count word instances in a string

    hello im doing a small rss project and i'm stuck at trying to count how many items are in the feed, my question is: how can i count the instances of a word, in this case <item> in a string(source), thanks
    See more | Go to post

  • darko
    started a topic explanation for DES class

    explanation for DES class

    Hello, im currently working on a small project to create a program that allows a user to input text, select an encryption alogrithm and cipher his text. I found this DES class and was wondering would be to comment on it in order for to understand what is going on

    Code:
    class DES
        {
            public string DES_Encrypt(string originalString, string pass)
            {
                
                byte[] bytes =
    ...
    See more | Go to post

  • darko
    started a topic Outputing data from mysql;
    in PHP

    Outputing data from mysql;

    I'm pretty good at php and mysql, it's been sometime now that i was trying to find a way to output result, more then 1 at a time, so i came up with this function

    [PHP] function screenshots()
    {
    global $website_link;

    $name1 = $_GET['name'];
    $name= str_replace("-", " ", $name1);
    $query = @mysql_query("S ELECT * FROM `games` WHERE `name` = \"$name\"...
    See more | Go to post

  • darko
    replied to error C4430 on helloworld
    in C
    thanks alot dude, that worked fine, i used inta main(), i'm sticking around this forum

    Regards
    darko
    See more | Go to post

    Leave a comment:


  • darko
    started a topic error C4430 on helloworld
    in C

    error C4430 on helloworld

    ok, i'm just starting out, with c++ and i downloaded some wideos, i'm working on VS.NET 2005, and hthe first script is helloworld
    Code:
    #include <iostream>
    
    main()
    {
    	std::cout << "Hello World";
    }
    and here's what i'm getting, the project is a win32 consol project

    Error 1 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int c:\documents...
    See more | Go to post
No activity results to display
Show More
Working...