Sponsored Content
Top Forums Programming Help me to understand strange 'typedef ... ' in some source... Post 302983600 by alex_5161 on Thursday 13th of October 2016 04:23:45 PM
Old 10-13-2016
Help me to understand strange 'typedef ... ' in some source...

Working on some source I've found some strange declaration in included header file.
I am looking for someone's help to understand me that syntax's, as it is fine (it is compiled without any complain,) but for me it seems out of any sense!
Acctually, it warning by CC compiler: " Warning: Implicit int is not supported in C++". That why I have checked that.
Code:
#ifdef WIN32 
typedef (_cdecl *COMPARE_ADDR)(void *,void*); 
#else 
extern "C" { 
typedef (*COMPARE_ADDR)(void *,void*); 
} 
#endif

I see it is preprared for diffrerent OS - Windows or Unix, but neither one 'typedef ..' I could understand

The 'typedef' should have [original_type] that will be reffered by the [user_defined_type].
So, it should be
typedef <initial_type> <new_name_for_initial_type>;

But here it seems as a casting or some function referencing syntax...
I could not understand what that means!

Could anyone give me a hint what that could be?

Thanks!

Last edited by alex_5161; 10-13-2016 at 05:34 PM..
 

9 More Discussions You Might Find Interesting

1. Solaris

Conflicting 'typedef' error - Which gcc switch to use?

I am using gcc3.3.5 on solaris2.7. Its a 64 bit compilation I am compiling a file 'plugin.cpp'. It includes mach.h and the complation gives the following error. ----------------------------------------------------------------- mach.h error: conflicting types for `typedef vx_u32_t... (0 Replies)
Discussion started by: amitc
0 Replies

2. Programming

How to typedef

I want to declare char ch as ch_9 with the help of the typedef statement. Thanks (1 Reply)
Discussion started by: krishna_sicsr
1 Replies

3. Shell Programming and Scripting

bash shell: 'exec', 'eval', 'source' - looking for help to understand

Hi, experts. Whould anybody clear explay me difference and usage of these 3 commands (particulary in bash) : exec eval source I've tryed to read the manual pages but did not get much. Also could not get something useful from Google search - just so much and so not exactly, that is... (3 Replies)
Discussion started by: alex_5161
3 Replies

4. Programming

typedef struct forward declaration

I've google a bit about this and couldn't find an answer. Actually I read that it can't be done. Basically I've defined the following structure and typedef it as follows. stuct Name { }; typdef struct Name Name. and right after it, defined some API that use it. void blabla(Name*... (6 Replies)
Discussion started by: emitrax
6 Replies

5. Programming

Need help with this c++ source code! DOnt understand what some stuff mean.

Okay so I am just starting programming c++. I just started started to red "C++ for Dummies yesterday and theres a lot of things I do not understand from this book and this source code especially. I will first post the full source code and then post questions about certain thing, usually what they... (2 Replies)
Discussion started by: orszhak
2 Replies

6. Programming

typedef help

Hi! This is part of my my code : typedef struct{ int x; char na; char sur; } Stu; typedef struct{ Stu *arr; int size; int sort; } Stus; I want to ask how can i free() the matrix arr. I tried free(arr), free(Stus.arr) and i get errors with gcc. My problem, in... (3 Replies)
Discussion started by: giampoul
3 Replies

7. Programming

Compilation problem with typedef

I am getting confused compiling a program that gives me the following error ../../../tomso/algeb/vector.hpp:19:9: error: ‘Vector' does not name a type typedef Vector<float> Vecflt; (1 Reply)
Discussion started by: kristinu
1 Replies

8. Programming

Event driven programming / epoll / typedef union / session data array

Sorry for the “word salad” subject, but I wanted to cast a wide net for help. I've created an IP (Internet Protocol) server which serves HTTP, SMTP, and FTP requests. As you probably know, they all require creating a socket, listening on it, accepting connections, and then having a short... (3 Replies)
Discussion started by: John S.
3 Replies

9. Programming

Typedef does not work to name a type

Hello, This is related to the closed post in the forum for the installation of the same software called arachne, but with different error message: In file included from ueberal/MiniSuperizer.cc:5:0: ./random/GnuRandom.h:54:5: error: ‘_G_uint32_t’ does not name a type _G_uint32_t u; ^... (11 Replies)
Discussion started by: yifangt
11 Replies
__gnu_cxx::throw_allocator_random< _Tp >(3cxx)							    __gnu_cxx::throw_allocator_random< _Tp >(3cxx)

NAME
__gnu_cxx::throw_allocator_random< _Tp > - SYNOPSIS
Inherits __gnu_cxx::throw_allocator_base< _Tp, random_condition >. Public Types typedef const value_type * const_pointer typedef const value_type & const_reference typedef ptrdiff_t difference_type typedef value_type * pointer typedef value_type & reference typedef size_t size_type typedef _Tp value_type Public Member Functions throw_allocator_random (const throw_allocator_random &) throw () template<typename _Tp1 > throw_allocator_random (const throw_allocator_random< _Tp1 > &) throw () pointer address (reference __x) const const_pointer address (const_reference __x) const pointer allocate (size_type __n, std::allocator< void >::const_pointer hint=0) void check_allocated (void *p, size_t size) void check_allocated (pointer __p, size_type __n) void check_allocated (size_type __n) void construct (pointer __p, const value_type &val) void construct (pointer __p, _Args &&...__args) void deallocate (pointer __p, size_type __n) void destroy (pointer __p) void erase (void *p, size_t size) void insert (void *p, size_t size) size_type max_size () const throw () void seed (unsigned long __s) Static Public Member Functions static size_t get_label () static void set_label (size_t l) static void set_probability (double __p) static void throw_conditionally () Detailed Description template<typename _Tp>struct __gnu_cxx::throw_allocator_random< _Tp > Allocator throwing via random condition. Definition at line 709 of file throw_allocator.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 __gnu_cxx::throw_allocator_random< _Tp >(3cxx)
All times are GMT -4. The time now is 11:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy