Click here to Skip to main content
Licence CPOL
First Posted 2 Apr 2005
Views 40,728
Downloads 727
Bookmarked 18 times

How to create an enum and callback function

By | 2 Apr 2005 | Article
This article describes how to declare an enum function

image002.jpg

Introduction

Have you ever seen functions by name EnumFunctions? Like EnumWindows etc. Have you ever wondered how they are created? In this article, we will create a simple one! Just be relaxed and read this article to EOF!

What is an enum function?

These types of functions are ...!?! Let me explain like this: assume that you have some fruits. OK? Some apples, oranges, and bananas. You are searching for apples. And, for each apple you can find, you will shout: "Hey I found another apple!" This is the role of this type of functions: for each element, return something.

Let's start

Declaring an EnumFunction is simple. First, you should have a variable type to tell the function what kind of function is the input. See this code snippet (declarations in the header file):

typedef BOOL (CALLBACK*YOURPROCTYPE)(FirstType,SecondType,...);

Now see mine:

typedef BOOL (CALLBACK*MYPROC)(LPCTSTR);

And for declaring the EnumFunction:

ReturnType WINAPI EnumFunction(YOURPROCTYPE lpProcname,arg-list,…);

And mine:

BOOL WINAPI EnumFunc(MYPROC lpProc);

EnumFunc passes the parameters to a callback function:

ReturnType CALLBACK yourProcName(FirstType,SecondType,...);

Note that the argument list of this callback function must be what you give in YOURPROCTYPE:

BOOL CALLBACK MyProc (LPCTSTR prompt);

Here are my sample code declarations:

typedef BOOL (CALLBACK*FILESPROC)(LPCTSTR);
void WINAPI EnumFiles(FILESPROC lpEnumFiles,LPCTSTR lpszFileName);
int CALLBACK EnumFilesProc (LPCTSTR lpszFileName);

And here goes the EnumFiles function. Its task is to find the files in the given path, and for each file, calls the callback function:

void WINAPI EnumFiles(FILESPROC lpEnumFiles,LPCTSTR lpszFileName)
{
        CString nfle;
        numoffiles=0;
        CFileFind file;
        BOOL bFind=file.FindFile(lpszFileName,NULL);//Find first file in the given
        //path
        while (bFind)//While bFind==True continue finding...
        {
               bFind=file.FindNextFile(); //Find next file
               numoffiles=lpEnumFiles(file.GetFileName());//Call given callback function
               //by user with appropriate inputs 
        }
        nfle.Format("%d  Files found",numoffiles);
        AfxMessageBox(nfle);//Give the user number of files found in
        //the given path
}

BOOL CALLBACK EnumFilesProc(LPCTSTR lpszFileName)
{ 
        numoffiles++;
        list->InsertString(list->GetCount(),lpszFileName); 
        return numoffiles;
}

Now for calling the EunmFunction, you only need to write some code:

list->ResetContent();
EnumFiles(EnumFilesProc,"C:\\*.exe");

In this source code, we will get a path and enumerate all the files in the path! I use this enumeration technique to get all the sections in an INI file, and you can do anything you want! Any opinions and comments are welcome. Or questions maybe..

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

dSolariuM

Web Developer

United States United States

Member

I started Visual C++ on 2003 and I am a beginner now,I am working on a Network program and I am searching for some partners.I am intrested in DLLs and GUI in programing.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThank You! PinmemberAndy San2:20 23 May '06  
QuestionWhat? PinmemberSreekanth Muralidharan19:24 6 Dec '05  
AnswerRe: What? PinmemberThatsAlok21:46 6 Dec '05  
GeneralRe: What? PinmemberSreekanth Muralidharan16:51 8 Dec '05  
GeneralRe: What? PinmemberThatsAlok17:34 8 Dec '05  
GeneralRe: What? PinmemberSreekanth Muralidharan22:00 8 Dec '05  
GeneralRe: What? PinmemberSreekanth Muralidharan5:51 22 Nov '06  
GeneralRe: What? PinmemberThatsAlok0:09 23 Nov '06  
GeneralRe: What? PinmemberSreekanth Muralidharan5:22 24 Nov '06  
Ha ha ha!! Alok!! I hope you got my point... I am a bit confused in this topic.
 
Sreekanth Muralidharan,
Corporate Systems Consultant [Embedded Systems],
INDIA

GeneralRe: What? Pinmemberoldkingcoleman7:51 21 Nov '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 2 Apr 2005
Article Copyright 2005 by dSolariuM
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid