代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/421644/10718275
adb enum_case.adb
with Ada.Text_IO; use Ada.Text_IO;
procedure Enum_case is
type Colour is (Red, Blue, Green);
Car_Colour : Colour;
car_name :string(1..20);
begin
-- Car_Colour := Blue;
case Car_Co
www.eeworm.com/read/421644/10718378
exe enum_case.exe
www.eeworm.com/read/350642/10723213
cpp enum_allfonts.cpp
#include
#include "Enum_AllFonts.h"
#if defined (WIN32)
#define IS_WIN32 TRUE
#else
#define IS_WIN32 FALSE
#endif
#define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0
www.eeworm.com/read/350642/10723216
rc enum_allfonts.rc
#include "windows.h"
#include "Enum_AllFonts.h"
MYAPP ICON DISCARDABLE "GENERIC.ICO"
MYAPP MENU DISCARDABLE
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit"
www.eeworm.com/read/350642/10723219
h enum_allfonts.h
#define IDM_EXIT 100
#define IDM_TEST 200
#define IDM_ABOUT 301
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About (HWND, UINT, WPARAM
www.eeworm.com/read/350642/10723222
mak enum_allfonts.mak
# Nmake macros for building Windows 32-Bit apps
all: Enum_A~1.exe
# Update the resource if necessary
Enum_A~1.res: Enum_A~1.rc Enum_A~1.h
rc -r -fo Enum_A~1.res Enum_A~1.rc
# Update t