代码搜索结果

找到约 10,000 项符合 Interface 的代码

interface.h

#ifndef GBAEMU_INTERFACE #define GBAEMU_INTERFACE typedef unsigned char byte; typedef unsigned short hword; typedef unsigned long word; typedef unsigned char u8; typedef unsigned short u1

interface.c

#include #include #include #include "interface.h" #include "gbaemu.h" u32 get_arm_gpreg (u32 i) { return arm->gp_reg [i]; } void set_ar

interface.h

// interface.h struct IMotion : public IUnknown { STDMETHOD_(void, Fly) () = 0; STDMETHOD_(int&, GetPosition) () = 0; }; struct IVisual : public IUnknown { STDMETHOD_(void, D

interface.h

// interface.h struct IMotion : public IUnknown { STDMETHOD_(void, Fly) () = 0; STDMETHOD_(int&, GetPosition) () = 0; }; struct IVisual : public IUnknown { STDMETHOD_(void, D

interface.h

// interface.h // definitions that make our code look like MFC code #define BOOL int #define DWORD unsigned int #define TRUE 1 #define FALSE 0 #define TRACE printf #define ASSERT asser

interface.txt

AMD AES Encryption Module Interface ** DESCRIPTION ** The AES encryption module provides two paths for a user application to perform an encryption or decryption operation. Asynchronous operations

interface.cpp

// Fig. 7.10: interface.cpp // Definition of class Interface #include "interface.h" #include "implementation.h" Interface::Interface( int v ) : ptr ( new Implementation( v ) ) { } // cal

interface.h

// Fig. 7.10: interface.h // Header file for interface.cpp class Implementation; // forward class declaration class Interface { public: Interface( int ); void setValue( int );