ReactOS 0.4.15-dev-7906-g1b85a5f
funclist.c File Reference
#include "videoprt.h"
#include <debug.h>
Include dependency graph for funclist.c:

Go to the source code of this file.

Classes

struct  _VIDEO_PORT_FUNCTION_TABLE
 

Macros

#define NDEBUG
 
#define MAKE_ENTRY(FUNCTIONNAME)   { FUNCTIONNAME, #FUNCTIONNAME }
 

Typedefs

typedef struct _VIDEO_PORT_FUNCTION_TABLEPVIDEO_PORT_FUNCTION_TABLE
 
typedef struct _VIDEO_PORT_FUNCTION_TABLE VIDEO_PORT_FUNCTION_TABLE
 

Functions

PVOID NTAPI IntVideoPortGetProcAddress (IN PVOID HwDeviceExtension, IN PUCHAR FunctionName)
 

Variables

const VIDEO_PORT_FUNCTION_TABLE VideoPortExports []
 

Macro Definition Documentation

◆ MAKE_ENTRY

#define MAKE_ENTRY (   FUNCTIONNAME)    { FUNCTIONNAME, #FUNCTIONNAME }

Definition at line 35 of file funclist.c.

◆ NDEBUG

#define NDEBUG

Definition at line 24 of file funclist.c.

Typedef Documentation

◆ PVIDEO_PORT_FUNCTION_TABLE

◆ VIDEO_PORT_FUNCTION_TABLE

Function Documentation

◆ IntVideoPortGetProcAddress()

PVOID NTAPI IntVideoPortGetProcAddress ( IN PVOID  HwDeviceExtension,
IN PUCHAR  FunctionName 
)

Definition at line 100 of file funclist.c.

103{
104 ULONG i;
105
106 TRACE_(VIDEOPRT, "VideoPortGetProcAddress(%s)\n", FunctionName);
107
108 /* Search by name */
109 for (i = 0; i < ARRAYSIZE(VideoPortExports); i++)
110 {
112 {
114 }
115 }
116
117 ERR_(VIDEOPRT, "VideoPortGetProcAddress: Can't resolve symbol %s\n", FunctionName);
118
119 return NULL;
120}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
ACPI_BUFFER *RetBuffer ACPI_BUFFER *RetBuffer char ACPI_WALK_RESOURCE_CALLBACK void *Context ACPI_BUFFER *RetBuffer UINT16 ACPI_RESOURCE **ResourcePtr ACPI_GENERIC_ADDRESS *Reg UINT32 *ReturnValue UINT8 UINT8 *Slp_TypB ACPI_PHYSICAL_ADDRESS PhysicalAddress64 UINT32 UINT32 *TimeElapsed UINT32 ACPI_STATUS const char UINT32 ACPI_STATUS const char UINT32 const char * FunctionName
Definition: acpixf.h:1279
#define NULL
Definition: types.h:112
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
#define TRACE_(x)
Definition: compat.h:76
const VIDEO_PORT_FUNCTION_TABLE VideoPortExports[]
Definition: funclist.c:36
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define ERR_(ch,...)
Definition: debug.h:156
uint32_t ULONG
Definition: typedefs.h:59
char * PCHAR
Definition: typedefs.h:51

Referenced by IntVideoPortFindAdapter().

Variable Documentation

◆ VideoPortExports

const VIDEO_PORT_FUNCTION_TABLE VideoPortExports[]

Definition at line 36 of file funclist.c.

Referenced by IntVideoPortGetProcAddress().