代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/141545/13002245
cpp swap_b.cpp
#include
#include "Swap_B.h"
#if defined (WIN32)
#define IS_WIN32 TRUE
#else
#define IS_WIN32 FALSE
#endif
#define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x8000000
www.eeworm.com/read/141545/13002246
rc swap_b.rc
#include "windows.h"
#include "Swap_B.h"
MYAPP ICON DISCARDABLE "GENERIC.ICO"
MYAPP MENU DISCARDABLE
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit",
www.eeworm.com/read/141545/13002248
mak swap_b.mak
# Nmake macros for building Windows 32-Bit apps
all: Swap_B.exe
# Update the resource if necessary
Swap_B.res: Swap_B.rc Swap_B.h
rc -r -fo Swap_B.res Swap_B.rc
# Update the object fi
www.eeworm.com/read/141545/13002249
h swap_b.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/141545/13002688
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(&a, &b);
printf("Swapped val
www.eeworm.com/read/140930/13051750
c m_swap.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/140930/13051757
h m_swap.h
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/327247/13090682
c swap3.c
www.eeworm.com/read/326893/13110149
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/138638/13227563
c swap2.c
/*
** Exchange two integers in the calling program.
*/
void
swap( int *x, int *y )
{
int temp;
temp = *x;
*x = *y;
*y = temp;
}